soapbox/app/styles/components/dropdown-menu.scss

157 wiersze
2.9 KiB
SCSS
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
.dropdown-menu {
2020-05-29 00:58:37 +00:00
@include font-size(13);
@include line-height(26);
@include font-weight(normal);
2020-05-16 03:48:08 +00:00
z-index: 9999;
position: absolute;
2020-06-01 02:05:00 +00:00
background: var(--background-color);
2020-05-31 20:51:20 +00:00
border-radius: 6px;
2020-05-16 03:48:08 +00:00
padding: 4px 0;
2020-06-01 02:05:00 +00:00
color: var(--primary-text-color);
2020-05-29 00:58:37 +00:00
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
2020-05-16 03:48:08 +00:00
&.left {transform-origin: 100% 50%;}
&.top {transform-origin: 50% 100%;}
&.bottom {transform-origin: 50% 0;}
&.right {transform-origin: 0 50%;}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&__arrow {
position: absolute;
width: 0;
height: 0;
border: 0 solid transparent;
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&.left {
right: -5px;
margin-top: -5px;
border-width: 5px 0 5px 5px;
2020-06-01 02:05:00 +00:00
border-left-color: var(--background-color);
2020-05-16 03:48:08 +00:00
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&.top {
bottom: -5px;
margin-left: -5px;
border-width: 5px 5px 0;
2020-06-01 02:05:00 +00:00
border-top-color: var(--background-color);
2020-05-16 03:48:08 +00:00
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&.bottom {
top: -5px;
margin-left: -5px;
border-width: 0 5px 5px;
2020-06-01 02:05:00 +00:00
border-bottom-color: var(--background-color);
2020-05-16 03:48:08 +00:00
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&.right {
left: -5px;
margin-top: -5px;
border-width: 5px 5px 5px 0;
2020-06-01 02:05:00 +00:00
border-right-color: var(--background-color);
2020-05-16 03:48:08 +00:00
}
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
ul {
overflow: hidden;
padding: 6px 0;
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&__item a {
display: block;
box-sizing: border-box;
overflow: hidden;
padding: 3px 10px 1px;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
text-transform: capitalize;
2020-06-01 02:05:00 +00:00
color: var(--primary-text-color);
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&:focus,
&:hover,
&:active {
outline: 0;
2020-05-29 00:58:37 +00:00
color: #fff;
background: var(--brand-color) !important;
2020-05-16 03:48:08 +00:00
}
}
2020-05-29 00:58:37 +00:00
2020-05-16 03:48:08 +00:00
&__separator {
display: block;
margin: 10px !important;
height: 1px;
2020-06-01 02:05:00 +00:00
background: var(--foreground-color);
2020-05-16 03:48:08 +00:00
}
2020-03-27 20:59:38 +00:00
}
// end .dropdown-menu
// NOTE - not sure what this relates to — but it doesn't involve the navbar dropdown
.dropdown {
2020-05-16 03:48:08 +00:00
display: inline-block;
2020-03-27 20:59:38 +00:00
}
.dropdown__content {
2020-05-16 03:48:08 +00:00
display: none;
position: absolute;
2020-03-27 20:59:38 +00:00
}
.dropdown--active .dropdown__content {
2020-05-16 03:48:08 +00:00
display: block;
line-height: 18px;
max-width: 311px;
right: 0;
text-align: left;
z-index: 9999;
& > ul {
list-style: none;
2020-06-02 22:42:09 +00:00
background: var(--background-color);
2020-05-16 03:48:08 +00:00
padding: 4px 0;
border-radius: 4px;
box-shadow: 0 0 15px rgba($base-shadow-color, 0.4);
min-width: 140px;
position: relative;
}
&.dropdown__right {
right: 0;
}
&.dropdown__left {
& > ul {
left: -98px;
}
}
& > ul > li > a {
font-size: 13px;
line-height: 18px;
display: block;
padding: 4px 14px;
box-sizing: border-box;
text-decoration: none;
2020-06-02 22:42:09 +00:00
background: var(--background-color);
2020-06-03 01:12:36 +00:00
color: var(--primary-text-color);
2020-05-16 03:48:08 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
&:focus {
outline: 0;
}
&:hover {
2020-05-31 22:34:33 +00:00
background: var(--brand-color);
2020-06-07 03:55:00 +00:00
color: var(--primary-text-color--faint);
2020-05-16 03:48:08 +00:00
}
}
2020-03-27 20:59:38 +00:00
}
.dropdown__icon {
2020-05-16 03:48:08 +00:00
vertical-align: middle;
2020-03-27 20:59:38 +00:00
}