mirror of
https://github.com/zadam/trilium.git
synced 2025-01-16 03:58:53 +08:00
fix scrollbar styling in both ff and chrome (white corner in dark themes when both scrollbars are present)
This commit is contained in:
parent
3850f52401
commit
1ac0c4f874
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue