mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
852d2cc03c
* CSS fixes for webhooks and barcodes [SCI-5972][SCI-5988][SCI-5969][SCI-5970] * Small fixes [SCI-5972]
62 lines
1.1 KiB
SCSS
62 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 {
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|