blob: 312048646c089d56fe2b6e6e319ee61934893a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
// Custom.scss
$link-color: #6f3b93;
$link-hover-color: darken($link-color, 10%);
$link-hover-decoration: none;
@import "bootstrap-src/scss/bootstrap";
$action-color: #ffe484;
$action-button-color: darken($action-color, 20%);
$ishtar-color: darken($purple, 20%);
$ishtar-secondary-color: $purple;
$dark-secondary-color: rgba(255,255,255,0.8);
.modal-dialog.full {
width: 98%;
height: 98%;
max-width: none;
padding: 1%;
}
.modal-dialog.full .display.dataTable {
width: 100% !important;
}
.modal-dialog.full .modal-content {
height: auto;
min-height: 100%;
border-radius: 0;
}
table.dataTable {
font-size: 0.8em;
}
.table-modal-lg table.dataTable {
font-size: 1em;
}
h3, .h3 {
font-size: 1.5rem;
}
h4, .h4 {
font-size: 1.1rem;
}
textarea {
height: 150px;
}
.sheet h4 { color: $text-muted; }
.container{
margin-top: 1em;
margin-bottom: 8em;
}
.bg-dark{
background-color: $ishtar-color !important;
}
.navbar{
padding: 0 0.5rem;
}
// action menu
.navbar-dark .navbar-nav.action-menu .nav-link{
color: $action-color;
}
.navbar-dark .navbar-nav.action-menu .nav-link.dropdown-toggle::after{
color: $navbar-dark-color;
}
#context-menu,
p.confirm-message,
div#validation-bar{
background-color: $ishtar-secondary-color;
color: $dark-secondary-color;
}
p.confirm-message{
text-align:center;
margin: 0;
padding: 0.5rem;
font-weight: bold;
}
/* context menu */
#shortcut-menu {
width: 700px;
padding: 1em;
}
#context-menu a{
color: $dark-secondary-color;
padding: 0.2rem 0.5rem;
}
#current_items{
width: 100%;
}
div#foot{
background-color: $ishtar-color;
color: $navbar-dark-color;
}
div#foot a {
color: #ddd;
}
div#foot a:hover {
color: #fff;
}
.breadcrumb button{
border: 0 transparent;
background-color: transparent;
}
.breadcrumb a:hover{
text-decoration: none;
}
.breadcrumb button:hover{
cursor: pointer;
color: darken($primary, 10%);
}
/*
// required
@import "bootstrap-src/scss/functions";
@import "bootstrap-src/scss/variables";
@import "bootstrap-src/scss/mixins";
// optional
@import "bootstrap-src/scss/reboot";
@import "bootstrap-src/scss/type";
@import "bootstrap-src/scss/images";
@import "bootstrap-src/scss/code";
@import "bootstrap-src/scss/grid";
*/
|