Improve tabs background coloring (#2395)

* improved tabs background coloring

* improvements

* reverted changes

* color improvements

* added light theme
This commit is contained in:
Myzel394 2021-12-05 12:07:53 +00:00 committed by GitHub
parent 64f1671566
commit 2f5f116345
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -187,6 +187,14 @@ const TAB_ROW_TPL = `
cursor: pointer;
}
.tab-row-widget .note-tab:hover .note-tab-wrapper {
background-color: var(--inactive-tab-hover-background-color);
}
.tab-row-widget .note-tab[active]:hover .note-tab-wrapper {
background-color: var(--active-tab-hover-background-color);
}
.tab-row-widget .note-tab .note-tab-close:hover {
background-color: var(--hover-item-background-color);
color: var(--hover-item-text-color);

View file

@ -54,9 +54,11 @@
--launcher-pane-text-color: #AAAAAA;
--active-tab-background-color: #666;
--active-tab-hover-background-color: #737373;
--active-tab-text-color: #ccc;
--inactive-tab-background-color: #444;
--inactive-tab-hover-background-color: #525252;
--inactive-tab-text-color: #bbb;
--scrollbar-border-color: #888;

View file

@ -58,9 +58,11 @@ html {
--launcher-pane-text-color: #333;
--active-tab-background-color: #ddd;
--active-tab-hover-background-color: #d1d1d1;
--active-tab-text-color: black;
--inactive-tab-background-color: #f0f0f0;
--inactive-tab-hover-background-color: #e3e3e3;
--inactive-tab-text-color: #666;
--scrollbar-border-color: #ddd;