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
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);