1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-24 19:13:31 +03:00

nicer scrollbars (fixes #440)

This commit is contained in:
Eugene Pankov 2018-12-07 14:54:56 +01:00
parent 9440d687d3
commit 2606b910f1

View File

@ -126,7 +126,7 @@ body {
app-root {
&.no-tabs {
background: rgba(0,0,0,.5);
background: rgba(0,0,0,.5);
}
&> .content {
@ -366,3 +366,18 @@ toggle.active .body .toggle {
fill: white;
fill-opacity: 0.75;
}
*::-webkit-scrollbar {
background: rgba(0, 0, 0, .125);
width: 10px;
margin: 5px;
}
*::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, .25);
}
*::-webkit-scrollbar-corner,
*::-webkit-resizer {
opacity: 0;
}