mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 04:32:16 +08:00
50 lines
848 B
SCSS
50 lines
848 B
SCSS
// scss-lint:disable SelectorDepth
|
|
// scss-lint:disable NestingDepth
|
|
// scss-lint:disable SelectorFormat
|
|
// scss-lint:disable ImportantRule
|
|
|
|
@import "constants";
|
|
@import "mixins";
|
|
|
|
#results-toolbar {
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
.add-result-dropdown {
|
|
li {
|
|
cursor: pointer;
|
|
padding: .5em 1em;
|
|
|
|
.fas {
|
|
padding-right: .5em;
|
|
width: 1.75em;
|
|
}
|
|
|
|
.create-wopi-file-btn,
|
|
.new-marvinjs-upload-button {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.collapse-expand-result {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.sort-result-dropdown {
|
|
margin-left: .5em;
|
|
|
|
.dropdown-menu {
|
|
a {
|
|
@include font-button;
|
|
padding: .5em 1em;
|
|
|
|
&.selected::after {
|
|
@include font-awesome;
|
|
content: $font-fas-check;
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|