forked from bptlab/fCM-design-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.less
More file actions
78 lines (64 loc) · 1.72 KB
/
dropdown.less
File metadata and controls
78 lines (64 loc) · 1.72 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.dd-dropdown-menu {
background-color: #29487D;
border-radius: 15px;
display: none;
position: absolute;
top: 100%;
left: 0px;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dd-dropdown-entry, .dd-dropdown-create-input, .dd-dropdown-title {
color: white;
font-size: 14px;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dd-dropdown-title {
font-size: 16px;
border-bottom-color: white;
border-bottom-width: 2px;
border-bottom-style: solid;
}
.dd-dropdown-create-input > input {
width: 100%;
}
.dd-dropdown-entry:not(.unclickable):hover {
color: #29487D;
background-color: white;
}
.dd-dropdown-entry-selected::after {
content: "✔️";
}
.dd-dropdown-multicontainer {
display: flex;
}
.dd-dropdown-multicontainer > .dd-dropdown-menu {
display: block;
position: relative;
width: 50%;
}
.djs-overlay-classSelection, .djs-overlay-classSelection > div {
border-width: 1px;
border-radius: 15px;
}
.djs-overlay-classSelection > div > .dd-dropdown-menu:first-child {
border-radius: 15px 0px 0px 15px;
}
.djs-overlay-classSelection > div > .dd-dropdown-menu:last-child {
border-radius: 0px 15px 15px 0px;
}
.dd-dropdown-menu:first-of-type > .dd-dropdown-entry:first-child {
border-top-left-radius: 15px;
}
.dd-dropdown-menu:first-of-type > .dd-dropdown-entry:last-child {
border-bottom-left-radius: 15px;
}
.dd-dropdown-menu:last-of-type > .dd-dropdown-entry:first-child {
border-top-right-radius: 15px;
}
.dd-dropdown-menu:last-of-type > .dd-dropdown-entry:last-child {
border-bottom-right-radius: 15px;
}