Browse Source

Theme scrollbars in Unraid

pull/314/head
Cody Carrell 4 years ago
committed by GitHub
parent
commit
2efc85f7df
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      css/base/unraid/unraid-base.css

22
css/base/unraid/unraid-base.css

@ -737,4 +737,24 @@ unraid-authed::part(div[data-v-050c892a] > button) {
dt {
color: var(--text-hover);
}
}
::-webkit-scrollbar {
height: 10px;
width : 10px;
}
::-webkit-scrollbar-track {
background: var(--main-bg-color);
}
::-webkit-scrollbar-thumb {
background-color: hsla(0,0%,100%,.08)!important;
border: 1px solid transparent;
border-radius: 5px;
background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.25);
}

Loading…
Cancel
Save