2021-02-04 19:04:00 +03:00
|
|
|
// styles for Video variant editor (table + modal)
|
|
|
|
|
2021-02-13 10:55:59 +03:00
|
|
|
.config-video-variants {
|
|
|
|
.variants-table {
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.variants-table-module {
|
2021-02-15 05:46:34 +03:00
|
|
|
min-width: 400px;
|
2021-02-13 10:55:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// modal content
|
2021-02-04 19:04:00 +03:00
|
|
|
.config-variant-form {
|
2021-02-13 10:55:59 +03:00
|
|
|
.description {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2021-02-27 10:44:13 +03:00
|
|
|
.passthrough-warning {
|
|
|
|
text-align: center;
|
|
|
|
padding: 1em;
|
|
|
|
color: var(--ant-warning);
|
|
|
|
font-size: 0.88em;
|
|
|
|
font-weight: 500;
|
|
|
|
background-color: var(--black-50);
|
|
|
|
border-radius: var(--container-border-radius);
|
|
|
|
}
|
2021-02-13 10:55:59 +03:00
|
|
|
|
2021-02-15 05:46:34 +03:00
|
|
|
.cpu-usage-container,
|
|
|
|
.bitrate-container {
|
2021-02-21 02:14:50 +03:00
|
|
|
min-height: 22em;
|
2021-02-04 19:04:00 +03:00
|
|
|
}
|
2021-02-13 10:55:59 +03:00
|
|
|
|
2021-02-15 05:46:34 +03:00
|
|
|
.advanced-settings {
|
|
|
|
margin-top: 1em;
|
2021-02-21 02:14:50 +03:00
|
|
|
|
|
|
|
.resolution-module,
|
2021-02-27 10:44:13 +03:00
|
|
|
.video-passthrough-module {
|
2021-02-21 02:14:50 +03:00
|
|
|
min-height: 30em;
|
|
|
|
}
|
2021-02-04 19:04:00 +03:00
|
|
|
}
|
2021-02-27 10:44:13 +03:00
|
|
|
// make some things look disabled when passthrough is on
|
|
|
|
&.video-passthrough-enabled {
|
|
|
|
.form-module:not(.video-passthrough-module) {
|
|
|
|
opacity: 0.25;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2021-02-04 19:04:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.variants-table {
|
|
|
|
.actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.delete-button {
|
2021-02-16 01:09:34 +03:00
|
|
|
margin-left: 0.5em;
|
|
|
|
opacity: 0.8;
|
2021-02-04 19:04:00 +03:00
|
|
|
}
|
2021-02-13 10:55:59 +03:00
|
|
|
}
|
2021-02-16 01:08:47 +03:00
|
|
|
|
|
|
|
.read-more-subtext {
|
|
|
|
font-size: 0.8rem;
|
2021-02-16 01:09:34 +03:00
|
|
|
}
|
2021-05-23 09:27:51 +03:00
|
|
|
.codec-module {
|
|
|
|
.ant-collapse-content-active {
|
|
|
|
background-color: var(--white-15);
|
|
|
|
}
|
|
|
|
}
|