Hello,
i need some help regarding css
- Extended Theme
I have applied css to a label in xml and label is rendering properly. The XML portion is as below;
<label width="100%" value="Bill of Quantities" stylename="colored h3 bold"
css="background: #8E2DE2;background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2); background: linear-gradient(to right, #4A00E0, #8E2DE2); border-radius: 10px; padding:10px; color:#FEFEFE;"/>
But when i provide this css in styles.scss file of extended theme, it renders partially and linear gradient do not apply. The CSS in styles.scss file is as follows;
.labelGradient
{
background: #8E2DE2;
background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
background: linear-gradient(to right, #4A00E0, #8E2DE2);
border-radius: 10px;
padding:10px;
color:#FEFEFE;
}
- I want to hide the vertical scroll bar in side menu.
Thanks