* fix: #2751 padding around confirmation mark * Prettified Code! --------- Co-authored-by: thisProjects <wibbet@wobbet.com> Co-authored-by: thisprojects <thisprojects@users.noreply.github.com>
This commit is contained in:
parent
69e991c06a
commit
fc7bb90a30
@ -7,16 +7,19 @@
|
|||||||
z-index: 10;
|
z-index: 10;
|
||||||
background-color: var(--theme-color-palette-1);
|
background-color: var(--theme-color-palette-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .menu-container {
|
.app-container .menu-container {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
background-color: unset;
|
background-color: unset;
|
||||||
color: var(--theme-color-components-text-on-dark);
|
color: var(--theme-color-components-text-on-dark);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .menu-container .ant-menu-item-selected:not(.ant-menu-item-only-child),
|
.app-container .menu-container .ant-menu-item-selected:not(.ant-menu-item-only-child),
|
||||||
.ant-menu-item a:hover,
|
.ant-menu-item a:hover,
|
||||||
.ant-menu-item a::before {
|
.ant-menu-item a::before {
|
||||||
color: var(--theme-color-palette-12);
|
color: var(--theme-color-palette-12);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container h1.owncast-title {
|
.app-container h1.owncast-title {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
padding-bottom: 4px;
|
padding-bottom: 4px;
|
||||||
@ -25,6 +28,7 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container h1.owncast-title .logo-container {
|
.app-container h1.owncast-title .logo-container {
|
||||||
background-color: var(--theme-color-palette-4);
|
background-color: var(--theme-color-palette-4);
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
@ -34,6 +38,7 @@
|
|||||||
width: 60px;
|
width: 60px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container h1.owncast-title .title-label {
|
.app-container h1.owncast-title .title-label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
@ -44,9 +49,11 @@
|
|||||||
line-height: normal;
|
line-height: normal;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .layout-main {
|
.app-container .layout-main {
|
||||||
margin-left: 240px;
|
margin-left: 240px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .layout-header {
|
.app-container .layout-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -55,23 +62,28 @@
|
|||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
background-color: var(--theme-color-background-main);
|
background-color: var(--theme-color-background-main);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .main-content-container {
|
.app-container .main-content-container {
|
||||||
background-color: var(--theme-color-palette-3);
|
background-color: var(--theme-color-palette-3);
|
||||||
padding: 2em 3em 3em;
|
padding: 2em 3em 3em;
|
||||||
min-width: 50vw;
|
min-width: 50vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .footer-container {
|
.app-container .footer-container {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .online-status-indicator {
|
.app-container .online-status-indicator {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .online-status-indicator .online-thumbnail {
|
.app-container .online-status-indicator .online-thumbnail {
|
||||||
width: 12.5rem;
|
width: 12.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .online-status-indicator .status-label {
|
.app-container .online-status-indicator .status-label {
|
||||||
color: var(--theme-color-palette-4);
|
color: var(--theme-color-palette-4);
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -80,58 +92,76 @@
|
|||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
color: var(--offline-color);
|
color: var(--offline-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .online-status-indicator .status-icon {
|
.app-container .online-status-indicator .status-icon {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container .online-status-indicator .status-icon svg {
|
.app-container .online-status-indicator .status-icon svg {
|
||||||
fill: var(--offline-color);
|
fill: var(--offline-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-container.online .online-status-indicator .status-icon svg {
|
.app-container.online .online-status-indicator .status-icon svg {
|
||||||
fill: var(--online-color);
|
fill: var(--online-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-container .status-icon {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.app-container.online .online-status-indicator .status-label {
|
.app-container.online .online-status-indicator .status-label {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
color: var(--online-color);
|
color: var(--online-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container {
|
.global-stream-title-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container {
|
.global-stream-title-container .textfield-with-submit-container {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .input-side {
|
.global-stream-title-container .textfield-with-submit-container .input-side {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 800px) {
|
@media (max-width: 800px) {
|
||||||
.global-stream-title-container .textfield-with-submit-container .input-side {
|
.global-stream-title-container .textfield-with-submit-container .input-side {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .label-side {
|
.global-stream-title-container .textfield-with-submit-container .label-side {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .lower-container {
|
.global-stream-title-container .textfield-with-submit-container .lower-container {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .lower-container .lower-content {
|
.global-stream-title-container .textfield-with-submit-container .lower-container .lower-content {
|
||||||
flex-direction: column-reverse;
|
flex-direction: column-reverse;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .lower-container .label-spacer,
|
.global-stream-title-container .textfield-with-submit-container .lower-container .label-spacer,
|
||||||
.global-stream-title-container .textfield-with-submit-container .lower-container .field-tip {
|
.global-stream-title-container .textfield-with-submit-container .lower-container .field-tip {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container .textfield-with-submit-container .lower-container .status-container {
|
.global-stream-title-container .textfield-with-submit-container .lower-container .status-container {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -2em;
|
bottom: -2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-stream-title-container
|
.global-stream-title-container
|
||||||
.textfield-with-submit-container
|
.textfield-with-submit-container
|
||||||
.lower-container
|
.lower-container
|
||||||
|
Loading…
x
Reference in New Issue
Block a user