1
|
@font-face {
|
2
|
font-family: 'Charis';
|
3
|
src: url('fonts/charis-sil/CharisSILR.ttf') format('truetype');
|
4
|
}
|
5
|
|
6
|
@font-face {
|
7
|
font-family: 'Impacted';
|
8
|
src: url('fonts/impacted/IMPACTED.ttf') format('truetype');
|
9
|
}
|
10
|
|
11
|
html, body, .container-fluid {
|
12
|
height: 100%;
|
13
|
font-family: 'Charis', Fallback, sans-serif;
|
14
|
}
|
15
|
|
16
|
.app-header {
|
17
|
color: #376039;
|
18
|
min-height: 15%;
|
19
|
}
|
20
|
|
21
|
.logo {
|
22
|
height: 80px;
|
23
|
}
|
24
|
|
25
|
.app-header .title {
|
26
|
width: max-content;
|
27
|
justify-content: center;
|
28
|
font-family: 'Impacted', Fallback, sans-serif;
|
29
|
}
|
30
|
|
31
|
.app-content {
|
32
|
height: calc(80% - 2.5em);
|
33
|
}
|
34
|
|
35
|
.required {
|
36
|
color: red;
|
37
|
}
|
38
|
|
39
|
.menu {
|
40
|
min-height: 2.5em;
|
41
|
background-image: linear-gradient( #A5ca79, #376039);
|
42
|
color: white;
|
43
|
}
|
44
|
|
45
|
.menu a {
|
46
|
height: 100%;
|
47
|
color: white;
|
48
|
background-color: transparent;
|
49
|
}
|
50
|
|
51
|
.menu a:hover,
|
52
|
.menu a:focus {
|
53
|
background-color: #A5ca79;
|
54
|
text-decoration: none;
|
55
|
}
|
56
|
|
57
|
.menu .active{
|
58
|
background-image: linear-gradient(#376039, #A5ca79);
|
59
|
text-decoration: none;
|
60
|
}
|
61
|
|
62
|
.app-content .content {
|
63
|
background-color: #f1f1f1;
|
64
|
height: 100%;
|
65
|
flex-direction: column;
|
66
|
}
|
67
|
|
68
|
.app-footer {
|
69
|
text-align: center;
|
70
|
background-image: linear-gradient( #A5ca79, #376039);
|
71
|
color: white;
|
72
|
height: 5%;
|
73
|
}
|
74
|
|
75
|
.modal-body {
|
76
|
background-color: #f1f1f1;
|
77
|
}
|
78
|
|
79
|
.modal-header, .modal-footer {
|
80
|
background-image: linear-gradient( #A5ca79, #376039);
|
81
|
}
|
82
|
|
83
|
.app-content .content .search-filters {
|
84
|
max-width: none !important;
|
85
|
}
|
86
|
|
87
|
.app-content .content .search-results {
|
88
|
height: 100%;
|
89
|
overflow: auto;
|
90
|
}
|
91
|
|
92
|
.app-content .content .search-results .action-td {
|
93
|
width: 13%;
|
94
|
}
|
95
|
|
96
|
input, select {
|
97
|
height: 90%;
|
98
|
border-radius: 5px;
|
99
|
border: 1px solid grey;
|
100
|
margin-left: 2px;
|
101
|
font-size: 14px;
|
102
|
line-height: 20px;
|
103
|
padding: 6px 12px;
|
104
|
}
|
105
|
|
106
|
.min-wdth {
|
107
|
min-width: 200px;
|
108
|
}
|
109
|
|
110
|
.btn{
|
111
|
background-color: #A5ca79;
|
112
|
}
|
113
|
|
114
|
select {
|
115
|
padding: 6px 18px 6px 12px;
|
116
|
appearance: none;
|
117
|
background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
|
118
|
}
|
119
|
|
120
|
/* Remove default arrow in Internet Explorer 10 and 11 */
|
121
|
select::-ms-expand {
|
122
|
display: none;
|
123
|
}
|
124
|
|
125
|
/* Target Internet Explorer 9 to undo the custom arrow */
|
126
|
@media screen and (min-width:0\0) {
|
127
|
select {
|
128
|
background: none \9;
|
129
|
padding: 5px \9;
|
130
|
}
|
131
|
}
|
132
|
|
133
|
/*multis. jquery*/
|
134
|
.multi-select-container {
|
135
|
min-width: 200px;
|
136
|
display: inline-block;
|
137
|
position: relative;
|
138
|
margin-left: 2px;
|
139
|
font-size: 14px;
|
140
|
line-height: 20px;
|
141
|
}
|
142
|
|
143
|
.multi-select-menu {
|
144
|
position: absolute;
|
145
|
left: 0;
|
146
|
top: 0.8em;
|
147
|
float: left;
|
148
|
min-width: 100%;
|
149
|
background: #fff;
|
150
|
margin: 1em 0;
|
151
|
padding: 0.4em 6px;
|
152
|
border: 1px solid #aaa;
|
153
|
display: none;
|
154
|
z-index: 20;
|
155
|
overflow: hidden scroll;
|
156
|
}
|
157
|
|
158
|
.multi-select-menu input {
|
159
|
margin-right: 0.3em;
|
160
|
vertical-align: 0.1em;
|
161
|
}
|
162
|
|
163
|
.multi-select-button {
|
164
|
border-radius: 5px;
|
165
|
border: 1px solid grey;
|
166
|
display: inline-block;
|
167
|
font-size: 0.875em;
|
168
|
padding: 6px 12px;
|
169
|
min-width: 200px;
|
170
|
max-width: 20em;
|
171
|
white-space: nowrap;
|
172
|
overflow: hidden;
|
173
|
text-overflow: ellipsis;
|
174
|
vertical-align: -0.5em;
|
175
|
background-color: #fff;
|
176
|
cursor: default;
|
177
|
}
|
178
|
|
179
|
.multi-select-button:after {
|
180
|
content: "";
|
181
|
display: inline-block;
|
182
|
width: 0;
|
183
|
height: 0;
|
184
|
border-style: solid;
|
185
|
border-width: 0.4em 0.4em 0 0.4em;
|
186
|
border-color: #333333 transparent transparent transparent;
|
187
|
margin-left: 0.4em;
|
188
|
vertical-align: 0.1em;
|
189
|
float: right;
|
190
|
margin-top: 5%
|
191
|
}
|
192
|
|
193
|
.multi-select-container--open .multi-select-menu { display: block; }
|
194
|
|