scinote-web/app/assets/stylesheets/shared_styles/elements/dropdown.scss

57 lines
991 B
SCSS
Raw Normal View History

// scss-lint:disable SelectorDepth, NestingDepth, ImportantRule
@import "constants";
2020-05-08 23:01:55 +08:00
.sci-dropdown {
[data-toggle="dropdown"] {
&:focus {
box-shadow: none;
}
2020-07-28 21:39:29 +08:00
.caret {
margin: 8px 0 8px 8px;
}
2020-05-08 23:01:55 +08:00
}
&.open {
[data-toggle="dropdown"] {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-color: $brand-focus;
.caret {
2020-07-14 17:24:33 +08:00
transform: rotateX(180deg);
2020-05-08 23:01:55 +08:00
}
}
.dropdown-menu {
2020-07-28 21:39:29 +08:00
@include font-button;
2020-05-08 23:01:55 +08:00
border-top-left-radius: 0;
border-top-right-radius: 0;
box-shadow: $flyout-shadow;
margin-top: -1px;
width: 100%;
li:hover {
background: $color-concrete;
}
}
}
}
.dropdown-menu {
.form-dropdown-item {
button {
border-radius: 0;
color: $color-black !important;
padding-left: .9em;
text-align: left;
width: 100%;
2020-05-08 23:01:55 +08:00
&:hover {
background-color: $color-dd-hover !important;
}
}
}
2020-05-08 23:01:55 +08:00
}