1
0
Fork 0
nih-plug/nih_plug_vizia/assets/theme.css
Robbert van der Helm 922a81f654 Drop all mentions of vizia point scale
It does use pixels instead of points.
2022-11-11 16:21:30 +01:00

36 lines
738 B
CSS

/* Overrides for default VIZIA widgets */
: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;
}