Hi, does anybody know how it's possible to change a ui-button group border color?
As you can see that in the picture the border color is from the theme but i need the rounded borders for these buttons in white?
Thanks in advance for your support,
BR
jbudd
2
Using the browser developer tools, one can see that the button group has class v-btn-grp
In this example, since my theme is already light, I applied a red border.
Specify a class rededge
in the button group config.
Use a template on the same page, type CSS, Single Page
to style the button group:
.rededge .v-btn-group{
border: 2px solid red;
}
You don't have to connect any wires to the template node with the CSS.
1 Like