Projekt

Obecné

Profil

Stáhnout (2.93 KB) Statistiky
| Větev: | Revize:
1 9a7b1f4c Ondřej Anděl
html, body, .container-fluid {
2
  height: 100%;
3
}
4
5
.app-header {
6
  background-image: linear-gradient(#A8A4A2, #4B4B4B);
7
  height: 15%;
8
}
9
10
.app-header .title {
11
  width: max-content;
12
  font-family: "Lucida Calligraphy", cursive;
13
}
14
15
.app-content {
16
  height: 80%;
17
}
18
19
.app-content .menu {
20
  background-color: #a8a4a2;
21
  border-right: #4B4B4B solid 2px;
22
}
23
24
.app-content .menu a {
25
  color: #4B4B4B;
26
  background-color: transparent;
27
}
28
29
.app-content .menu a:hover,
30
.app-content .menu a:focus {
31
  color: #a8a4a2;
32
  background-color: #707070;
33
  text-decoration: none;
34
  border-radius: 15px 50px 50px 15px;
35
}
36
37
.app-content .menu .active{
38
  color: #a8a4a2;
39
  background-color: #4B4B4B;
40
  text-decoration: none;
41
  border-radius: 15px 50px 50px 15px;
42
}
43
44
.app-content .content {
45
  background-color: #c9c5c2;
46
  height: 100%;
47
  flex-direction: column;
48
}
49
50
.app-footer {
51
  text-align: center;
52
  background-image: linear-gradient(#4B4B4B,#A8A4A2);
53
  height: 5%;
54
}
55
56
.modal-body {
57
  background-color: #c9c5c2;
58
}
59
60
.modal-header, .modal-footer {
61
  background-color: #A8A4A2;
62
}
63
64
.modal-header .modal-title {
65
  color: #4B4B4B;
66
}
67
68
.app-content .content .search-results {
69
  height: 100%;
70
  overflow: auto;
71
}
72
73
.app-content .content .search-results .action-td{
74 4779c9ce Anděl Ondřej
  width: 10%;
75 9a7b1f4c Ondřej Anděl
}
76 a908ef13 Anděl Ondřej
77
input, select {
78
  border: 1px solid grey;
79
  margin-left: 2px;
80
  font-size: 14px;
81
  line-height: 20px;
82
  padding: 6px 12px;
83
}
84
85 4779c9ce Anděl Ondřej
.min-wdth {
86
  min-width: 200px;
87
}
88
89 a908ef13 Anděl Ondřej
select {
90
  padding: 6px 18px 6px 12px;
91
  appearance: none;
92 4779c9ce Anděl Ondřej
  background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
93 a908ef13 Anděl Ondřej
}
94
95
/* Remove default arrow in Internet Explorer 10 and 11 */
96
select::-ms-expand {
97
  display: none;
98
}
99
100
/* Target Internet Explorer 9 to undo the custom arrow */
101
@media screen and (min-width:0\0) {
102
  select {
103
    background: none \9;
104
    padding: 5px \9;
105
  }
106 10e26305 Anděl Ondřej
}
107
108
/*multis. jquery*/
109
.multi-select-container {
110
  min-width: 200px;
111
  display: inline-block;
112
  position: relative;
113
  margin-left: 2px;
114
  font-size: 14px;
115
  line-height: 20px;
116
}
117
118
.multi-select-menu {
119
  position: absolute;
120
  left: 0;
121
  top: 0.8em;
122
  float: left;
123
  min-width: 100%;
124
  background: #fff;
125
  margin: 1em 0;
126
  padding: 0.4em 6px;
127
  border: 1px solid #aaa;
128
  display: none;
129
  z-index: 20;
130
  overflow: hidden scroll;
131
}
132
133
.multi-select-menu input {
134
  margin-right: 0.3em;
135
  vertical-align: 0.1em;
136
}
137
138
.multi-select-button {
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; }