-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathselect.view.css
62 lines (51 loc) · 932 Bytes
/
select.view.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[mol_select] {
display: flex;
word-break: normal;
align-self: flex-start;
}
[mol_select_option_row] {
min-width: 100%;
padding: 0;
justify-content: flex-start;
}
[mol_select_bubble] {
min-width: 100%;
}
[mol_select_filter] {
flex: 1 0 auto;
align-self: stretch;
}
[mol_select_option_label] {
padding: var(--mol_gap_text);
text-align: left;
min-height: 1.5em;
display: block;
white-space: nowrap;
}
[mol_select_clear_option_content] {
padding: .5em 1rem .5rem 0;
text-align: left;
box-shadow: var(--mol_theme_line);
flex: 1 0 auto;
}
[mol_select_no_options] {
padding: var(--mol_gap_text);
text-align: left;
display: block;
color: var(--mol_theme_shade);
}
[mol_select_trigger] {
padding: 0;
flex: 1 1 auto;
display: flex;
}
[mol_select_trigger] > * {
margin-right: -1rem;
}
[mol_select_trigger] > *:last-child {
margin-right: 0;
}
[mol_select_menu] {
display: flex;
flex-direction: column;
}