bulk-operations v0.1 add the Drag & Drop UI Ghost , styled scrollbar

This commit is contained in:
Milos Holba
2020-11-28 15:56:12 +01:00
parent f33fe84350
commit 8e01b837a2
6 changed files with 210 additions and 114 deletions
+18 -22
View File
@@ -440,29 +440,25 @@
}
::-webkit-scrollbar {
width: 4px;
// border-radius: 15px;
}
.scroll-bar {
::-webkit-scrollbar {
width: 18px;
height: 18px;
cursor: pointer;
/* Handle */
::-webkit-scrollbar-thumb {
width: 4px;
background: #7f7f7f;
border-radius: 25px;
}
::-webkit-scrollbar-track {
width: 8px;
padding: 4px;
}
@media (prefers-color-scheme: dark) {
::-webkit-scrollbar-thumb {
background: $light_text;
}
::-webkit-scrollbar-thumb {
border: 6px solid white;
background: #7f7f7f;
border-radius: 25px;
}
}
@media (prefers-color-scheme: dark) {
.scroll-bar {
::-webkit-scrollbar-thumb {
border: 6px solid $dark_mode_background;
background: $dark_mode_foreground !important;
}
}
}