mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
67 lines
1.1 KiB
SCSS
67 lines
1.1 KiB
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,
|
|
.new-bio-eddie-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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.result {
|
|
.panel {
|
|
margin-left: 4.25em !important;
|
|
}
|
|
|
|
.result-icon {
|
|
@include font-main;
|
|
background: $color-concrete;
|
|
border-radius: 50%;
|
|
float: left;
|
|
line-height: 3em;
|
|
text-align: center;
|
|
width: 3em;
|
|
}
|
|
}
|