Skip to content

Commit

Permalink
fix: white background while in settings on Windows
Browse files Browse the repository at this point in the history
fixes #13
  • Loading branch information
Moilk authored and adesurirey committed Mar 6, 2021
1 parent 998cf11 commit 7c4a52a
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions theme/notes-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,13 @@
--primary-btn-border-color: var(--primary-color);
--side-bar-bg-color: var(--bg-color-dark);
--item-hover-bg-color: var(--bg-color);
--item-hover-text-color: var(--text-highlight-color);
--active-file-bg-color: var(--bg-color);
--active-file-border-color: var(--bg-color);
--window-border: 1px solid var(--bg-color);
--focus-ring-color: transparent;
--table-bg-darker-color: var(--bg-color-dark);
--table-bg-color: var(--bg-color);
}

html {
Expand Down Expand Up @@ -525,3 +528,55 @@ code {
#md-notification .btn {
border: 0;
}

.megamenu-menu {
background-color: var(--bg-color-dark);
}

.megamenu-opened header {
background-image: none;
}

/* mega menu */
.megamenu-content,
.megamenu-opened header {
background: var(--bg-color);
}

.megamenu-opened .megamenu-content {
visibility: visible;
opacity: 1;
animation: none;
background-color: inherit;
}

#recent-file-panel tbody tr:nth-child(2n) {
background-color: var(--table-bg-darker-color);
}

#recent-file-panel tbody tr:nth-child(2n + 1) {
background-color: var(--table-bg-color);
}

#recent-file-panel-action-btn {
background-color: var(--bg-color);
}

.long-btn:hover {
background-color: var(--item-hover-bg-color);
color: var(--item-hover-text-color) !important;
}

#recent-file-panel-action-btn:hover{
background-color: var(--item-hover-bg-color);
color: var(--item-hover-text-color) !important;
}

.mouse-entered #top-titlebar .toolbar-icon.btn:hover,
.mouse-entered #top-titlebar .toolbar-icon.btn.hover {
background-color: var(--item-hover-bg-color);
}

#m-import-local:hover .preference-item-hint {
color: var(--item-hover-text-color);
}

0 comments on commit 7c4a52a

Please sign in to comment.