mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 01:06:03 +03:00
WebUI: Use thin scrollbars
Thin scrollbars are now used if they are supported by user's browser. The main goal was to make them less intrusive in Chrome-likes on some platforms. PR #21763. --------- Co-authored-by: Chocobo1 <Chocobo1@users.noreply.github.com>
This commit is contained in:
parent
631e873ff2
commit
889df72ab3
1 changed files with 12 additions and 0 deletions
|
@ -75,6 +75,18 @@ ol {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Scrollbars */
|
||||||
|
|
||||||
|
@supports (scrollbar-width: auto) and (selector(::-webkit-scrollbar)) {
|
||||||
|
:root[slick-uniqueid], /* targets iframe mocha dialogs */
|
||||||
|
.dynamicTableDiv,
|
||||||
|
.mochaContentWrapper,
|
||||||
|
.panel,
|
||||||
|
#rssDetailsView {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Forms */
|
/* Forms */
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
|
|
Loading…
Reference in a new issue