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

41 lines
918 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;
/*
* NOTE: vizia's font rendering looks way too dark and thick. Going one font
* weight lower seems to compensate for this.
*/
font-weight: light;
2022-10-09 00:21:01 +11:00
}
scrollview > scroll_content {
/* 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;
2023-11-06 09:13:44 +11:00
border-radius: 0px;
child-space: 0px;
}
scrollview scrollbar.horizontal {
right: 10px;
height: 10px;
}
scrollview scrollbar.vertical {
width: 10px;
}
scrollview scrollbar .thumb {
background-color: #5d5d5d;
2023-11-06 09:13:44 +11:00
border-radius: 0px;
min-width: 10px;
min-height: 10px;
2023-11-06 09:13:44 +11:00
transition: background-color 100ms;
}
scrollview scrollbar .thumb:hover {
background-color: #808080;
2023-11-06 09:13:44 +11:00
transition: background-color 100ms;
}