mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 09:28:37 +08:00
10743921d4
Co-authored-by: Anton <anton@scinote.net>
70 lines
1.2 KiB
SCSS
70 lines
1.2 KiB
SCSS
// scss-lint:disable SelectorDepth
|
|
// scss-lint:disable NestingDepth
|
|
|
|
.repository-stock-modal,
|
|
#consumeRepositoryStockValueModal {
|
|
.stock-update-view {
|
|
align-items: center;
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
|
|
.stock-initial-container,
|
|
.stock-final-container {
|
|
align-items: center;
|
|
background: $color-concrete;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
padding: .5em 0;
|
|
|
|
.value {
|
|
@include font-h1;
|
|
}
|
|
|
|
.subtitle {
|
|
@include font-small;
|
|
color: $color-silver-chalice;
|
|
}
|
|
|
|
.units {
|
|
@include font-small;
|
|
}
|
|
|
|
&.error {
|
|
.value {
|
|
color: $brand-danger;
|
|
}
|
|
}
|
|
}
|
|
|
|
.stock-arrow {
|
|
@include font-h1;
|
|
padding: 1em;
|
|
}
|
|
}
|
|
|
|
.stock-comment-field {
|
|
margin-bottom: 1.25em;
|
|
}
|
|
|
|
.repository-stock-reminder-selector {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 1.25em;
|
|
|
|
.sci-checkbox-container {
|
|
margin-right: .5em;
|
|
}
|
|
}
|
|
|
|
.repository-stock-reminder-value {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 1.25em;
|
|
|
|
.sci-input-container {
|
|
flex-basis: 160px;
|
|
margin: 0 .5em;
|
|
}
|
|
}
|
|
}
|