2022-01-26 17:28:43 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
|
|
|
|
2022-01-28 18:10:56 +08:00
|
|
|
.repository-stock-modal,
|
|
|
|
#consumeRepositoryStockValueModal {
|
2022-01-26 17:28:43 +08:00
|
|
|
.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;
|
2022-04-08 17:11:24 +08:00
|
|
|
border-radius: $border-radius-modal;
|
2022-01-26 17:28:43 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
2022-03-30 20:03:07 +08:00
|
|
|
height: 5.5em;
|
2022-01-26 17:28:43 +08:00
|
|
|
padding: .5em 0;
|
|
|
|
|
|
|
|
.value {
|
|
|
|
@include font-h1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
@include font-small;
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
}
|
|
|
|
|
|
|
|
.units {
|
|
|
|
@include font-small;
|
|
|
|
}
|
2022-01-28 18:10:56 +08:00
|
|
|
|
2022-04-15 18:08:29 +08:00
|
|
|
&.negative {
|
|
|
|
.value {
|
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-28 18:10:56 +08:00
|
|
|
&.error {
|
|
|
|
.value {
|
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
}
|
2022-01-26 17:28:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.stock-arrow {
|
|
|
|
@include font-h1;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
}
|
2022-03-09 21:19:15 +08:00
|
|
|
|
|
|
|
.stock-comment-field {
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository-stock-reminder-selector {
|
2022-04-05 16:25:47 +08:00
|
|
|
@include font-button;
|
2022-03-09 21:19:15 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
|
|
|
|
.sci-checkbox-container {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.repository-stock-reminder-value {
|
2022-04-05 16:25:47 +08:00
|
|
|
@include font-button;
|
2022-03-09 21:19:15 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
|
|
|
|
.sci-input-container {
|
|
|
|
flex-basis: 160px;
|
|
|
|
margin: 0 .5em;
|
|
|
|
}
|
|
|
|
}
|
2022-01-26 17:28:43 +08:00
|
|
|
}
|
2022-04-04 17:07:46 +08:00
|
|
|
|
|
|
|
#consumeRepositoryStockValueModalWarning {
|
|
|
|
.modal-body {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
p {
|
|
|
|
padding: 15px 15px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|