Former-commit-id: 25e4b89053
This commit is contained in:
Hadi
2024-06-14 13:44:30 +02:00
parent 19bf7838c4
commit cd3dfb985c
233 changed files with 14340 additions and 23 deletions

View File

@@ -0,0 +1,75 @@
/*************
* scrollbar *
*************/
.scrollbar {
border-width: 0;
border-style: none;
padding: 0;
border-radius: 3px;
}
.scrollbars-junction,
.scrollbar.trough {
border-width: 0;
border-radius: 0;
background-color: @theme_bg_color;
background-image: none;
}
.scrollbar.button,
.scrollbar.button:active,
.scrollbar.button:active:hover {
border-width: 0;
border-radius: 0;
background-color: transparent;
background-image: none;
color: shade(@theme_bg_color, 0.6);
}
.scrollbar.slider {
border-width: 0;
border-radius: 10px;
background-color: shade(@button_normal_color, 1.1);
}
.scrollbar.slider:hover,
.scrollbar.slider.vertical:hover {
background-color: @button_normal_color;
}
.scrollbar.slider:active,
.scrollbar.slider.vertical:active {
background-color: @theme_selected_bg_color;
}
.scrollbar.trough,
.scrollbar.trough.vertical {
border-width: 0;
border-radius: 0;
background-color: transparent;
}
.scrollbar.slider.fine-tune:prelight:active {
background-size: 50%;
background-repeat: no-repeat;
background-position: center;
}
/* overlay scrollbar */
OsThumb {
color: shade(@theme_bg_color, 0.6);
}
OsThumb:selected,
OsScrollbar:selected {
background-color: @theme_selected_bg_color;
}
OsThumb:active,
OsScrollbar:active {
background-color: @theme_selected_bg_color;
}
OsThumb:insensitive,
OsScrollbar:insensitive {
background-color: shade(@theme_bg_color, 0.9);
}