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
Using the Grid Checkbox Selection column i found the following bug. The SVG check icon uses always the fallback color. Therfore it is not possible to set the color of this icon.
Observe the color of the checkmark icon in the checkbox
I manually overwrite the --kendo-color-primary and --kendo-color-on-primary variables and expect, that the SVG icon uses the --kendo-color-on-primary color (green <-> #00ff00) as its stroke color, but it is white.
Current behavior
The SVG is set with the css url() function. This function sanitizes the input therfore the expression var(--kendo-color-on-primary, #ffffff) can not be evaluated. The icon uses always the fallback color as stroke color.
Expected/desired behavior
The SVG icon has the same color as set via --kendo-color-on-primary
Environment
Kendo UI version: 2024.2.514
jQuery version: 3.4.1
Browser: all
The text was updated successfully, but these errors were encountered:
Bug report
Dear Kendo Team,
Using the Grid Checkbox Selection column i found the following bug. The SVG check icon uses always the fallback color. Therfore it is not possible to set the color of this icon.
Reproduction of the problem
I created this snippet for reproduction. https://dojo.telerik.com/ufUdUnUH
I manually overwrite the --kendo-color-primary and --kendo-color-on-primary variables and expect, that the SVG icon uses the --kendo-color-on-primary color (green <-> #00ff00) as its stroke color, but it is white.
Current behavior
The SVG is set with the css url() function. This function sanitizes the input therfore the expression var(--kendo-color-on-primary, #ffffff) can not be evaluated. The icon uses always the fallback color as stroke color.
Expected/desired behavior
The SVG icon has the same color as set via --kendo-color-on-primary
Environment
The text was updated successfully, but these errors were encountered: