-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.scss
124 lines (105 loc) · 1.9 KB
/
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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import '~@kununu/kununu-theme-v2/scss/base/variables';
@import '~@kununu/kununu-theme-v2/scss/base/mixins';
.dropDownContainer {
position: relative;
padding: 0;
margin: 0;
display: inline-block;
&.up {
.dropDownItemList {
top: auto;
bottom: 100%;
border-radius: $border-radius-base $border-radius-base 0 0;
}
.dropDownItem:first-child {
border-radius: $border-radius-base $border-radius-base 0 0;
}
}
&.down {
.dropDownItemList {
top: 100%;
left: 0;
border-radius: 0 0 $border-radius-base $border-radius-base;
}
.dropDownItem:last-child {
border-radius: 0 0 $border-radius-base $border-radius-base;
}
}
&.pullRight {
.itemsList {
right: 0;
left: auto;
}
}
&.light {
.dropDownToggle {
color: $white;
}
.dropDownItem {
a {
color: $text-color;
}
}
}
}
.dropDownToggle {
display: block;
padding: 10px 15px;
text-align: left;
background-color: transparent;
border: 0;
&:hover,
&:active,
&:focus {
text-decoration: none;
}
span[role="img"],
img {
display: inline;
margin-left: 10px;
}
}
.dropDownItemList {
position: absolute;
left: 0;
padding: 0;
margin: 0;
min-width: 160px;
background-color: $white;
box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .1);
z-index: 1060;
}
.dropDownItem {
position: relative;
display: block;
padding: 0;
margin: 0;
font-size: $font-size-base;
list-style: none;
cursor: pointer;
@include clearfix();
a {
display: block;
padding: 10px 15px;
&:hover,
&:active,
&:focus,
&:visited {
text-decoration: none;
}
}
&.active,
&:hover {
background-color: $gray-base-03;
}
}
.dropDownIcon {
float: right;
margin-left: 10px;
line-height: 18px;
img,
span[role="img"] {
display: inline-block;
vertical-align: middle;
}
}