84 lines
1.2 KiB
SCSS
84 lines
1.2 KiB
SCSS
@import "mixin";
|
|
@import "properties";
|
|
|
|
.modal-body.modal-latency {
|
|
@include user-select(none);
|
|
@include transform(all $button_hover_animation_time ease-in-out);
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
|
|
.htmltag-client {
|
|
color: #999!important;
|
|
margin-left: .25em;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.value {
|
|
margin-left: .25em;
|
|
}
|
|
}
|
|
|
|
.container-min, .container-max {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
|
|
height: 2em;
|
|
|
|
.container-value {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
|
|
margin-right: 1em;
|
|
width: 9em;
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
align-self: center;
|
|
|
|
.value {
|
|
}
|
|
}
|
|
}
|
|
|
|
.container-max {
|
|
padding-top: 1em;
|
|
}
|
|
|
|
.container-slider {
|
|
align-self: center;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
|
|
margin-top: 2em;
|
|
|
|
.spacer {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
min-width: 0;
|
|
}
|
|
|
|
button:not(:last-of-type) {
|
|
margin-right: 1em;
|
|
}
|
|
}
|
|
} |