fix scrollbar styling in both ff and chrome (white corner in dark themes when both scrollbars are present)

This commit is contained in:
zadam 2019-07-20 22:14:40 +02:00
parent 3850f52401
commit 1ac0c4f874

View file

@ -134,6 +134,11 @@ li.dropdown-submenu:hover > ul.dropdown-menu {
border-style: solid;
}
body {
/* FF basic styling */
scrollbar-color: var(--active-item-background-color) var(--main-background-color);
}
::-webkit-scrollbar {
width: 12px;
}
@ -143,6 +148,10 @@ li.dropdown-submenu:hover > ul.dropdown-menu {
border: 1px solid var(--main-border-color);
}
::-webkit-scrollbar-corner {
background-color: inherit;
}
#note-info-table td, #note-info-table th {
padding: 15px;
}