629619256e
This will need to wait for https://github.com/vizia/vizia/issues/85 as right now it's not yet possible to get this to behave correctly (other than perhaps sending manual WindowEvents on the next frame).
25 lines
540 B
CSS
25 lines
540 B
CSS
/* Default styling for the widgets included in nih_plug_vizia */
|
|
|
|
param-slider {
|
|
height: 30px;
|
|
width: 180px;
|
|
border-color: #0a0a0a;
|
|
border-width: 1px;
|
|
background-color: transparent;
|
|
transition: background-color 0.1 0;
|
|
}
|
|
|
|
/* Vizia doesn't support commas in selectors */
|
|
/* Also, WTB Sass */
|
|
param-slider:active {
|
|
background-color: #8080801a;
|
|
transition: background-color 0.1 0;
|
|
}
|
|
param-slider:hover {
|
|
background-color: #8080801a;
|
|
transition: background-color 0.1 0;
|
|
}
|
|
|
|
param-slider .fill {
|
|
background-color: #c4c4c4;
|
|
}
|