mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
b58e3cd4d8
* Add zebra settings screen [SCI-7016] * Fix hound [SCI-7016]
64 lines
1.1 KiB
SCSS
64 lines
1.1 KiB
SCSS
// scss-lint:disable SelectorDepth SelectorFormat QualifyingElement
|
|
// scss-lint:disable NestingDepth ImportantRule
|
|
|
|
.user-account-addons {
|
|
.content-pane {
|
|
margin: 0;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.addons-title {
|
|
border-bottom: $border-tertiary;
|
|
margin-bottom: 0;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.addons-subtitle {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
.printers-container {
|
|
margin-bottom: 1em;
|
|
|
|
.printer {
|
|
border: $border-default;
|
|
padding: 1em;
|
|
|
|
.header {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: .5em;
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.control {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.status {
|
|
border: $border-default;
|
|
color: $color-silver-chalice;
|
|
margin-left: .5em;
|
|
margin-right: auto;
|
|
padding: .25em;
|
|
|
|
&[data-ready="true"] {
|
|
background: $brand-success;
|
|
border-color: $brand-success;
|
|
color: $color-white;
|
|
}
|
|
}
|
|
|
|
.fas-check {
|
|
margin-left: .25em;
|
|
}
|
|
}
|
|
|
|
.description {
|
|
margin-bottom: .5em;
|
|
}
|
|
}
|
|
}
|
|
}
|