You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.6 KiB
90 lines
1.6 KiB
$border-style: 3px solid currentColor; |
|
$p-size: 8px; |
|
$p-h-size: 8px; |
|
$p-v-size: 2px; |
|
|
|
.root { |
|
* { |
|
z-index: 100; |
|
} |
|
border-left: $border-style; |
|
position: relative; |
|
font-size: var(--chat-message-text-size); |
|
padding: $p-v-size $p-h-size; |
|
color: var(--theme-color-components-chat-text); |
|
|
|
.user { |
|
display: flex; |
|
align-items: center; |
|
font-weight: 600; |
|
} |
|
|
|
.message { |
|
overflow: hidden; |
|
overflow-wrap: anywhere; |
|
font-weight: 400; |
|
position: relative; |
|
|
|
mark { |
|
padding-left: 0.3em; |
|
padding-right: 0.3em; |
|
color: var(--theme-color-palette-4); |
|
border-radius: var(--chat-text-highlight-border-radius); |
|
background-color: var(--color-owncast-palette-7); |
|
} |
|
|
|
a { |
|
color: var(--theme-color-palette-12); |
|
&:hover { |
|
color: var(--theme-color-palette-4); |
|
} |
|
} |
|
} |
|
|
|
&.ownMessage { |
|
border-left: none; |
|
border-right: $border-style; |
|
|
|
.background { |
|
position: absolute; |
|
top: 0px; |
|
left: 0px; |
|
width: 100%; |
|
height: 100%; |
|
background-color: currentColor; |
|
opacity: 0.07; |
|
border-radius: 0.25rem; |
|
overflow: hidden; |
|
} |
|
} |
|
|
|
.modMenuWrapper { |
|
position: absolute; |
|
display: none; |
|
top: 5px; |
|
right: 10px; |
|
color: var(--theme-color-components-text-on-light); |
|
& button:focus, |
|
& button:active { |
|
display: block !important; |
|
} |
|
|
|
button { |
|
border-radius: var(--theme-rounded-corners); |
|
border-width: 0; |
|
opacity: 0.8; |
|
} |
|
} |
|
|
|
&:hover .modMenuWrapper { |
|
display: block; |
|
} |
|
} |
|
|
|
.messagePadding { |
|
padding: 0.4rem 5px 0px 5px; |
|
} |
|
|
|
.messagePaddingCollapsed { |
|
padding: 0px 5px 0px 5px; |
|
}
|
|
|