mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
a16de72611
* Mange stock modlla improvements [SCI-9591] * Fix manage stock modal close button [SCI-9591] * Update manage stock url after update stock value [SCI-9591]
85 lines
1.4 KiB
SCSS
85 lines
1.4 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;
|
|
border-radius: $border-radius-modal;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: .5em 0;
|
|
|
|
.value {
|
|
@include font-h1;
|
|
}
|
|
|
|
.subtitle {
|
|
@include font-small;
|
|
color: $color-silver-chalice;
|
|
}
|
|
|
|
.units {
|
|
@include font-small;
|
|
}
|
|
|
|
&.negative {
|
|
.value {
|
|
color: $brand-danger;
|
|
}
|
|
}
|
|
|
|
&.error {
|
|
.value {
|
|
color: $brand-danger;
|
|
}
|
|
}
|
|
}
|
|
|
|
.stock-arrow {
|
|
@include font-h1;
|
|
padding: 1em;
|
|
}
|
|
}
|
|
|
|
.stock-comment-field {
|
|
margin-bottom: 1.25em;
|
|
}
|
|
|
|
.repository-stock-reminder-selector {
|
|
@include font-button;
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 1.25em;
|
|
|
|
.sci-checkbox-container {
|
|
margin-right: .5em;
|
|
}
|
|
}
|
|
|
|
.repository-stock-reminder-value {
|
|
@include font-button;
|
|
align-items: center;
|
|
display: flex;
|
|
margin-bottom: 1.25em;
|
|
|
|
.sci-input-container {
|
|
flex-basis: 160px;
|
|
margin: 0 .5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
#consumeRepositoryStockValueModalWarning {
|
|
.modal-body {
|
|
p {
|
|
padding: 15px 15px 0;
|
|
}
|
|
}
|
|
}
|