You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to Kendo UI customization - I'm not sure if this is a Kendo UI related question, or SCSS specific. I'd like to customize different sets of components with different variables. A simple example,
a multiselect sit on a white bg,
the other sits on gray, so the hovers, background, etc are swapped.
// overrides.scss
#multi-one .k-multiselect-wrap {
/*
Not setting anything, my custom variables
set in variables--kendo.scss are used
*/
}
#multi-two .k-multiselect-wrap {
background: white !important;
// etc..
}
Is there a way to do this without having overrides.scss? Something like
I am afraid that at this time, having multiple versions of the component themes in a single file is not possible, as theme colors are global variables and can have only one value. A workaround is to create two CSS files with the different themes and merge them through post-processing.
A way to resolve this problem has been logged in #450
Latest Kendo UI Jquery, 2018 R2.
I'm new to Kendo UI customization - I'm not sure if this is a Kendo UI related question, or SCSS specific. I'd like to customize different sets of components with different variables. A simple example,
#multi-one:

#multi-two:

Right now I have this:
Is there a way to do this without having
overrides.scss
? Something likeThis wouldn't work because whatever is declared last would take precedence, but is there another strategy for doing this?
I can't see if I'm just missing something simple, or if this is complex/not possible.
The text was updated successfully, but these errors were encountered: