Hello,
I'm building my first .net9+ Blazor Hybrid + Web app. I can see that theming is going to be a problem between the Blazor Web UI theme and the native app areas that use App.xaml resources. I'd like to request/suggest that theme builder can take a theme which is typically exported in CSS and also have the option to generate the App.xaml resources so my app native or using Web UI share a common theme.
Thank you.
Expose additional styling templates for a Grid component that uses stacked columns (a.k.a. as stacked display mode):
https://www.telerik.com/blazor-ui/documentation/components/grid/columns/stacked
https://demos.telerik.com/kendo-ui/grid/stacked-display-mode
https://www.telerik.com/kendo-angular-ui/components/grid/styling-and-appearance/stacked-layout-mode
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
I am having difficulty to theme the NumericTextBox in outline mode. Theme builder shows correctly the themed component, with some difficulties... it seems that I need to set everything up multiple time in order for the tool to store the new values.
When I use the exported theme in a Blazor application, the outline numeric textbox is not able to theme the spinner buttons (up and down) and they default to base color, whitish in light themes, and loose borders when hovering over it. I am attaching the output css from theme builder.
In theme builder I see the following
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!