mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
fe5fbea623
* Add css linter step * Add test css file * Set working directory * Only run against changed files * remove test css file * only run workflow steps if any css files were changed * commiting a file with issues * fixing file with linter warnings
76 lines
1.4 KiB
CSS
76 lines
1.4 KiB
CSS
.status-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.status-container.status-success {
|
|
color: var(--ant-success);
|
|
}
|
|
|
|
.status-container.status-error {
|
|
color: var(--ant-error);
|
|
}
|
|
|
|
.status-container.status-warning {
|
|
color: var(--ant-warning);
|
|
}
|
|
|
|
.status-container.empty {
|
|
display: none;
|
|
}
|
|
|
|
.status-container .status-icon {
|
|
display: inline-block;
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.field-tip {
|
|
font-size: 0.8em;
|
|
color: var(--theme-color-palette-10);
|
|
}
|
|
|
|
.field-container {
|
|
padding: 0.85em 0 0.5em;
|
|
}
|
|
|
|
.segment-slider-container {
|
|
width: 100%;
|
|
margin: auto;
|
|
padding: 1em 2em 0.75em;
|
|
background-color: var(--color-owncast-palette-7);
|
|
border-radius: var(--theme-rounded-corners);
|
|
}
|
|
|
|
.segment-slider-container .status-container {
|
|
width: 100%;
|
|
margin: 0.5em auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.segment-slider-container .selected-value-note {
|
|
width: 100%;
|
|
margin: 3em auto 0;
|
|
text-align: center;
|
|
font-size: 0.75em;
|
|
line-height: normal;
|
|
color: var(--theme-color-palette-4);
|
|
padding: 1em;
|
|
border-radius: var(--theme-rounded-corners);
|
|
background-color: var(--theme-color-palette-error);
|
|
}
|
|
|
|
.segment-tip {
|
|
width: 10em;
|
|
text-align: center;
|
|
margin: auto;
|
|
display: inline-block;
|
|
}
|
|
|
|
#selected-codec-note {
|
|
margin-top: 8px;
|
|
text-align: justify;
|
|
line-height: 1.4em;
|
|
}
|