-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract component styles to core #5282
base: develop
Are you sure you want to change the base?
Conversation
d7dba3d
to
6265b23
Compare
ce716a6
to
b13c1d1
Compare
b13c1d1
to
f33b7b6
Compare
f33b7b6
to
bef60c4
Compare
3274f76
to
3652014
Compare
} | ||
|
||
// RTL | ||
.k-rtl, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be scoped to k-tabstrip
.
This is fixed in develop
, it seems like some of the theme and layout files of the components in this core modules are applied from a stale develop branch, and some recent changes are missing.
We should carefully look at the differences between develop and this branch output styles and update the core module component files accordingly.
ab83343 |
@@ -46,6 +46,8 @@ | |||
// Spacing | |||
$_default-spacing: $kendo-spacing, | |||
$kendo-spacing: $kendo-spacing !default, | |||
$kendo-use-input-button-width: false !default, | |||
$kendo-use-input-spinner-width: false !default, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These input variables seem too out of place to me.
I would suggest moving them to the component variables.
Or define them globally per-theme.
@@ -88,6 +88,42 @@ $kendo-theme-colors: ( | |||
), | |||
) !default; | |||
|
|||
@forward "@progress/kendo-theme-core/scss/color-system/_swatch-legacy.scss" with ( | |||
$kendo-body-bg: $kendo-body-bg, | |||
$kendo-body-text: $kendo-body-text, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this @forward
necessary in Fluent?
And the other themes?
closes: #305