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