blob: 298c4a03bfa873c162a5d4054d5141b80668b4e8 (
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
|
/**
* Freeside CSS theme overrides for selectize.js
*
*/
.selectize-label {
display: none !important;
}
.selectize-input {
border-radius: 0 !important;
padding: 1px !important;
display: inline-block;
width: 250px;
text-align: left !important;
}
.selectize-input .item {
margin: 2px !important;
text-align: left !important;
}
.selectize-input .optgroup-header {
font-weight: bold;
background-color: #eee;
border-bottom: solid 1px #ccc;
text-align: left !important;
}
.selectize-dropdown .option {
text-align: left !important;
}
.selectize-input .optgroup .option {
padding-left: 1em;
text-align: left !important;
}
|