Please help!
Modern CSS supports nesting. This would seem to be a good way to cut down on the overall size of the export file.
Are there any plans to update ThemeBuilder to support CSS nesting?
Ex.
Instead of this...
.fk-daterangepicker .k-input-suffix,
.fk-daterangepicker .k-input-prefix {
cursor: pointer;
&:hover {
background-color: var(--kendo-color-primary-subtle-hover);
}
}
I have to define this set of styles like this...
.fk-daterangepicker .k-input-suffix,
.fk-daterangepicker .k-input-prefix {
cursor: pointer;
}
.fk-daterangepicker .k-input-suffix:hover,
.fk-daterangepicker .k-input-prefix:hover {
background-color: var(--kendo-color-primary-subtle-hover);
}Repeating this pattern over an entire design system adds a lot of extra text...
Hey,
I am working with selfmade tokens imported from Figma to Themebuilder. I would like to edit multiple tokens in Themebuilder. E.g. batch edit all token names at once. Is there a way to do that currently? Or something planed like a multiselect in the settings window for tokens?
Thanks
Alex
Hey,
I want to add an Opacity Token but am only left with the option to write a % value manually.
Can you please add the option to select a token inside of a components Opacity Selection?
Greetings
Alex
Hi there
I noticed that the timeline component isn't available in ThemeBuilder, and I wanted to share that we'd really love to be able to style it through the tool if possible.
Thanks so much for considering this!