@progress/kendo-theme-classic 8.0.0-dev.8 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +81 -83
- package/dist/all.scss +259 -59
- package/dist/meta/sassdoc-data.json +37306 -29134
- package/dist/meta/sassdoc-raw-data.json +5487 -1265
- package/dist/meta/variables.json +16 -16
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +6 -6
- package/scss/calendar/_variables.scss +11 -0
- package/scss/chip/_variables.scss +1 -1
- package/scss/drawer/_variables.scss +12 -2
- package/scss/scheduler/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/toolbar/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/typography/_variables.scss +157 -3
package/dist/all.scss
CHANGED
|
@@ -2615,6 +2615,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
|
2615
2615
|
/// @group typography
|
|
2616
2616
|
$kendo-line-height-xs: 1 !default;
|
|
2617
2617
|
/// The small line height across all components.
|
|
2618
|
+
/// @group typography
|
|
2618
2619
|
$kendo-line-height-sm: 1.25 !default;
|
|
2619
2620
|
/// The medium line height across all components.
|
|
2620
2621
|
/// @group typography
|
|
@@ -5949,14 +5950,32 @@ $kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
|
|
|
5949
5950
|
// File already imported_once. Skipping output.
|
|
5950
5951
|
// #endregion
|
|
5951
5952
|
// #region @import "./border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
|
|
5953
|
+
/// The none border radius used across the Components.
|
|
5954
|
+
/// @group radii
|
|
5952
5955
|
$kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
|
|
5956
|
+
/// The extra small border radius used across the Components.
|
|
5957
|
+
/// @group radii
|
|
5953
5958
|
$kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
|
|
5959
|
+
/// The small border radius used across the Components.
|
|
5960
|
+
/// @group radii
|
|
5954
5961
|
$kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
|
|
5962
|
+
/// The medium border radius used across the Components.
|
|
5963
|
+
/// @group radii
|
|
5955
5964
|
$kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
|
|
5965
|
+
/// The large border radius used across the Components.
|
|
5966
|
+
/// @group radii
|
|
5956
5967
|
$kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
|
|
5968
|
+
/// The extra large border radius used across the Components.
|
|
5969
|
+
/// @group radii
|
|
5957
5970
|
$kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
|
|
5971
|
+
/// The third largest border radius used across the Components.
|
|
5972
|
+
/// @group radii
|
|
5958
5973
|
$kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
|
|
5974
|
+
/// The second largest border radius used across the Components.
|
|
5975
|
+
/// @group radii
|
|
5959
5976
|
$kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
|
|
5977
|
+
/// The largest border radius used across the Components.
|
|
5978
|
+
/// @group radii
|
|
5960
5979
|
$kendo-border-radius-full: 9999px !default;
|
|
5961
5980
|
|
|
5962
5981
|
|
|
@@ -5975,6 +5994,8 @@ $_default-border-radii: (
|
|
|
5975
5994
|
|
|
5976
5995
|
$kendo-border-radii: $_default-border-radii !default;
|
|
5977
5996
|
|
|
5997
|
+
/// The global radii Map.
|
|
5998
|
+
/// @group radii
|
|
5978
5999
|
$kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
|
|
5979
6000
|
|
|
5980
6001
|
|
|
@@ -15120,48 +15141,123 @@ $_kendo-module-meta: (
|
|
|
15120
15141
|
|
|
15121
15142
|
|
|
15122
15143
|
// Headings
|
|
15144
|
+
|
|
15145
|
+
/// The font size of the highest level heading.
|
|
15146
|
+
/// @group typography
|
|
15123
15147
|
$kendo-h1-font-size: calc( var( --kendo-font-size, .875rem ) * 4 ) !default;
|
|
15148
|
+
/// The font size of the second highest level heading.
|
|
15149
|
+
/// @group typography
|
|
15124
15150
|
$kendo-h2-font-size: calc( var( --kendo-font-size, .875rem ) * 3 ) !default;
|
|
15151
|
+
/// The font size of the third highest level heading.
|
|
15152
|
+
/// @group typography
|
|
15125
15153
|
$kendo-h3-font-size: calc( var( --kendo-font-size, .875rem ) * 2.5 ) !default;
|
|
15154
|
+
/// The font size of the fourth highest level heading.
|
|
15155
|
+
/// @group typography
|
|
15126
15156
|
$kendo-h4-font-size: calc( var( --kendo-font-size, .875rem ) * 2 ) !default;
|
|
15157
|
+
/// The font size of the fifth highest level heading.
|
|
15158
|
+
/// @group typography
|
|
15127
15159
|
$kendo-h5-font-size: calc( var( --kendo-font-size, .875rem ) * 1.5 ) !default;
|
|
15160
|
+
/// The font size of the sixth highest level heading.
|
|
15161
|
+
/// @group typography
|
|
15128
15162
|
$kendo-h6-font-size: var( --kendo-font-size, inherit ) !default;
|
|
15129
15163
|
|
|
15164
|
+
/// The font family of the highest level heading.
|
|
15165
|
+
/// @group typography
|
|
15130
15166
|
$kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15167
|
+
/// The font family of the second highest level heading.
|
|
15168
|
+
/// @group typography
|
|
15131
15169
|
$kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15170
|
+
/// The font family of the third highest level heading.
|
|
15171
|
+
/// @group typography
|
|
15132
15172
|
$kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15173
|
+
/// The font family of the fourth highest level heading.
|
|
15174
|
+
/// @group typography
|
|
15133
15175
|
$kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15176
|
+
/// The font family of the fifth highest level heading.
|
|
15177
|
+
/// @group typography
|
|
15134
15178
|
$kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15179
|
+
/// The font family of the sixth highest level heading.
|
|
15180
|
+
/// @group typography
|
|
15135
15181
|
$kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15136
15182
|
|
|
15183
|
+
/// The line height of the highest level heading.
|
|
15184
|
+
/// @group typography
|
|
15137
15185
|
$kendo-h1-line-height: 74px !default;
|
|
15186
|
+
/// The line height of the second highest level heading.
|
|
15187
|
+
/// @group typography
|
|
15138
15188
|
$kendo-h2-line-height: 56px !default;
|
|
15189
|
+
/// The line height of the third highest level heading.
|
|
15190
|
+
/// @group typography
|
|
15139
15191
|
$kendo-h3-line-height: 42px !default;
|
|
15192
|
+
/// The line height of the fourth highest level heading.
|
|
15193
|
+
/// @group typography
|
|
15140
15194
|
$kendo-h4-line-height: 40px !default;
|
|
15195
|
+
/// The line height of the fifth highest level heading.
|
|
15196
|
+
/// @group typography
|
|
15141
15197
|
$kendo-h5-line-height: 28px !default;
|
|
15198
|
+
/// The line height of the sixth highest level heading.
|
|
15199
|
+
/// @group typography
|
|
15142
15200
|
$kendo-h6-line-height: 20px !default;
|
|
15143
15201
|
|
|
15202
|
+
/// The font weight of the highest level heading.
|
|
15203
|
+
/// @group typography
|
|
15144
15204
|
$kendo-h1-font-weight: var( --kendo-font-weight-normal, normal ) !default;
|
|
15205
|
+
/// The font weight of the second highest level heading.
|
|
15206
|
+
/// @group typography
|
|
15145
15207
|
$kendo-h2-font-weight: var( --kendo-font-weight-normal, normal ) !default;
|
|
15208
|
+
/// The font weight of the third highest level heading.
|
|
15209
|
+
/// @group typography
|
|
15146
15210
|
$kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
|
|
15211
|
+
/// The font weight of the fourth highest level heading.
|
|
15212
|
+
/// @group typography
|
|
15147
15213
|
$kendo-h4-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
15214
|
+
/// The font weight of the fifth highest level heading.
|
|
15215
|
+
/// @group typography
|
|
15148
15216
|
$kendo-h5-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
15217
|
+
/// The font weight of the sixth highest level heading.
|
|
15218
|
+
/// @group typography
|
|
15149
15219
|
$kendo-h6-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
15150
15220
|
|
|
15221
|
+
/// The letter spacing of the highest level heading.
|
|
15222
|
+
/// @group typography
|
|
15151
15223
|
$kendo-h1-letter-spacing: null !default;
|
|
15224
|
+
/// The letter spacing of the second highest level heading.
|
|
15225
|
+
/// @group typography
|
|
15152
15226
|
$kendo-h2-letter-spacing: null !default;
|
|
15227
|
+
/// The letter spacing of the third highest level heading.
|
|
15228
|
+
/// @group typography
|
|
15153
15229
|
$kendo-h3-letter-spacing: null !default;
|
|
15230
|
+
/// The letter spacing of the fourth highest level heading.
|
|
15231
|
+
/// @group typography
|
|
15154
15232
|
$kendo-h4-letter-spacing: null !default;
|
|
15233
|
+
/// The letter spacing of the fifth highest level heading.
|
|
15234
|
+
/// @group typography
|
|
15155
15235
|
$kendo-h5-letter-spacing: null !default;
|
|
15236
|
+
/// The letter spacing of the sixth highest level heading.
|
|
15237
|
+
/// @group typography
|
|
15156
15238
|
$kendo-h6-letter-spacing: null !default;
|
|
15157
15239
|
|
|
15240
|
+
/// The margin of the highest level heading.
|
|
15241
|
+
/// @group typography
|
|
15158
15242
|
$kendo-h1-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15243
|
+
/// The margin of the second highest level heading.
|
|
15244
|
+
/// @group typography
|
|
15159
15245
|
$kendo-h2-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15246
|
+
/// The margin of the third highest level heading.
|
|
15247
|
+
/// @group typography
|
|
15160
15248
|
$kendo-h3-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15249
|
+
/// The margin of the fourth highest level heading.
|
|
15250
|
+
/// @group typography
|
|
15161
15251
|
$kendo-h4-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15252
|
+
/// The margin of the fifth highest level heading.
|
|
15253
|
+
/// @group typography
|
|
15162
15254
|
$kendo-h5-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15255
|
+
/// The margin of the sixth highest level heading.
|
|
15256
|
+
/// @group typography
|
|
15163
15257
|
$kendo-h6-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15164
15258
|
|
|
15259
|
+
/// The headings Map
|
|
15260
|
+
/// @group typography
|
|
15165
15261
|
$kendo-headings: (
|
|
15166
15262
|
h1: (
|
|
15167
15263
|
font-size: $kendo-h1-font-size,
|
|
@@ -15214,60 +15310,139 @@ $kendo-headings: (
|
|
|
15214
15310
|
),
|
|
15215
15311
|
) !default;
|
|
15216
15312
|
|
|
15217
|
-
|
|
15218
15313
|
// Paragraph
|
|
15314
|
+
|
|
15315
|
+
/// The margin of the paragraph.
|
|
15316
|
+
/// @group typography
|
|
15219
15317
|
$kendo-paragraph-margin: 0 0 var( --kendo-font-size, inherit ) !default;
|
|
15318
|
+
/// The font size of the paragraph.
|
|
15319
|
+
/// @group typography
|
|
15220
15320
|
$kendo-paragraph-font-size: var( --kendo-font-size, inherit ) !default;
|
|
15321
|
+
/// The font family of the paragraph.
|
|
15322
|
+
/// @group typography
|
|
15221
15323
|
$kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15324
|
+
/// The line height of the paragraph.
|
|
15325
|
+
/// @group typography
|
|
15222
15326
|
$kendo-paragraph-line-height: 20px !default;
|
|
15327
|
+
/// The font weight of the paragraph.
|
|
15328
|
+
/// @group typography
|
|
15223
15329
|
$kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
|
|
15330
|
+
/// The letter spacing of the paragraph.
|
|
15331
|
+
/// @group typography
|
|
15224
15332
|
$kendo-paragraph-letter-spacing: null !default;
|
|
15225
15333
|
|
|
15226
|
-
|
|
15227
15334
|
// Code
|
|
15335
|
+
|
|
15336
|
+
/// The font size of the code tag.
|
|
15337
|
+
/// @group typography
|
|
15228
15338
|
$kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
|
|
15339
|
+
/// The font family of the code tag.
|
|
15340
|
+
/// @group typography
|
|
15229
15341
|
$kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
|
|
15342
|
+
/// The line height of the code tag.
|
|
15343
|
+
/// @group typography
|
|
15230
15344
|
$kendo-code-line-height: 20px !default;
|
|
15345
|
+
/// The font weight of the code tag.
|
|
15346
|
+
/// @group typography
|
|
15231
15347
|
$kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
|
|
15348
|
+
/// The letter spacing of the code tag.
|
|
15349
|
+
/// @group typography
|
|
15232
15350
|
$kendo-code-letter-spacing: null !default;
|
|
15233
15351
|
|
|
15352
|
+
/// The horizontal padding of the code tag.
|
|
15353
|
+
/// @group typography
|
|
15234
15354
|
$kendo-code-padding-x: k-spacing(1) !default;
|
|
15355
|
+
/// The vertical padding of the code tag.
|
|
15356
|
+
/// @group typography
|
|
15235
15357
|
$kendo-code-padding-y: k-spacing(0) !default;
|
|
15358
|
+
/// The horizontal padding of the preformatted text.
|
|
15359
|
+
/// @group typography
|
|
15236
15360
|
$kendo-pre-padding-x: k-spacing(6) !default;
|
|
15361
|
+
/// The vertical padding of the preformatted text.
|
|
15362
|
+
/// @group typography
|
|
15237
15363
|
$kendo-pre-padding-y: k-spacing(4) !default;
|
|
15364
|
+
/// The width of the border of the code tag.
|
|
15365
|
+
/// @group typography
|
|
15238
15366
|
$kendo-code-border-width: 1px !default;
|
|
15239
15367
|
|
|
15368
|
+
/// The background color of the code tag.
|
|
15369
|
+
/// @group typography
|
|
15240
15370
|
$kendo-code-bg: $kendo-base-bg !default;
|
|
15371
|
+
/// The text color of the code tag.
|
|
15372
|
+
/// @group typography
|
|
15241
15373
|
$kendo-code-text: $kendo-component-text !default;
|
|
15374
|
+
/// The border color of the code tag.
|
|
15375
|
+
/// @group typography
|
|
15242
15376
|
$kendo-code-border: $kendo-component-border !default;
|
|
15243
15377
|
|
|
15244
|
-
|
|
15245
15378
|
// Display
|
|
15379
|
+
/// The font size of the largest display text.
|
|
15380
|
+
/// @group typography
|
|
15246
15381
|
$kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 8 ) !default;
|
|
15382
|
+
/// The font size of the second largest display text.
|
|
15383
|
+
/// @group typography
|
|
15247
15384
|
$kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 7 ) !default;
|
|
15385
|
+
/// The font size of the third largest display text.
|
|
15386
|
+
/// @group typography
|
|
15248
15387
|
$kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 6 ) !default;
|
|
15388
|
+
/// The font size of the fourth largest display text.
|
|
15389
|
+
/// @group typography
|
|
15249
15390
|
$kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 5 ) !default;
|
|
15250
15391
|
|
|
15392
|
+
/// The font family of the largest display text.
|
|
15393
|
+
/// @group typography
|
|
15251
15394
|
$kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15395
|
+
/// The font family of the second largest display text.
|
|
15396
|
+
/// @group typography
|
|
15252
15397
|
$kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15398
|
+
/// The font family of the third largest display text.
|
|
15399
|
+
/// @group typography
|
|
15253
15400
|
$kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15401
|
+
/// The font family of the fourth largest display text.
|
|
15402
|
+
/// @group typography
|
|
15254
15403
|
$kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15255
15404
|
|
|
15405
|
+
/// The line height of the largest display text.
|
|
15406
|
+
/// @group typography
|
|
15256
15407
|
$kendo-display1-line-height: 1.2 !default;
|
|
15408
|
+
/// The line height of the second largest display text.
|
|
15409
|
+
/// @group typography
|
|
15257
15410
|
$kendo-display2-line-height: 1.2 !default;
|
|
15411
|
+
/// The line height of the third largest display text.
|
|
15412
|
+
/// @group typography
|
|
15258
15413
|
$kendo-display3-line-height: 1.2 !default;
|
|
15414
|
+
/// The line height of the fourth largest display text.
|
|
15415
|
+
/// @group typography
|
|
15259
15416
|
$kendo-display4-line-height: 1.2 !default;
|
|
15260
15417
|
|
|
15418
|
+
/// The font weight of the largest display text.
|
|
15419
|
+
/// @group typography
|
|
15261
15420
|
$kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
|
|
15421
|
+
/// The font weight of the second largest display text.
|
|
15422
|
+
/// @group typography
|
|
15262
15423
|
$kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
|
|
15424
|
+
/// The font weight of the third largest display text.
|
|
15425
|
+
/// @group typography
|
|
15263
15426
|
$kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
|
|
15427
|
+
/// The font weight of the fourth largest display text.
|
|
15428
|
+
/// @group typography
|
|
15264
15429
|
$kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
|
|
15265
15430
|
|
|
15431
|
+
/// The letter spacing of the largest display text.
|
|
15432
|
+
/// @group typography
|
|
15266
15433
|
$kendo-display1-letter-spacing: null !default;
|
|
15434
|
+
/// The letter spacing of the second largest display text.
|
|
15435
|
+
/// @group typography
|
|
15267
15436
|
$kendo-display2-letter-spacing: null !default;
|
|
15437
|
+
/// The letter spacing of the third largest display text.
|
|
15438
|
+
/// @group typography
|
|
15268
15439
|
$kendo-display3-letter-spacing: null !default;
|
|
15440
|
+
/// The letter spacing of the fourth largest display text.
|
|
15441
|
+
/// @group typography
|
|
15269
15442
|
$kendo-display4-letter-spacing: null !default;
|
|
15270
15443
|
|
|
15444
|
+
/// The displays Map
|
|
15445
|
+
/// @group typography
|
|
15271
15446
|
$kendo-display: (
|
|
15272
15447
|
1: (
|
|
15273
15448
|
font-size: $kendo-display1-font-size,
|
|
@@ -19421,7 +19596,7 @@ $kendo-badge-sizes: (
|
|
|
19421
19596
|
// Outline badges
|
|
19422
19597
|
.k-badge-outline {
|
|
19423
19598
|
border-color: currentColor;
|
|
19424
|
-
background-color:
|
|
19599
|
+
background-color: transparent;
|
|
19425
19600
|
}
|
|
19426
19601
|
|
|
19427
19602
|
@each $name, $color in $kendo-theme-colors {
|
|
@@ -19901,7 +20076,7 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
19901
20076
|
$kendo-chip-outline-bg: $kendo-component-bg !default;
|
|
19902
20077
|
/// The base text color of the outline Chip.
|
|
19903
20078
|
/// @group chip
|
|
19904
|
-
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
20079
|
+
$kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
|
|
19905
20080
|
/// The base border color of the outline Chip.
|
|
19906
20081
|
/// @group chip
|
|
19907
20082
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
@@ -20173,7 +20348,7 @@ $kendo-chip-list-sizes: (
|
|
|
20173
20348
|
@if ($name == "base") {
|
|
20174
20349
|
@include fill(
|
|
20175
20350
|
$kendo-chip-outline-text,
|
|
20176
|
-
|
|
20351
|
+
transparent,
|
|
20177
20352
|
$kendo-chip-outline-border
|
|
20178
20353
|
);
|
|
20179
20354
|
|
|
@@ -20198,8 +20373,8 @@ $kendo-chip-list-sizes: (
|
|
|
20198
20373
|
}
|
|
20199
20374
|
} @else if ($name == "warning") {
|
|
20200
20375
|
@include fill(
|
|
20201
|
-
if($kendo-enable-color-system,
|
|
20202
|
-
if($kendo-enable-color-system,
|
|
20376
|
+
if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
|
|
20377
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20203
20378
|
if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
20204
20379
|
);
|
|
20205
20380
|
|
|
@@ -20225,7 +20400,7 @@ $kendo-chip-list-sizes: (
|
|
|
20225
20400
|
} @else {
|
|
20226
20401
|
@include fill(
|
|
20227
20402
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
|
|
20228
|
-
if($kendo-enable-color-system,
|
|
20403
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
20229
20404
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
|
|
20230
20405
|
);
|
|
20231
20406
|
|
|
@@ -22029,9 +22204,9 @@ $_kendo-module-meta: (
|
|
|
22029
22204
|
&.k-hover {
|
|
22030
22205
|
@if $name == "base" {
|
|
22031
22206
|
@include fill(
|
|
22032
|
-
if($kendo-enable-color-system,
|
|
22033
|
-
$color,
|
|
22034
|
-
$color
|
|
22207
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22208
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22209
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22035
22210
|
);
|
|
22036
22211
|
} @else {
|
|
22037
22212
|
@include fill(
|
|
@@ -22059,9 +22234,9 @@ $_kendo-module-meta: (
|
|
|
22059
22234
|
&.k-active {
|
|
22060
22235
|
@if $name == "base" {
|
|
22061
22236
|
@include fill(
|
|
22062
|
-
if($kendo-enable-color-system,
|
|
22063
|
-
$color,
|
|
22064
|
-
$color
|
|
22237
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22238
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22239
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22065
22240
|
);
|
|
22066
22241
|
} @else {
|
|
22067
22242
|
@include fill(
|
|
@@ -22076,9 +22251,9 @@ $_kendo-module-meta: (
|
|
|
22076
22251
|
&.k-selected {
|
|
22077
22252
|
@if $name == "base" {
|
|
22078
22253
|
@include fill(
|
|
22079
|
-
if($kendo-enable-color-system,
|
|
22080
|
-
$color,
|
|
22081
|
-
$color
|
|
22254
|
+
if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
|
|
22255
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
|
|
22256
|
+
if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
|
|
22082
22257
|
);
|
|
22083
22258
|
} @else {
|
|
22084
22259
|
@include fill(
|
|
@@ -22101,7 +22276,11 @@ $_kendo-module-meta: (
|
|
|
22101
22276
|
// Flat button
|
|
22102
22277
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
|
|
22103
22278
|
.k-button-flat-#{$name} {
|
|
22104
|
-
|
|
22279
|
+
@if $name == "base" {
|
|
22280
|
+
color: inherit;
|
|
22281
|
+
} @else {
|
|
22282
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
22283
|
+
}
|
|
22105
22284
|
|
|
22106
22285
|
// Disabled state
|
|
22107
22286
|
&:disabled,
|
|
@@ -22170,7 +22349,7 @@ $_kendo-module-meta: (
|
|
|
22170
22349
|
// Clear button
|
|
22171
22350
|
@each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
|
|
22172
22351
|
.k-button-clear-#{$name} {
|
|
22173
|
-
color: $color;
|
|
22352
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
22174
22353
|
|
|
22175
22354
|
&:focus,
|
|
22176
22355
|
&.k-focus,
|
|
@@ -23025,7 +23204,7 @@ $kendo-toolbar-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
23025
23204
|
|
|
23026
23205
|
/// The background color of the Toolbar.
|
|
23027
23206
|
/// @group toolbar
|
|
23028
|
-
$kendo-toolbar-bg: $kendo-button-bg !default;
|
|
23207
|
+
$kendo-toolbar-bg: if($kendo-enable-color-system, k-color( surface ), $kendo-button-bg) !default;
|
|
23029
23208
|
/// The text color of the Toolbar.
|
|
23030
23209
|
/// @group toolbar
|
|
23031
23210
|
$kendo-toolbar-text: $kendo-button-text !default;
|
|
@@ -24124,7 +24303,7 @@ $kendo-tooltip-line-height: 1.25 !default;
|
|
|
24124
24303
|
|
|
24125
24304
|
/// The font size of the Tooltip title.
|
|
24126
24305
|
/// @group tooltip
|
|
24127
|
-
$kendo-tooltip-title-font-size: calc(
|
|
24306
|
+
$kendo-tooltip-title-font-size: calc( var( --kendo-font-size, .875rem ) * 1.25 ) !default;
|
|
24128
24307
|
/// The line height of the Tooltip title.
|
|
24129
24308
|
/// @group tooltip
|
|
24130
24309
|
$kendo-tooltip-title-line-height: 1 !default;
|
|
@@ -28568,7 +28747,7 @@ $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !def
|
|
|
28568
28747
|
|
|
28569
28748
|
/// The background color of the Slider track.
|
|
28570
28749
|
/// @group slider
|
|
28571
|
-
$kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
28750
|
+
$kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
28572
28751
|
/// The background color of the Slider's track selection.
|
|
28573
28752
|
/// @group slider
|
|
28574
28753
|
$kendo-slider-selection-bg: $kendo-color-primary !default;
|
|
@@ -29147,8 +29326,15 @@ $_kendo-module-meta: (
|
|
|
29147
29326
|
/// The width of the border around the Calendar.
|
|
29148
29327
|
/// @group calendar
|
|
29149
29328
|
$kendo-calendar-border-width: 1px !default;
|
|
29329
|
+
|
|
29330
|
+
/// The font family of the Calendar.
|
|
29331
|
+
/// @group calendar
|
|
29150
29332
|
$kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
|
|
29333
|
+
/// The font size of the Calendar.
|
|
29334
|
+
/// @group calendar
|
|
29151
29335
|
$kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
|
|
29336
|
+
/// The line height of the Calendar.
|
|
29337
|
+
/// @group calendar
|
|
29152
29338
|
$kendo-calendar-line-height: var( --kendo-line-height, normal ) !default;
|
|
29153
29339
|
|
|
29154
29340
|
/// The size of the cells in the Calendar.
|
|
@@ -29230,7 +29416,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
|
29230
29416
|
/// The height of the header cells in the Calendar.
|
|
29231
29417
|
/// @group calendar
|
|
29232
29418
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
29419
|
+
/// The font size of the header cells in the Calendar.
|
|
29420
|
+
/// @group calendar
|
|
29233
29421
|
$kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
29422
|
+
/// The line height of the header cells in the Calendar.
|
|
29423
|
+
/// @group calendar
|
|
29234
29424
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
29235
29425
|
|
|
29236
29426
|
/// The background color of the header cells in the Calendar.
|
|
@@ -29942,9 +30132,6 @@ $kendo-calendar-sizes: (
|
|
|
29942
30132
|
// }
|
|
29943
30133
|
}
|
|
29944
30134
|
|
|
29945
|
-
|
|
29946
|
-
|
|
29947
|
-
|
|
29948
30135
|
// Multiview calendar
|
|
29949
30136
|
.k-calendar-range {
|
|
29950
30137
|
width: auto;
|
|
@@ -29961,25 +30148,34 @@ $kendo-calendar-sizes: (
|
|
|
29961
30148
|
outline: 0;
|
|
29962
30149
|
}
|
|
29963
30150
|
}
|
|
30151
|
+
}
|
|
29964
30152
|
|
|
29965
|
-
|
|
29966
|
-
|
|
29967
|
-
|
|
29968
|
-
|
|
29969
|
-
|
|
29970
|
-
.k-
|
|
29971
|
-
.k-range-end .k-link {
|
|
30153
|
+
// Range Selection
|
|
30154
|
+
.k-range-start {
|
|
30155
|
+
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
30156
|
+
|
|
30157
|
+
.k-calendar-cell-inner,
|
|
30158
|
+
.k-link {
|
|
29972
30159
|
border-color: inherit;
|
|
29973
|
-
border-radius:
|
|
30160
|
+
border-radius: inherit;
|
|
29974
30161
|
}
|
|
29975
|
-
|
|
30162
|
+
}
|
|
30163
|
+
.k-range-end {
|
|
30164
|
+
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
30165
|
+
|
|
30166
|
+
.k-calendar-cell-inner,
|
|
30167
|
+
.k-link {
|
|
29976
30168
|
border-color: inherit;
|
|
29977
|
-
border-radius:
|
|
30169
|
+
border-radius: inherit;
|
|
29978
30170
|
}
|
|
29979
30171
|
}
|
|
29980
|
-
|
|
29981
|
-
|
|
29982
|
-
|
|
30172
|
+
.k-range-mid {
|
|
30173
|
+
border-color: inherit;
|
|
30174
|
+
border-radius: 0;
|
|
30175
|
+
}
|
|
30176
|
+
.k-range-start.k-range-end {
|
|
30177
|
+
border-radius: $kendo-calendar-range-cell-border-radius;
|
|
30178
|
+
}
|
|
29983
30179
|
|
|
29984
30180
|
// RTL
|
|
29985
30181
|
.k-rtl .k-calendar,
|
|
@@ -29992,21 +30188,14 @@ $kendo-calendar-sizes: (
|
|
|
29992
30188
|
@include hide-scrollbar("left");
|
|
29993
30189
|
}
|
|
29994
30190
|
|
|
29995
|
-
|
|
29996
|
-
|
|
29997
|
-
.k-rtl .k-calendar-range,
|
|
29998
|
-
[dir="rtl"] .k-calendar-range,
|
|
29999
|
-
.k-calendar-range.k-rtl,
|
|
30000
|
-
.k-calendar-range[dir="rtl"] {
|
|
30001
|
-
|
|
30002
|
-
.k-range-start .k-calendar-cell-inner,
|
|
30003
|
-
.k-range-start .k-link {
|
|
30191
|
+
// Range Selection RTL
|
|
30192
|
+
.k-range-start {
|
|
30004
30193
|
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
30005
30194
|
}
|
|
30006
|
-
.k-range-end
|
|
30007
|
-
.k-range-end .k-link {
|
|
30195
|
+
.k-range-end {
|
|
30008
30196
|
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
30009
30197
|
}
|
|
30198
|
+
|
|
30010
30199
|
}
|
|
30011
30200
|
|
|
30012
30201
|
}
|
|
@@ -30193,11 +30382,6 @@ $kendo-calendar-sizes: (
|
|
|
30193
30382
|
background-color: $kendo-calendar-range-bg;
|
|
30194
30383
|
}
|
|
30195
30384
|
|
|
30196
|
-
.k-range-start.k-range-end {
|
|
30197
|
-
background-image: none;
|
|
30198
|
-
background-color: transparent;
|
|
30199
|
-
}
|
|
30200
|
-
|
|
30201
30385
|
.k-range-start,
|
|
30202
30386
|
.k-range-end {
|
|
30203
30387
|
.k-calendar-cell-inner {
|
|
@@ -38124,13 +38308,23 @@ $kendo-drawer-border: $kendo-component-border !default;
|
|
|
38124
38308
|
/// The border width of the Drawer.
|
|
38125
38309
|
/// @group drawer
|
|
38126
38310
|
$kendo-drawer-border-width: 1px !default;
|
|
38311
|
+
|
|
38312
|
+
/// The font family of the Drawer.
|
|
38313
|
+
/// @group drawer
|
|
38127
38314
|
$kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
|
|
38315
|
+
/// The font size of the Drawer.
|
|
38316
|
+
/// @group drawer
|
|
38128
38317
|
$kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
|
|
38318
|
+
/// The line height of the Drawer.
|
|
38319
|
+
/// @group drawer
|
|
38129
38320
|
$kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
|
|
38130
|
-
|
|
38321
|
+
|
|
38322
|
+
/// The horizontal padding of the Drawer content.
|
|
38323
|
+
/// @group drawer
|
|
38324
|
+
$kendo-drawer-content-padding-x: null !default;
|
|
38131
38325
|
/// The vertical padding of the Drawer content.
|
|
38132
38326
|
/// @group drawer
|
|
38133
|
-
$kendo-drawer-content-padding-y:
|
|
38327
|
+
$kendo-drawer-content-padding-y: null !default;
|
|
38134
38328
|
|
|
38135
38329
|
/// The width of the Drawer scrollbar.
|
|
38136
38330
|
/// @group drawer
|
|
@@ -38278,6 +38472,8 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
|
|
|
38278
38472
|
.k-drawer-content {
|
|
38279
38473
|
flex: 1 1 auto;
|
|
38280
38474
|
overflow: auto;
|
|
38475
|
+
padding-block: $kendo-drawer-content-padding-y;
|
|
38476
|
+
padding-inline: $kendo-drawer-content-padding-x;
|
|
38281
38477
|
}
|
|
38282
38478
|
|
|
38283
38479
|
|
|
@@ -48320,6 +48516,7 @@ $kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
|
48320
48516
|
font-family: $kendo-listview-font-family;
|
|
48321
48517
|
font-size: $kendo-listview-font-size;
|
|
48322
48518
|
line-height: $kendo-listview-line-height;
|
|
48519
|
+
display: flex;
|
|
48323
48520
|
flex-flow: column nowrap;
|
|
48324
48521
|
position: relative;
|
|
48325
48522
|
-webkit-touch-callout: none;
|
|
@@ -56026,7 +56223,7 @@ $kendo-scheduler-tooltip-title-margin-y: k-spacing(1) !default;
|
|
|
56026
56223
|
$kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
56027
56224
|
/// The font size of the day inside the Scheduler Tooltip.
|
|
56028
56225
|
/// @group scheduler
|
|
56029
|
-
$kendo-scheduler-tooltip-day-font-size: calc(
|
|
56226
|
+
$kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
|
|
56030
56227
|
|
|
56031
56228
|
/// The max height of the events inside the Scheduler Tooltip.
|
|
56032
56229
|
/// @group scheduler
|
|
@@ -60961,7 +61158,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
60961
61158
|
}
|
|
60962
61159
|
|
|
60963
61160
|
|
|
60964
|
-
|
|
61161
|
+
// Sankey labels
|
|
61162
|
+
.k-sankey text {
|
|
61163
|
+
pointer-events: none;
|
|
61164
|
+
}
|
|
60965
61165
|
|
|
60966
61166
|
// Treemap
|
|
60967
61167
|
.k-treemap {
|