-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_index.scss
40 lines (40 loc) · 818 Bytes
/
_index.scss
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
.al-combo {
&, > .dropdown-menu {
width: 100%;
}
&, > .dropdown-menu > li > a {
outline-style: none;
}
> .btn > div > span:first-child, > .dropdown-menu, > .dropdown-menu > li div {
overflow-x: hidden;
}
> .btn > div > span:first-child, > .dropdown-menu > li div {
text-overflow: ellipsis;
}
> .btn > div {
align-items: center;
display: flex;
> span:first-child {
flex: 1;
}
}
> .dropdown-menu {
overflow-y: auto;
> li {
user-select: none;
&.active > a {
pointer-events: none;
}
&.dropdown-header > div {
cursor: default;
}
> a {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
}
}
}