insomnia/app/css/components/dropdown.scss

136 lines
2.4 KiB
SCSS
Raw Normal View History

2016-03-23 05:26:27 +00:00
@import '../constants/colors';
2016-03-21 05:47:49 +00:00
@import '../constants/dimensions';
2016-07-21 21:55:03 +00:00
@import '../constants/fonts';
2016-03-21 05:47:49 +00:00
.dropdown {
position: relative;
2016-04-04 07:15:30 +00:00
display: inline-block;
2016-03-21 05:47:49 +00:00
&.dropdown--outlined ul {
border: 1px solid $hl-md;
}
&:focus {
outline: none;
}
2016-06-20 06:05:40 +00:00
.dropdown__backdrop {
//background: rgba(255, 0, 0, 0.1);
2016-06-20 06:05:40 +00:00
display: none;
position: fixed;
z-index: 999;
left: 0;
right: 0;
top: 0;
bottom: 0;
content: ' ';
}
2016-03-21 05:47:49 +00:00
ul {
2016-06-20 06:05:40 +00:00
display: none;
2016-03-21 05:47:49 +00:00
position: absolute;
2016-04-07 01:11:16 +00:00
top: 100%;
2016-03-21 06:36:39 +00:00
left: 0;
2016-05-01 20:46:11 +00:00
z-index: 1000;
2016-04-10 05:03:18 +00:00
min-width: $dropdown-min-width;
box-shadow: 0 0 1rem 0 $hl-md;
2016-04-10 06:37:22 +00:00
// Separate it from the button a bit
margin-top: $padding-xxs;
margin-bottom: $padding-xxs;
padding-top: $radius-md;
padding-bottom: $radius-md;
2016-04-17 22:46:17 +00:00
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 {
2016-04-04 07:15:30 +00:00
& > button {
font-size: $font-size-md;
text-align: left;
2016-07-20 21:15:11 +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-super-light-bg !important;
white-space: nowrap;
2016-04-04 07:15:30 +00:00
&:hover,
&:focus {
2016-04-04 07:15:30 +00:00
background: $hl-sm;
}
&:active {
background: $hl-md;
}
i.fa {
display: inline-block;
width: 2.2em;
2016-04-15 02:13:49 +00:00
text-align: center;
2016-04-04 07:15:30 +00:00
}
2016-07-21 21:55:03 +00:00
.dropdown__hint {
2016-07-21 22:04:21 +00:00
color: $hl-xxl;
2016-07-21 21:55:03 +00:00
float: right;
}
2016-03-23 18:34:39 +00:00
}
2016-03-21 05:47:49 +00:00
}
}
2016-04-05 05:35:21 +00:00
&.dropdown--up ul {
top: auto;
bottom: 100%;
}
2016-04-23 06:53:22 +00:00
li.dropdown__divider {
border-bottom: 1px solid $hl-lg;
overflow: visible !important;
height: 0;
margin: $padding-md $padding-md $padding-md $padding-md;
min-width: $dropdown-min-width;
2016-04-23 06:53:22 +00:00
.dropdown__divider__label {
position: relative;
left: -$padding-sm / 2;
top: -0.7rem;
2016-06-20 06:05:40 +00:00
// HACK: Fine adjustment
2016-07-20 18:35:08 +00:00
color: $hl;
2016-04-23 06:53:22 +00:00
padding-right: 1em;
background: #fff;
font-size: $font-size-xs;
text-transform: uppercase;
}
&.dropdown__divider--no-name {
margin: $padding-xs 0;
.dropdown__divider__label {
display: none;
}
}
2016-04-23 06:53:22 +00:00
}
2016-04-07 01:11:16 +00:00
&.dropdown--flip ul {
bottom: 100%;
top: auto;
}
2016-06-20 06:05:40 +00:00
&.dropdown--open {
ul {
display: block;
}
.dropdown__backdrop {
display: block;
}
2016-04-05 05:35:21 +00:00
}
&.dropdown--right ul {
right: 0;
left: auto;
}
2016-03-21 05:47:49 +00:00
}