30.12.2016, 21:44
(This post was last modified: 30.12.2016, 23:22 by Erwin van der Zwart.)
Hi Habib,
A KNX object in your visu / on your plan and set if to read only to prevent user input by clicking on the rgb colored item.
Normaly you have a small rounded bar as feedback value and by using a custom class you can tweak the size and other properties of this bar with custom css.
Try with custom classes rgb_vertical and rgb_horizontal and add this to custom css:
BR,
Erwin
A KNX object in your visu / on your plan and set if to read only to prevent user input by clicking on the rgb colored item.
Normaly you have a small rounded bar as feedback value and by using a custom class you can tweak the size and other properties of this bar with custom css.
Try with custom classes rgb_vertical and rgb_horizontal and add this to custom css:
Code:
.rgb_vertical {
border-radius: 0px;
height: 250px;
min-width: 10px;
max-width: 10px;
margin: 0px auto 0;
opacity: 1; /* optional set to 0.8 to make partial transparent*/
}
.rgb_horizontal {
border-radius: 0px;
height: 10px;
min-width: 150px;
max-width: 150px;
margin: 0px auto 0;
opacity: 1; /* optional set to 0.8 to make partial transparent*/
}
BR,
Erwin