insomnia/app/ui/css/components/dropdown.less

141 lines
2.5 KiB
Plaintext
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-11-11 22:01:21 +00:00
box-sizing: border-box;
2016-03-21 05:47:49 +00:00
&.dropdown--outlined ul {
2016-08-29 17:58:59 +00:00
border: 1px solid @hl-md;
}
&:focus {
outline: none;
}
2016-06-20 06:05:40 +00:00
.dropdown__backdrop {
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-08-29 17:58:59 +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
2016-08-29 17:58:59 +00:00
margin-top: @padding-xxs;
margin-bottom: @padding-xxs;
2016-08-29 17:58:59 +00:00
padding-top: @radius-md;
padding-bottom: @radius-md;
2016-08-29 17:58:59 +00:00
border-radius: @radius-md;
background: @bg-super-light;
2016-04-17 22:46:17 +00:00
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 {
2016-08-29 17:58:59 +00:00
font-size: @font-size-md;
2016-04-04 07:15:30 +00:00
text-align: left;
2016-08-29 17:58:59 +00:00
padding: @padding-sm @padding-md @padding-sm @padding-sm;
2016-04-04 07:15:30 +00:00
width: 100%;
display: block;
2016-08-29 17:58:59 +00:00
color: @font-super-light-bg !important;
white-space: nowrap;
2016-04-04 07:15:30 +00:00
&:hover:not(:disabled),
&:focus:not(:disabled) {
2016-08-29 17:58:59 +00:00
background: @hl-sm;
2016-04-04 07:15:30 +00:00
}
&:active:not(:disabled) {
2016-08-29 17:58:59 +00:00
background: @hl-md;
2016-04-04 07:15:30 +00:00
}
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-08-29 17:58:59 +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 {
2016-08-29 17:58:59 +00:00
border-bottom: 1px solid @hl-lg;
2016-04-23 06:53:22 +00:00
overflow: visible !important;
height: 0;
2016-08-29 17:58:59 +00:00
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;
2016-08-29 17:58:59 +00:00
left: -@padding-sm / 2;
top: -0.7rem;
2016-06-20 06:05:40 +00:00
// HACK: Fine adjustment
2016-08-29 17:58:59 +00:00
color: @hl;
2016-04-23 06:53:22 +00:00
padding-right: 1em;
background: #fff;
2016-08-29 17:58:59 +00:00
font-size: @font-size-xs;
2016-04-23 06:53:22 +00:00
text-transform: uppercase;
}
&.dropdown__divider--no-name {
2016-08-29 17:58:59 +00:00
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-11-11 22:01:21 +00:00
&.dropdown--wide ul {
left: 0;
right: 0;
}
2016-03-21 05:47:49 +00:00
}