2016-03-23 05:26:27 +00:00
|
|
|
@import '../constants/colors';
|
2016-03-21 05:47:49 +00:00
|
|
|
@import '../constants/dimensions';
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
2016-04-04 07:15:30 +00:00
|
|
|
display: inline-block;
|
2016-03-21 05:47:49 +00:00
|
|
|
|
|
|
|
ul {
|
|
|
|
position: absolute;
|
2016-04-07 01:11:16 +00:00
|
|
|
top: 100%;
|
2016-03-21 06:36:39 +00:00
|
|
|
left: 0;
|
2016-03-21 05:47:49 +00:00
|
|
|
display: none;
|
2016-04-06 04:25:47 +00:00
|
|
|
z-index: 100;
|
2016-04-10 05:03:18 +00:00
|
|
|
min-width: $dropdown-min-width;
|
2016-04-17 22:46:17 +00:00
|
|
|
box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25);
|
2016-03-21 05:47:49 +00:00
|
|
|
|
2016-04-10 06:37:22 +00:00
|
|
|
// Separate it from the button a bit
|
2016-04-17 22:46:17 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
border-radius: $radius-md;
|
|
|
|
background: $bg-super-light;
|
|
|
|
overflow: hidden;
|
2016-04-10 06:37:22 +00:00
|
|
|
|
2016-04-04 07:15:30 +00:00
|
|
|
li {
|
|
|
|
& > button {
|
|
|
|
font-size: $font-size-md;
|
|
|
|
text-align: left;
|
2016-04-23 03:54:55 +00:00
|
|
|
padding: $padding-sm $padding-md $padding-sm $padding-sm;
|
2016-04-04 07:15:30 +00:00
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
color: $font-light-bg !important;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $hl-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: $hl-md;
|
|
|
|
}
|
|
|
|
|
|
|
|
i.fa {
|
|
|
|
display: inline-block;
|
2016-04-05 05:35:21 +00:00
|
|
|
width: 2em;
|
2016-04-15 02:13:49 +00:00
|
|
|
text-align: center;
|
2016-04-04 07:15:30 +00:00
|
|
|
}
|
2016-03-23 18:34:39 +00:00
|
|
|
}
|
2016-03-21 05:47:49 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-05 05:35:21 +00:00
|
|
|
|
2016-04-07 01:11:16 +00:00
|
|
|
&.dropdown--flip ul {
|
|
|
|
bottom: 100%;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
|
2016-04-05 05:35:21 +00:00
|
|
|
&.dropdown--open ul {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dropdown--right ul {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
}
|
2016-03-21 05:47:49 +00:00
|
|
|
}
|