Files
mostlymatter/webapp/sass/components/_suggestion-list.scss

43 строки
783 B
SCSS

@charset 'UTF-8';
.suggestion-list {
@extend %popover-box-shadow;
width: 100%;
z-index: 100;
}
.suggestion-list--top {
position: absolute;
bottom: 100%;
}
.suggestion-list__content {
background-color: $white;
border: $border-gray;
max-height: 292px;
overflow-x: hidden;
overflow-y: scroll;
width: 100%;
.command {
border-bottom: 1px solid $light-gray;
font-size: .95em;
line-height: 24px;
padding: 5px 10px 8px;
position: relative;
width: 100%;
z-index: 101;
.command__desc {
@include opacity(.5);
line-height: normal;
margin-left: 5px;
}
}
}
.suggestion-list__content--top {
bottom: 0;
position: absolute;
}