1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/scss/ui/_dropdowns.scss
2019-04-27 14:33:48 +02:00

57 lines
1.0 KiB
SCSS

.dropdown-menu-scrollable {
height: auto;
max-height: 12rem;
overflow-x: hidden;
}
.dropdown-menu {
min-width: 12rem;
box-shadow: $box-shadow;
}
.dropdown-menu-arrow {
margin-top: .75rem;
&::before {
position: absolute;
top: -6px;
left: 12px;
display: inline-block;
content: "";
border-right: 5px solid transparent;
border-bottom: 5px solid $border-color;
border-bottom-color: rgba(0, 0, 0, .2);
border-left: 5px solid transparent;
}
&::after {
position: absolute;
top: -5px;
left: 12px;
display: inline-block;
content: "";
border-right: 5px solid transparent;
border-bottom: 5px solid #fff;
border-left: 5px solid transparent;
}
&.dropdown-menu-right {
&::before,
&::after {
right: 12px;
left: auto;
}
}
}
.dropdown-icon {
display: inline-block;
width: 1em;
margin-right: .5rem;
margin-left: -.5rem;
color: $text-muted;
text-align: center;
vertical-align: -1px;
stroke-width: 1.75px;
}