Projekt

Obecné

Profil

Stáhnout (3.17 KB) Statistiky
| Větev: | Revize:
1 a908ef13 Anděl Ondřej
.hidden-search {
2
	display: none !important;
3
}
4
5
.vsb-menu{
6
  cursor:pointer;
7
  z-index:1000;
8
	display:block;
9
	visibility: hidden;
10
  position:absolute;/*Don't change*/
11
  border:1px solid #B2B2B2;
12
  background-color: #fff;
13
  background-clip: padding-box;
14
  border: 1px solid rgba(0,0,0,.15);
15
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
16
  border-radius:4px;
17
  font-size : 11px;
18
}
19
20
.vsb-js-search-zone{
21
	position:absolute;/*Don't change*/
22
    z-index:1001;
23
	width: 80%;
24
	min-height:1.8em;
25
	padding: 2px;
26
	background-color: #fff;
27
}
28
29
.vsb-js-search-zone input{
30
	border: 1px solid grey;
31
	margin-left: 2px;
32
	width: 96%;
33
	border-radius: 4px;
34
	height: 25px !important;
35
}
36
37
.vsb-main{
38
	position: relative;/*Don't change*/
39
	display: inline-block;
40
	vertical-align: middle;
41
	text-align:left;
42
}
43
44
.vsb-menu li{
45
	display: list-item;
46
	font-size: 12px;
47
	background-color: #fff;
48
	min-height:1.4em;
49
	padding: 0.2em;
50
}
51
52
.vsb-menu li:hover {
53
	background: linear-gradient(#f5f5f5, #e8e8e8);
54
}
55
56
.vsb-menu ul{
57
	user-select:none;
58
	list-style:none;
59
	white-space: nowrap;
60
	margin:0px;
61
	margin-top:4px;
62
	padding-left:10px;
63
	padding-right:10px;
64
	padding-bottom:3px;
65
	color: #333;
66
	cursor:pointer;
67
	overflow-y:auto;
68
}
69
70
li.disabled{
71
	cursor:not-allowed;
72
	opacity:0.3;
73
	background-color: #999;
74
}
75
76
.vsb-main button{
77
	min-width: 120px;
78 a5559649 Anděl Ondřej
	border-radius: 5px;
79 a908ef13 Anděl Ondřej
	width: 100%;
80
	text-align: left;
81
	z-index: 1;
82
	color: #333;
83
	background: white !important;
84
	border: 1px solid #999 !important;
85
	line-height:20px;
86
	font-size:14px;
87
	padding:6px 12px;
88
}
89
90
.vsb-main button.disabled{
91
	cursor:not-allowed;
92
	opacity:0.65;
93
}
94
95
.vsb-main .title {
96
	margin-right: 6px;
97
	user-select:none;
98
}
99
100
.vsb-main li:hover {
101
	background: linear-gradient(#f5f5f5, #e8e8e8);
102
}
103
104
.vsb-main ul{
105
	white-space: nowrap;
106
}
107
108
.vsb-menu li {
109
	font-size: 14px;
110
	background-color: #fff;
111
	min-height:1.4em;
112
	padding: 0.2em 2em 0.2em 1em;
113
}
114
115
.vsb-menu li.grouped-option {
116
	font-weight: bold;
117
	font-size: 15px;
118
	padding-left: 5px;
119
}
120
121
.vsb-menu :not(.multi) li.active::before {
122
	content: "";
123
	display: inline-block;
124
	font-size: inherit;
125
	float:left;
126
	margin-left:-16px;
127
	transform: rotate(45deg);
128
	height: 10px;
129
	width:  5px;
130
	border-bottom:  3px solid black;
131
	border-right:  3px solid black;
132
	border-radius:2px;
133
}
134
135
.vsb-menu .multi li {
136
	font-size: 14px;
137
	background-color: #fff;
138
	min-height:1.4em;
139
	padding: 0.2em 2em 0.2em 26px;
140
}
141
142
.vsb-menu .multi li.grouped-option {
143
	font-weight: bold;
144
	font-size: 15px;
145
	padding-left: 5px;
146
}
147
148
.vsb-menu .multi li:not(.grouped-option)::before{
149
	content: "";
150
	display: inline-block;
151
	font-size: inherit;
152
	float:left;
153
	font-weight:bold;
154
	margin-left:-22px;
155
	margin-right:2px;
156
	border : 1px solid;
157
	border-radius : 3px;
158
	padding : 7px;
159
	margin-top:0px;
160
	color:black;
161
}
162
163
.vsb-menu .multi li.active::after {
164
	content: "";
165
	display: inline-block;
166
	font-size: inherit;
167
	color: #333;
168
	float:left;
169
	margin-left:-18px;
170
	display: inline-block;
171
	transform: rotate(45deg);
172
	margin-top:1px;
173
	height: 8px;
174
	width:  5px;
175
	border-bottom: 3px solid black;
176
	border-right:  3px solid black;
177
}
178
179
.caret {
180
	display: inline-block;
181
	width: 0;
182
	height: 0;
183
	margin-left: 2px;
184
	vertical-align: middle;
185
	border-top: 4px dashed;
186
	border-top: 4px solid;
187
	border-right: 4px solid transparent;
188
	border-left: 4px solid transparent;
189
}