- A fix for https://github.com/owncast/owncast/issues/1007. Hide app container when configdata is loading
- Also, disable global CSS transition animations for now. If we want to add transitions onto anything, we can target specific elements and add styles individually intead.
This commit is contained in:
@@ -37,9 +37,8 @@ a:hover {
|
||||
scrollbar-width: none; /* moz only */
|
||||
}
|
||||
|
||||
|
||||
#app-container * {
|
||||
transition: all .25s;
|
||||
#app-container.config-loading {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
button[disabled] {
|
||||
@@ -150,7 +149,6 @@ header {
|
||||
|
||||
/* *********** overrides when chat is off ***************************** */
|
||||
|
||||
|
||||
.no-chat footer {
|
||||
justify-content: center;
|
||||
}
|
||||
@@ -159,7 +157,8 @@ header {
|
||||
opacity: .75;
|
||||
}
|
||||
|
||||
.no-chat #chat-container-wrap {
|
||||
/* hide chat by default */
|
||||
#chat-container-wrap {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -172,8 +171,8 @@ header {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.chat #video-container,
|
||||
.chat #stream-info,
|
||||
.chat main,
|
||||
.chat footer,
|
||||
.chat #user-content {
|
||||
width: var(--content-width);
|
||||
}
|
||||
@@ -287,4 +286,4 @@ header {
|
||||
|
||||
#external-modal-iframe {
|
||||
height: 70vh;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user