Added moderator menu to messages and some other styling.

created new ant overrides file.

Ignore the static directory
This commit is contained in:
t1enne
2022-07-01 22:49:42 +02:00
parent 1cf90fb581
commit e6cc3a39d1
10 changed files with 622 additions and 509 deletions

View File

@@ -6,6 +6,7 @@
// animation: chatFadeIn .1s ease-in;
.background {
position: absolute;
z-index: -1;
top: 0px;
left: 0px;
width: 100%;
@@ -16,8 +17,7 @@
overflow: hidden;
}
.user {
font: var(--theme-header-font-family);
color: var(--color-owncast-grey-100);
font-family: var(--theme-header-font-family);
font-weight: bold;
}
.message {
@@ -38,6 +38,7 @@
box-decoration-break: clone;
}
}
.customBorder {
position: absolute;
top: 0px;
@@ -53,7 +54,7 @@
top: 0%;
right: 0px;
background-color: currentColor;
border-radius: 0.5rem;
border-radius: var(--theme-rounded-corners);
}
}
@@ -66,6 +67,17 @@
}
}
}
.modMenuWrapper {
position: absolute;
display: none;
top: 0;
right: 10px;
}
&:hover .modMenuWrapper {
display: block;
}
}