Updating to remote version. No customizations.

No customizations are in this commit. This file now matches the github source.
This commit is contained in:
Jordan Wages 2020-11-27 16:52:37 -06:00
parent 83dcaab571
commit e8c0a99363
1 changed files with 24 additions and 13 deletions

View File

@ -29,7 +29,7 @@ input, select, textarea {
transition: filter 150ms; transition: filter 150ms;
} }
.sidebar__toolbar-button-icon--darkmode { .rcx-icon--name-darkmode {
height: .9em; height: .9em;
} }
@ -179,7 +179,7 @@ body.dark-mode {
/***************Main Chat*****************/ /***************Main Chat*****************/
body.dark-mode a { body.dark-mode .main-content a {
color: var(--color-light-blue); color: var(--color-light-blue);
} }
@ -195,10 +195,6 @@ body.dark-mode .sidebar-item > a {
color: inherit; color: inherit;
} }
body.dark-mode select option {
color: var(--color-dark);
}
body.dark-mode .rc-switch__text { body.dark-mode .rc-switch__text {
color: var(--color-white); color: var(--color-white);
} }
@ -299,6 +295,18 @@ body.dark-mode .message-actions__menu:hover {
background-color: var(--color-dark); background-color: var(--color-dark);
} }
body.dark-mode .message .body > table thead tr {
background-color: var(--color-darkest);
}
body.dark-mode .message .body > table tr {
background-color: var(--color-dark-medium);
}
body.dark-mode .message .body > table tr:nth-child(2n) {
background-color: var(--color-dark);
}
body.dark-mode .background-transparent-darker-before::before { body.dark-mode .background-transparent-darker-before::before {
background-color: var(--color-dark-medium); background-color: var(--color-dark-medium);
} }
@ -349,6 +357,11 @@ body.dark-mode .contextual-bar__content {
background-color: var(--color-dark); background-color: var(--color-dark);
} }
/* Targets unread message indicator in threads panel. */
body.dark-mode button.rcx-contextual-message__follow + div.rcx-box--full {
background-color: #1d74f5 !important;
}
/***** Chat file list *****/ /***** Chat file list *****/
body.dark-mode .attachments__item:hover, .attachments__item:active { body.dark-mode .attachments__item:hover, .attachments__item:active {
@ -367,8 +380,6 @@ body.dark-mode .attachments__name:hover, .attachments__name:active {
color: var(--color-light-blue); color: var(--color-light-blue);
} }
/*****/
body.dark-mode .rc-popover__content { body.dark-mode .rc-popover__content {
background-color: var(--popover-background); background-color: var(--popover-background);
box-shadow: 0px 0px 2px var(--color-dark-20); box-shadow: 0px 0px 2px var(--color-dark-20);
@ -573,7 +584,7 @@ body.dark-mode .rcx-table__cell--align-end {
background-color: var(--color-dark-medium) !important; background-color: var(--color-dark-medium) !important;
} }
body.dark-mode .rcx-box { body.dark-mode .main-content .rcx-box {
color: var(--info-font-color) !important; color: var(--info-font-color) !important;
background-color: var(--color-dark) !important; background-color: var(--color-dark) !important;
} }
@ -587,7 +598,7 @@ body.dark-mode .rcx-table__cell--align-start {
background-color: var(--color-dark-medium) !important; background-color: var(--color-dark-medium) !important;
} }
body.dark-mode .rcx-button { body.dark-mode .main-content .rcx-button {
background-color: var(--color-dark-medium) background-color: var(--color-dark-medium)
} }
@ -662,15 +673,15 @@ body.dark-mode #login-card {
/**************Scrollbars******************/ /**************Scrollbars******************/
body.dark-mode *::-webkit-scrollbar { body.dark-mode .main-content *::-webkit-scrollbar {
background-color: rgba(255, 255, 255, 0.05); background-color: rgba(255, 255, 255, 0.05);
} }
body.dark-mode *::-webkit-scrollbar-thumb { body.dark-mode .main-content *::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.15); background-color: rgba(255, 255, 255, 0.15);
} }
body.dark-mode *::-webkit-scrollbar-corner { body.dark-mode .main-content *::-webkit-scrollbar-corner {
background-color: rgba(255, 255, 255, 0.05); background-color: rgba(255, 255, 255, 0.05);
} }