2022-03-19 05:12:38 +11:00
|
|
|
/* Default styling for the widgets included in nih_plug_vizia */
|
2022-03-19 11:17:13 +11:00
|
|
|
|
|
|
|
param-slider {
|
|
|
|
height: 30px;
|
|
|
|
width: 180px;
|
|
|
|
border-color: #0a0a0a;
|
|
|
|
border-width: 1px;
|
|
|
|
background-color: transparent;
|
|
|
|
transition: background-color 0.1 0;
|
|
|
|
}
|
|
|
|
|
2022-03-20 01:28:58 +11:00
|
|
|
/* Vizia doesn't support commas in selectors */
|
|
|
|
/* Also, WTB Sass */
|
2022-03-19 11:17:13 +11:00
|
|
|
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;
|
|
|
|
}
|
2022-03-20 03:47:50 +11:00
|
|
|
|
|
|
|
/* This is a textbox, but we want it to appear just like the label */
|
|
|
|
param-slider .value-entry {
|
|
|
|
/* Vizia doesn't support the unset value */
|
|
|
|
background-color: transparent;
|
|
|
|
border-width: 0px;
|
|
|
|
}
|