feat: add more colours to dark theme
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
This commit is contained in:
parent
5a8ce74d04
commit
cb61754c0a
5 changed files with 13 additions and 7 deletions
|
@ -50,7 +50,7 @@ function runCallback(item: ContextMenuItem) {
|
|||
height: 2rem;
|
||||
width: 100%;
|
||||
color: var(--text-color);
|
||||
background-color: var(--sidebar-highlighted-background-color);
|
||||
background-color: var(--popup-background-color);
|
||||
border: none;
|
||||
text-align: left;
|
||||
padding-left: 1rem;
|
||||
|
@ -58,7 +58,7 @@ function runCallback(item: ContextMenuItem) {
|
|||
}
|
||||
|
||||
.context-menu-item:hover {
|
||||
background-color: rgb(50, 50, 50);
|
||||
background-color: var(--popup-highlighted-background-color);
|
||||
}
|
||||
|
||||
.context-menu-item-danger {
|
||||
|
|
|
@ -58,7 +58,7 @@ function scrollToReply(e: MouseEvent) {
|
|||
console.log("scrolling into view");
|
||||
reply.scrollIntoView({ behavior: "smooth", block: "center" });
|
||||
reply.style.transition = "background-color .3s";
|
||||
reply.style.backgroundColor = "var(--primary-highlighted-color)";
|
||||
reply.style.backgroundColor = "var(--chat-featured-message-color)";
|
||||
setTimeout(() => {
|
||||
reply.style.backgroundColor = "";
|
||||
}, 1000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue