1
0
Fork 0
nih-plug/nih_plug_vizia/assets/theme.css

36 lines
738 B
CSS
Raw Normal View History

/* Overrides for default VIZIA widgets */
2022-10-09 00:21:01 +11:00
:root {
background-color: #fafafa;
color: #0a0a0a;
font-size: 15;
}
scrollview > vstack {
/* Normally the scroll bar overlaps with the content, so we'll add a little offset to prevent that */
child-right: 15px;
}
scrollview scrollbar {
background-color: #dadada;
border-radius: 0;
child-space: 0;
}
scrollview scrollbar.horizontal {
right: 10px;
height: 10px;
}
scrollview scrollbar.vertical {
width: 10px;
}
scrollview scrollbar .thumb {
background-color: #5d5d5d;
border-radius: 0;
min-width: 10px;
min-height: 10px;
transition: background-color 0.1 0;
}
scrollview scrollbar .thumb:hover {
background-color: #808080;
transition: background-color 0.1 0;
}