Minor style changes
This commit is contained in:
parent
eb829bce58
commit
d8d11cb008
@ -196,7 +196,7 @@ class LayoutManager {
|
||||
} else {
|
||||
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('sidebar').style.display = 'none';
|
||||
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('main-section').style.display = 'none';
|
||||
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('chat-mode').style.display = 'inline-grid';
|
||||
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('chat-mode').style.display = 'grid';
|
||||
}
|
||||
|
||||
for (const div of this.importantDivs.values()) {
|
||||
|
@ -36,6 +36,7 @@ body .message-info.warning{
|
||||
background: #ffa500d6;
|
||||
}
|
||||
.video-container{
|
||||
pointer-events: all;
|
||||
position: relative;
|
||||
transition: all 0.2s ease;
|
||||
background-color: #00000099;
|
||||
@ -676,6 +677,7 @@ input[type=range]:focus::-ms-fill-upper {
|
||||
|
||||
/* Let's make sure videos are vertically centered if they need to be cropped */
|
||||
.media-container {
|
||||
pointer-events: all;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
@ -684,7 +686,7 @@ input[type=range]:focus::-ms-fill-upper {
|
||||
}
|
||||
|
||||
.chat-mode {
|
||||
display: inline-grid;
|
||||
display: grid;
|
||||
width: 100%;
|
||||
padding: 1%;
|
||||
align-items: flex-start;
|
||||
@ -702,19 +704,19 @@ input[type=range]:focus::-ms-fill-upper {
|
||||
}
|
||||
|
||||
.chat-mode.one-col {
|
||||
grid-template-columns: auto;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
|
||||
.chat-mode.two-col {
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.chat-mode.three-col {
|
||||
grid-template-columns: auto auto auto;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
.chat-mode.four-col {
|
||||
grid-template-columns: auto auto auto auto;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
/*CONSOLE*/
|
||||
@ -746,7 +748,7 @@ input[type=range]:focus::-ms-fill-upper {
|
||||
position: relative;
|
||||
padding: 20px;
|
||||
margin: 20px;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user