Spaces:
Runtime error
Runtime error
File size: 1,054 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
@import "../../css/colors.css";
@import "../../css/units.css";
.modal-content {
width: 360px;
}
.body {
background: $ui-modal-background;
padding: 1.5rem 2.25rem;
}
.label {
font-weight: 500;
margin: 0 0 0.75rem;
}
.min-input, .max-input {
margin-bottom: 1.5rem;
width: 100%;
border: 1px solid $ui-black-transparent;
border-radius: 5px;
padding: 0 1rem;
height: 3rem;
color: $text-primary-transparent;
font-size: .875rem;
background-color: $input-background;
}
.button-row {
font-weight: bolder;
text-align: right;
}
.button-row button {
padding: 0.75rem 1rem;
border-radius: 0.25rem;
background: white;
color: black;
border: 1px solid $ui-black-transparent;
font-weight: 600;
font-size: 0.85rem;
}
.button-row button.ok-button {
background: $looks-secondary;
border: $looks-secondary;
color: white;
}
[dir="ltr"] .button-row button + button {
margin-left: 0.5rem;
}
[dir="rtl"] .button-row button + button {
margin-right: 0.5rem;
}
|