scinote-web/app/assets/stylesheets/settings/addons.scss

65 lines
1.1 KiB
SCSS
Raw Normal View History

// scss-lint:disable SelectorDepth SelectorFormat QualifyingElement
// scss-lint:disable NestingDepth ImportantRule
2020-07-13 20:51:51 +08:00
.user-account-addons {
.content-pane {
margin: 0;
padding-top: 0;
}
.addons-title {
border-bottom: $border-tertiary;
margin-bottom: 0;
2020-07-13 20:51:51 +08:00
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;
}
}
}
2020-07-13 20:51:51 +08:00
}