Skip to content

Commit

Permalink
make scrollbar visible
Browse files Browse the repository at this point in the history
  • Loading branch information
Tetrax-10 committed Feb 17, 2024
1 parent e909918 commit 4ab6dd8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Themes/PlexBetterStyles/theme/misc/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ input[type="range"].zoom-slider:focus::-ms-fill-upper {
color: #fff !important;
}

// hide all scrollbar
html,
// hide scene and other page scrollbar
.tab-content,
.scene-tabs {
scrollbar-width: none !important;
Expand All @@ -154,6 +153,18 @@ html,
}
}

// scrollbar theming
html {
::-webkit-scrollbar {
width: 10px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #2b2b2b;
border-radius: 6px;
}
}

// star rating
.rating-stars {
.btn-secondary {
Expand Down
8 changes: 8 additions & 0 deletions Themes/PlexBetterStyles/theme/personal/misc/misc.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// hide all scrollbar
html {
scrollbar-width: none !important;

&::-webkit-scrollbar {
display: none !important;
}
}
1 change: 1 addition & 0 deletions Themes/PlexBetterStyles/theme/personal/personal.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
@use "components/components";
@use "misc/misc";
@use "pages/pages";

0 comments on commit 4ab6dd8

Please sign in to comment.