Merge pull request #309 from Moritz-Deiaco/main

added a 'moonlight worth' scrollbar
This commit is contained in:
Marcel Baumgartner 2023-09-06 19:58:34 +02:00 committed by GitHub
commit 1a9836a884
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -2,7 +2,7 @@
@using BlazorContextMenu
@using Moonlight.App.Helpers
<div class="table-responsive">
<div class="table-responsive single-color-scrollbar">
<div class="dataTables_scroll">
<div class="dataTables_scrollHead">
<div class="dataTables_scrollHeadInner">

View file

@ -64,9 +64,14 @@
}
::-webkit-scrollbar-thumb {
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.5, #a520ca), color-stop(1, #2681cc));
}
.single-color-scrollbar::-webkit-scrollbar-thumb {
background: #6964E4;
}
::-webkit-scrollbar-thumb:hover {
.single-color-scrollbar::-webkit-scrollbar-thumb:hover {
background: #6964E4;
}