@progress/kendo-theme-classic 8.0.2-dev.4 → 8.1.0-dev.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.scss +417 -142
- package/dist/meta/sassdoc-data.json +8999 -4111
- package/dist/meta/sassdoc-raw-data.json +2349 -1030
- package/dist/meta/variables.json +3748 -64
- 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 +5 -5
- package/scss/coloreditor/_variables.scss +24 -24
- package/scss/colorgradient/_variables.scss +43 -43
- package/scss/colorpalette/_variables.scss +8 -8
- package/scss/core/color-system/_palettes.scss +27 -1
- package/scss/core/color-system/_swatch.scss +248 -0
- package/scss/filemanager/_variables.scss +57 -57
- package/scss/tilelayout/_variables.scss +10 -10
package/dist/all.scss
CHANGED
|
@@ -2158,45 +2158,72 @@ $_default-palette-orchid-purple: (
|
|
|
2158
2158
|
|
|
2159
2159
|
|
|
2160
2160
|
// stylelint-disable scss/no-global-function-names
|
|
2161
|
+
/// The Ash Gray Palette provides colors to the Base, Secondary, Light, Dark, and Inverse variable groups.
|
|
2162
|
+
/// @group palette
|
|
2161
2163
|
$kendo-palette-ash-gray: $_default-palette-ash-gray !default;
|
|
2162
2164
|
$kendo-palette-ash-gray: map-merge($_default-palette-ash-gray, $kendo-palette-ash-gray);
|
|
2163
2165
|
|
|
2166
|
+
/// The Tangerine Orange Palette provides colors to the Primary variable group.
|
|
2167
|
+
/// @group palette
|
|
2164
2168
|
$kendo-palette-tangerine-orange: $_default-palette-tangerine-orange !default;
|
|
2165
2169
|
$kendo-palette-tangerine-orange: map-merge($_default-palette-tangerine-orange, $kendo-palette-tangerine-orange);
|
|
2166
2170
|
|
|
2171
|
+
/// The Dodger Blue Palette provides colors to the Tertiary variable group.
|
|
2172
|
+
/// @group palette
|
|
2167
2173
|
$kendo-palette-dodger-blue: $_default-palette-dodger-blue !default;
|
|
2168
2174
|
$kendo-palette-dodger-blue: map-merge($_default-palette-dodger-blue, $kendo-palette-dodger-blue);
|
|
2169
2175
|
|
|
2176
|
+
/// The Grass Green Palette provides colors to the Success variable group.
|
|
2177
|
+
/// @group palette
|
|
2170
2178
|
$kendo-palette-grass-green: $_default-palette-grass-green !default;
|
|
2171
2179
|
$kendo-palette-grass-green: map-merge($_default-palette-grass-green, $kendo-palette-grass-green);
|
|
2172
2180
|
|
|
2181
|
+
/// The Lake Blue Palette provides colors to the Info variable group.
|
|
2182
|
+
/// @group palette
|
|
2173
2183
|
$kendo-palette-lake-blue: $_default-palette-lake-blue !default;
|
|
2174
2184
|
$kendo-palette-lake-blue: map-merge($_default-palette-lake-blue, $kendo-palette-lake-blue);
|
|
2175
2185
|
|
|
2186
|
+
/// The Honey Yellow Palette provides colors to the Warning variable group.
|
|
2187
|
+
/// @group palette
|
|
2176
2188
|
$kendo-palette-honey-yellow: $_default-palette-honey-yellow !default;
|
|
2177
2189
|
$kendo-palette-honey-yellow: map-merge($_default-palette-honey-yellow, $kendo-palette-honey-yellow);
|
|
2178
2190
|
|
|
2191
|
+
/// The Brick Red Palette provides colors to the Error variable group.
|
|
2192
|
+
/// @group palette
|
|
2179
2193
|
$kendo-palette-brick-red: $_default-palette-brick-red !default;
|
|
2180
2194
|
$kendo-palette-brick-red: map-merge($_default-palette-brick-red, $kendo-palette-brick-red);
|
|
2181
2195
|
|
|
2196
|
+
/// The Coral Palette provides colors to the Series A variable group.
|
|
2197
|
+
/// @group palette
|
|
2182
2198
|
$kendo-palette-coral: $_default-palette-coral !default;
|
|
2183
2199
|
$kendo-palette-coral: map-merge($_default-palette-coral, $kendo-palette-coral);
|
|
2184
2200
|
|
|
2201
|
+
/// The Pineapple Yellow provides colors to the Series B variable group.
|
|
2202
|
+
/// @group palette
|
|
2185
2203
|
$kendo-palette-pineapple-yellow: $_default-palette-pineapple-yellow !default;
|
|
2186
2204
|
$kendo-palette-pineapple-yellow: map-merge($_default-palette-pineapple-yellow, $kendo-palette-pineapple-yellow);
|
|
2187
2205
|
|
|
2206
|
+
/// The Apple Green provides colors to the Series C variable group.
|
|
2207
|
+
/// @group palette
|
|
2188
2208
|
$kendo-palette-apple-green: $_default-palette-apple-green !default;
|
|
2189
2209
|
$kendo-palette-apple-green: map-merge($_default-palette-apple-green, $kendo-palette-apple-green);
|
|
2190
2210
|
|
|
2211
|
+
/// The Pacific Blue provides colors to the Series D variable group.
|
|
2212
|
+
/// @group palette
|
|
2191
2213
|
$kendo-palette-pacific-blue: $_default-palette-pacific-blue !default;
|
|
2192
2214
|
$kendo-palette-pacific-blue: map-merge($_default-palette-pacific-blue, $kendo-palette-pacific-blue);
|
|
2193
2215
|
|
|
2216
|
+
/// The Bright Blue provides colors to the Series E variable group.
|
|
2217
|
+
/// @group palette
|
|
2194
2218
|
$kendo-palette-bright-blue: $_default-palette-bright-blue !default;
|
|
2195
2219
|
$kendo-palette-bright-blue: map-merge($_default-palette-bright-blue, $kendo-palette-bright-blue);
|
|
2196
2220
|
|
|
2221
|
+
/// The Orchid Purple provides colors to the Series F variable group.
|
|
2222
|
+
/// @group palette
|
|
2197
2223
|
$kendo-palette-orchid-purple: $_default-palette-orchid-purple !default;
|
|
2198
2224
|
$kendo-palette-orchid-purple: map-merge($_default-palette-orchid-purple, $kendo-palette-orchid-purple);
|
|
2199
2225
|
// stylelint-enable scss/no-global-function-names
|
|
2226
|
+
|
|
2200
2227
|
// #endregion
|
|
2201
2228
|
|
|
2202
2229
|
// Config
|
|
@@ -2373,6 +2400,254 @@ $_default-colors: (
|
|
|
2373
2400
|
|
|
2374
2401
|
/// The global default Colors map.
|
|
2375
2402
|
/// @group color-system
|
|
2403
|
+
///
|
|
2404
|
+
/// @subgroup {misc}
|
|
2405
|
+
/// [app-surface, on-app-surface, subtle,
|
|
2406
|
+
/// surface, surface-alt, border, border-alt]
|
|
2407
|
+
/// The Misc variable group.
|
|
2408
|
+
/// @prop {Color} app-surface - The background color of the application.
|
|
2409
|
+
/// @prop {Color} on-app-surface - The text color of the application.
|
|
2410
|
+
/// @prop {Color} subtle - The subtle text color.
|
|
2411
|
+
/// @prop {Color} surface - The background color of the components' chrome area.
|
|
2412
|
+
/// @prop {Color} surface-alt - The alternative background color of the components' chrome area.
|
|
2413
|
+
/// @prop {Color} border - Тhe border color of the application.
|
|
2414
|
+
/// @prop {Color} border-alt - Тhe alternative border color of the application.
|
|
2415
|
+
///
|
|
2416
|
+
/// @subgroup {base}
|
|
2417
|
+
/// [base-subtle, base-subtle-hover, base-subtle-active,
|
|
2418
|
+
/// base, base-hover, base-active, base-emphasis,
|
|
2419
|
+
/// base-on-subtle, on-base, base-on-surface]
|
|
2420
|
+
/// The Base variable group.
|
|
2421
|
+
/// @prop {Color} base-subtle - The base subtle background color variable.
|
|
2422
|
+
/// @prop {Color} base-subtle-hover - The base subtle background color variable for the hover state.
|
|
2423
|
+
/// @prop {Color} base-subtle-active - The base subtle background color variable for the active state.
|
|
2424
|
+
/// @prop {Color} base - The base background color variable.
|
|
2425
|
+
/// @prop {Color} base-hover - The base background color variable for the hover state.
|
|
2426
|
+
/// @prop {Color} base-active - The base background color variable for the active state.
|
|
2427
|
+
/// @prop {Color} base-emphasis - The emphasized base color variable.
|
|
2428
|
+
/// @prop {Color} base-on-subtle - The text color variable for content on base subtle.
|
|
2429
|
+
/// @prop {Color} on-base - The text color variable for content on base.
|
|
2430
|
+
/// @prop {Color} base-on-surface - The text color variable for content on surface.
|
|
2431
|
+
///
|
|
2432
|
+
/// @subgroup {primary}
|
|
2433
|
+
/// [primary-subtle, primary-subtle-hover, primary-subtle-active,
|
|
2434
|
+
/// primary, primary-hover, primary-active, primary-emphasis,
|
|
2435
|
+
/// primary-on-subtle, on-primary, primary-on-surface]
|
|
2436
|
+
/// The Primary variable group.
|
|
2437
|
+
/// @prop {Color} primary-subtle - The primary subtle background color variable.
|
|
2438
|
+
/// @prop {Color} primary-subtle-hover - The primary subtle background color variable for the hover state.
|
|
2439
|
+
/// @prop {Color} primary-subtle-active - The primary subtle background color variable for the active state.
|
|
2440
|
+
/// @prop {Color} primary - The primary background color variable.
|
|
2441
|
+
/// @prop {Color} primary-hover - The primary background color variable for the hover state.
|
|
2442
|
+
/// @prop {Color} primary-active - The primary background color variable for the active state.
|
|
2443
|
+
/// @prop {Color} primary-emphasis - The emphasized primary color variable.
|
|
2444
|
+
/// @prop {Color} primary-on-subtle - The text color variable for content on primary subtle.
|
|
2445
|
+
/// @prop {Color} on-primary - The text color variable for content on primary.
|
|
2446
|
+
/// @prop {Color} primary-on-surface - The text color variable for content on surface.
|
|
2447
|
+
///
|
|
2448
|
+
/// @subgroup {secondary}
|
|
2449
|
+
/// [secondary-subtle, secondary-subtle-hover, secondary-subtle-active,
|
|
2450
|
+
/// secondary, secondary-hover, secondary-active, secondary-emphasis,
|
|
2451
|
+
/// secondary-on-subtle, on-secondary, secondary-on-surface]
|
|
2452
|
+
/// The Secondary variable group.
|
|
2453
|
+
/// @prop {Color} secondary-subtle - The secondary subtle background color variable.
|
|
2454
|
+
/// @prop {Color} secondary-subtle-hover - The secondary subtle background color variable for the hover state.
|
|
2455
|
+
/// @prop {Color} secondary-subtle-active - The secondary subtle background color variable for the active state.
|
|
2456
|
+
/// @prop {Color} secondary - The secondary background color variable.
|
|
2457
|
+
/// @prop {Color} secondary-hover - The secondary background color variable for the hover state.
|
|
2458
|
+
/// @prop {Color} secondary-active - The secondary background color variable for the active state.
|
|
2459
|
+
/// @prop {Color} secondary-emphasis - The emphasized secondary color variable.
|
|
2460
|
+
/// @prop {Color} secondary-on-subtle - The text color variable for content on secondary subtle.
|
|
2461
|
+
/// @prop {Color} on-secondary - The text color variable for content on secondary.
|
|
2462
|
+
/// @prop {Color} secondary-on-surface - The text color variable for content on surface.
|
|
2463
|
+
///
|
|
2464
|
+
/// @subgroup {tertiary}
|
|
2465
|
+
/// [tertiary-subtle, tertiary-subtle-hover, tertiary-subtle-active,
|
|
2466
|
+
/// tertiary, tertiary-hover, tertiary-active, tertiary-emphasis,
|
|
2467
|
+
/// tertiary-on-subtle, on-tertiary, tertiary-on-surface]
|
|
2468
|
+
/// The Tertiary variable group.
|
|
2469
|
+
/// @prop {Color} tertiary-subtle - The tertiary subtle background color variable.
|
|
2470
|
+
/// @prop {Color} tertiary-subtle-hover - The tertiary subtle background color variable for the hover state.
|
|
2471
|
+
/// @prop {Color} tertiary-subtle-active - The tertiary subtle background color variable for the active state.
|
|
2472
|
+
/// @prop {Color} tertiary - The tertiary background color variable.
|
|
2473
|
+
/// @prop {Color} tertiary-hover - The tertiary background color variable for the hover state.
|
|
2474
|
+
/// @prop {Color} tertiary-active - The tertiary background color variable for the active state.
|
|
2475
|
+
/// @prop {Color} tertiary-emphasis - The emphasized tertiary color variable.
|
|
2476
|
+
/// @prop {Color} tertiary-on-subtle - The text color variable for content on tertiary subtle.
|
|
2477
|
+
/// @prop {Color} on-tertiary - The text color variable for content on tertiary.
|
|
2478
|
+
/// @prop {Color} tertiary-on-surface - The text color variable for content on surface.
|
|
2479
|
+
///
|
|
2480
|
+
/// @subgroup {info}
|
|
2481
|
+
/// [info-subtle, info-subtle-hover, info-subtle-active,
|
|
2482
|
+
/// info, info-hover, info-active, info-emphasis,
|
|
2483
|
+
/// info-on-subtle, on-info, info-on-surface]
|
|
2484
|
+
/// The Info variable group.
|
|
2485
|
+
/// @prop {Color} info-subtle - The info subtle background color variable.
|
|
2486
|
+
/// @prop {Color} info-subtle-hover - The info subtle background color variable for the hover state.
|
|
2487
|
+
/// @prop {Color} info-subtle-active - The info subtle background color variable for the active state.
|
|
2488
|
+
/// @prop {Color} info - The info background color variable.
|
|
2489
|
+
/// @prop {Color} info-hover - The info background color variable for the hover state.
|
|
2490
|
+
/// @prop {Color} info-active - The info background color variable for the active state.
|
|
2491
|
+
/// @prop {Color} info-emphasis - The emphasized info color variable.
|
|
2492
|
+
/// @prop {Color} info-on-subtle - The text color variable for content on info subtle.
|
|
2493
|
+
/// @prop {Color} on-info - The text color variable for content on info.
|
|
2494
|
+
/// @prop {Color} info-on-surface - The text color variable for content on surface.
|
|
2495
|
+
///
|
|
2496
|
+
/// @subgroup {success}
|
|
2497
|
+
/// [success-subtle, success-subtle-hover, success-subtle-active,
|
|
2498
|
+
/// success, success-hover, success-active, success-emphasis,
|
|
2499
|
+
/// success-on-subtle, on-success, success-on-surface]
|
|
2500
|
+
/// The Success variable group.
|
|
2501
|
+
/// @prop {Color} success-subtle - The success subtle background color variable.
|
|
2502
|
+
/// @prop {Color} success-subtle-hover - The success subtle background color variable for the hover state.
|
|
2503
|
+
/// @prop {Color} success-subtle-active - The success subtle background color variable for the active state.
|
|
2504
|
+
/// @prop {Color} success - The success background color variable.
|
|
2505
|
+
/// @prop {Color} success-hover - The success background color variable for the hover state.
|
|
2506
|
+
/// @prop {Color} success-active - The success background color variable for the active state.
|
|
2507
|
+
/// @prop {Color} success-emphasis - The emphasized success color variable.
|
|
2508
|
+
/// @prop {Color} success-on-subtle - The text color variable for content on success subtle.
|
|
2509
|
+
/// @prop {Color} on-success - The text color variable for content on success.
|
|
2510
|
+
/// @prop {Color} success-on-surface - The text color variable for content on surface.
|
|
2511
|
+
///
|
|
2512
|
+
/// @subgroup {warning}
|
|
2513
|
+
/// [warning-subtle, warning-subtle-hover, warning-subtle-active,
|
|
2514
|
+
/// warning, warning-hover, warning-active, warning-emphasis,
|
|
2515
|
+
/// warning-on-subtle, on-warning, warning-on-surface]
|
|
2516
|
+
/// The Warning variable group.
|
|
2517
|
+
/// @prop {Color} warning-subtle - The warning subtle background color variable.
|
|
2518
|
+
/// @prop {Color} warning-subtle-hover - The warning subtle background color variable for the hover state.
|
|
2519
|
+
/// @prop {Color} warning-subtle-active - The warning subtle background color variable for the active state.
|
|
2520
|
+
/// @prop {Color} warning - The warning background color variable.
|
|
2521
|
+
/// @prop {Color} warning-hover - The warning background color variable for the hover state.
|
|
2522
|
+
/// @prop {Color} warning-active - The warning background color variable for the active state.
|
|
2523
|
+
/// @prop {Color} warning-emphasis - The emphasized warning color variable.
|
|
2524
|
+
/// @prop {Color} warning-on-subtle - The text color variable for content on warning subtle.
|
|
2525
|
+
/// @prop {Color} on-warning - The text color variable for content on warning.
|
|
2526
|
+
/// @prop {Color} warning-on-surface - The text color variable for content on surface.
|
|
2527
|
+
///
|
|
2528
|
+
/// @subgroup {error}
|
|
2529
|
+
/// [error-subtle, error-subtle-hover, error-subtle-active,
|
|
2530
|
+
/// error, error-hover, error-active, error-emphasis,
|
|
2531
|
+
/// error-on-subtle, on-error, error-on-surface]
|
|
2532
|
+
/// The Error variable group.
|
|
2533
|
+
/// @prop {Color} error-subtle - The error subtle background color variable.
|
|
2534
|
+
/// @prop {Color} error-subtle-hover - The error subtle background color variable for the hover state.
|
|
2535
|
+
/// @prop {Color} error-subtle-active - The error subtle background color variable for the active state.
|
|
2536
|
+
/// @prop {Color} error - The error background color variable.
|
|
2537
|
+
/// @prop {Color} error-hover - The error background color variable for the hover state.
|
|
2538
|
+
/// @prop {Color} error-active - The error background color variable for the active state.
|
|
2539
|
+
/// @prop {Color} error-emphasis - The emphasized error color variable.
|
|
2540
|
+
/// @prop {Color} error-on-subtle - The text color variable for content on error subtle.
|
|
2541
|
+
/// @prop {Color} on-error - The text color variable for content on error.
|
|
2542
|
+
/// @prop {Color} error-on-surface - The text color variable for content on surface.
|
|
2543
|
+
///
|
|
2544
|
+
/// @subgroup {light}
|
|
2545
|
+
/// [light-subtle, light-subtle-hover, light-subtle-active,
|
|
2546
|
+
/// light, light-hover, light-active, light-emphasis,
|
|
2547
|
+
/// light-on-subtle, on-light, light-on-surface]
|
|
2548
|
+
/// The Light variable group.
|
|
2549
|
+
/// @prop {Color} light-subtle - The light subtle background color variable.
|
|
2550
|
+
/// @prop {Color} light-subtle-hover - The light subtle background color variable for the hover state.
|
|
2551
|
+
/// @prop {Color} light-subtle-active - The light subtle background color variable for the active state.
|
|
2552
|
+
/// @prop {Color} light - The light background color variable.
|
|
2553
|
+
/// @prop {Color} light-hover - The light background color variable for the hover state.
|
|
2554
|
+
/// @prop {Color} light-active - The light background color variable for the active state.
|
|
2555
|
+
/// @prop {Color} light-emphasis - The emphasized light color variable.
|
|
2556
|
+
/// @prop {Color} light-on-subtle - The text color variable for content on light subtle.
|
|
2557
|
+
/// @prop {Color} on-light - The text color variable for content on light.
|
|
2558
|
+
/// @prop {Color} light-on-surface - The text color variable for content on surface.
|
|
2559
|
+
///
|
|
2560
|
+
/// @subgroup {dark}
|
|
2561
|
+
/// [dark-subtle, dark-subtle-hover, dark-subtle-active,
|
|
2562
|
+
/// dark, dark-hover, dark-active, dark-emphasis,
|
|
2563
|
+
/// dark-on-subtle, on-dark, dark-on-surface]
|
|
2564
|
+
/// The Dark variable group.
|
|
2565
|
+
/// @prop {Color} dark-subtle - The dark subtle background color variable.
|
|
2566
|
+
/// @prop {Color} dark-subtle-hover - The dark subtle background color variable for the hover state.
|
|
2567
|
+
/// @prop {Color} dark-subtle-active - The dark subtle background color variable for the active state.
|
|
2568
|
+
/// @prop {Color} dark - The dark background color variable.
|
|
2569
|
+
/// @prop {Color} dark-hover - The dark background color variable for the hover state.
|
|
2570
|
+
/// @prop {Color} dark-active - The dark background color variable for the active state.
|
|
2571
|
+
/// @prop {Color} dark-emphasis - The emphasized dark color variable.
|
|
2572
|
+
/// @prop {Color} dark-on-subtle - The text color variable for content on dark subtle.
|
|
2573
|
+
/// @prop {Color} on-dark - The text color variable for content on dark.
|
|
2574
|
+
/// @prop {Color} dark-on-surface - The text color variable for content on surface.
|
|
2575
|
+
///
|
|
2576
|
+
/// @subgroup {inverse}
|
|
2577
|
+
/// [inverse-subtle, inverse-subtle-hover, inverse-subtle-active,
|
|
2578
|
+
/// inverse, inverse-hover, inverse-active, inverse-emphasis,
|
|
2579
|
+
/// inverse-on-subtle, on-inverse, inverse-on-surface]
|
|
2580
|
+
/// The Inverse variable group.
|
|
2581
|
+
/// @prop {Color} inverse-subtle - The inverse subtle background color variable.
|
|
2582
|
+
/// @prop {Color} inverse-subtle-hover - The inverse subtle background color variable for the hover state.
|
|
2583
|
+
/// @prop {Color} inverse-subtle-active - The inverse subtle background color variable for the active state.
|
|
2584
|
+
/// @prop {Color} inverse - The inverse background color variable.
|
|
2585
|
+
/// @prop {Color} inverse-hover - The inverse background color variable for the hover state.
|
|
2586
|
+
/// @prop {Color} inverse-active - The inverse background color variable for the active state.
|
|
2587
|
+
/// @prop {Color} inverse-emphasis - The emphasized inverse color variable.
|
|
2588
|
+
/// @prop {Color} inverse-on-subtle - The text color variable for content on inverse subtle.
|
|
2589
|
+
/// @prop {Color} on-inverse - The text color variable for content on inverse.
|
|
2590
|
+
/// @prop {Color} inverse-on-surface - The text color variable for content on surface.
|
|
2591
|
+
///
|
|
2592
|
+
/// @subgroup {series-a}
|
|
2593
|
+
/// [series-a, series-a-bold, series-a-bolder,
|
|
2594
|
+
/// series-a-subtle, series-a-subtler]
|
|
2595
|
+
/// The Series A variable group.
|
|
2596
|
+
/// @prop {Color} series-a - The series A color variable.
|
|
2597
|
+
/// @prop {Color} series-a-bold - The bold series A color variable.
|
|
2598
|
+
/// @prop {Color} series-a-bolder - The bolder series A color variable.
|
|
2599
|
+
/// @prop {Color} series-a-subtle - The subtle series A color variable.
|
|
2600
|
+
/// @prop {Color} series-a-subtler - The subtler series A color variable.
|
|
2601
|
+
///
|
|
2602
|
+
/// @subgroup {series-b}
|
|
2603
|
+
/// [series-b, series-b-bold, series-b-bolder,
|
|
2604
|
+
/// series-b-subtle, series-b-subtler]
|
|
2605
|
+
/// The Series B variable group.
|
|
2606
|
+
/// @prop {Color} series-b - The series B color variable.
|
|
2607
|
+
/// @prop {Color} series-b-bold - The bold series B color variable.
|
|
2608
|
+
/// @prop {Color} series-b-bolder - The bolder series B color variable.
|
|
2609
|
+
/// @prop {Color} series-b-subtle - The subtle series B color variable.
|
|
2610
|
+
/// @prop {Color} series-b-subtler - The subtler series B color variable.
|
|
2611
|
+
///
|
|
2612
|
+
/// @subgroup {series-c}
|
|
2613
|
+
/// [series-c, series-c-bold, series-c-bolder,
|
|
2614
|
+
/// series-c-subtle, series-c-subtler]
|
|
2615
|
+
/// The Series C variable group.
|
|
2616
|
+
/// @prop {Color} series-c - The series C color variable.
|
|
2617
|
+
/// @prop {Color} series-c-bold - The bold series C color variable.
|
|
2618
|
+
/// @prop {Color} series-c-bolder - The bolder series C color variable.
|
|
2619
|
+
/// @prop {Color} series-c-subtle - The subtle series C color variable.
|
|
2620
|
+
/// @prop {Color} series-c-subtler - The subtler series C color variable.
|
|
2621
|
+
///
|
|
2622
|
+
/// @subgroup {series-d}
|
|
2623
|
+
/// [series-d, series-d-bold, series-d-bolder,
|
|
2624
|
+
/// series-d-subtle, series-d-subtler]
|
|
2625
|
+
/// The Series D variable group.
|
|
2626
|
+
/// @prop {Color} series-d - The series D color variable.
|
|
2627
|
+
/// @prop {Color} series-d-bold - The bold series D color variable.
|
|
2628
|
+
/// @prop {Color} series-d-bolder - The bolder series D color variable.
|
|
2629
|
+
/// @prop {Color} series-d-subtle - The subtle series D color variable.
|
|
2630
|
+
/// @prop {Color} series-d-subtler - The subtler series D color variable.
|
|
2631
|
+
///
|
|
2632
|
+
/// @subgroup {series-e}
|
|
2633
|
+
/// [series-e, series-e-bold, series-e-bolder,
|
|
2634
|
+
/// series-e-subtle, series-e-subtler]
|
|
2635
|
+
/// The Series E variable group.
|
|
2636
|
+
/// @prop {Color} series-e - The series E color variable.
|
|
2637
|
+
/// @prop {Color} series-e-bold - The bold series E color variable.
|
|
2638
|
+
/// @prop {Color} series-e-bolder - The bolder series E color variable.
|
|
2639
|
+
/// @prop {Color} series-e-subtle - The subtle series E color variable.
|
|
2640
|
+
/// @prop {Color} series-e-subtler - The subtler series E color variable.
|
|
2641
|
+
///
|
|
2642
|
+
/// @subgroup {series-f}
|
|
2643
|
+
/// [series-f, series-f-bold, series-f-bolder,
|
|
2644
|
+
/// series-f-subtle, series-f-subtler]
|
|
2645
|
+
/// The Series F variable group.
|
|
2646
|
+
/// @prop {Color} series-f - The series F color variable.
|
|
2647
|
+
/// @prop {Color} series-f-bold - The bold series F color variable.
|
|
2648
|
+
/// @prop {Color} series-f-bolder - The bolder series F color variable.
|
|
2649
|
+
/// @prop {Color} series-f-subtle - The subtle series F color variable.
|
|
2650
|
+
/// @prop {Color} series-f-subtler - The subtler series F color variable.
|
|
2376
2651
|
$kendo-colors: $_default-colors !default;
|
|
2377
2652
|
|
|
2378
2653
|
$kendo-is-dark-theme: false !default;
|
|
@@ -31325,29 +31600,29 @@ $_kendo-module-meta: (
|
|
|
31325
31600
|
// ColorPalette
|
|
31326
31601
|
|
|
31327
31602
|
/// The font family of the ColorPalette.
|
|
31328
|
-
/// @group
|
|
31603
|
+
/// @group color-palette
|
|
31329
31604
|
$kendo-color-palette-font-family: var( --kendo-font-family, inherit ) !default;
|
|
31330
31605
|
/// The font size of the ColorPalette.
|
|
31331
|
-
/// @group
|
|
31606
|
+
/// @group color-palette
|
|
31332
31607
|
$kendo-color-palette-font-size: var( --kendo-font-size, inherit ) !default;
|
|
31333
31608
|
/// The line height of the ColorPalette.
|
|
31334
|
-
/// @group
|
|
31609
|
+
/// @group color-palette
|
|
31335
31610
|
$kendo-color-palette-line-height: 0 !default;
|
|
31336
31611
|
|
|
31337
31612
|
/// The width of the ColorPalette tile.
|
|
31338
|
-
/// @group
|
|
31613
|
+
/// @group color-palette
|
|
31339
31614
|
$kendo-color-palette-tile-width: k-spacing(6) !default;
|
|
31340
31615
|
/// The height of the ColorPalette tile.
|
|
31341
|
-
/// @group
|
|
31616
|
+
/// @group color-palette
|
|
31342
31617
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
31343
31618
|
/// The shadow of the ColorPalette focused tile.
|
|
31344
|
-
/// @group
|
|
31619
|
+
/// @group color-palette
|
|
31345
31620
|
$kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
31346
31621
|
/// The shadow of the ColorPalette hovered tile.
|
|
31347
|
-
/// @group
|
|
31622
|
+
/// @group color-palette
|
|
31348
31623
|
$kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
31349
31624
|
/// The shadow of the ColorPalette selected tile.
|
|
31350
|
-
/// @group
|
|
31625
|
+
/// @group color-palette
|
|
31351
31626
|
$kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
|
|
31352
31627
|
|
|
31353
31628
|
// #endregion
|
|
@@ -31643,142 +31918,142 @@ $_kendo-module-meta: (
|
|
|
31643
31918
|
// ColorGradient
|
|
31644
31919
|
|
|
31645
31920
|
/// The spacer of the ColorGradient.
|
|
31646
|
-
/// @group
|
|
31921
|
+
/// @group color-gradient
|
|
31647
31922
|
$kendo-color-gradient-spacer: k-spacing(3) !default;
|
|
31648
31923
|
|
|
31649
31924
|
/// The width of the ColorGradient.
|
|
31650
|
-
/// @group
|
|
31925
|
+
/// @group color-gradient
|
|
31651
31926
|
$kendo-color-gradient-width: 272px !default;
|
|
31652
31927
|
/// The width of the border around the ColorGradient.
|
|
31653
|
-
/// @group
|
|
31928
|
+
/// @group color-gradient
|
|
31654
31929
|
$kendo-color-gradient-border-width: 1px !default;
|
|
31655
31930
|
/// The border radius of the ColorGradient.
|
|
31656
|
-
/// @group
|
|
31931
|
+
/// @group color-gradient
|
|
31657
31932
|
$kendo-color-gradient-border-radius: k-border-radius(md) !default;
|
|
31658
31933
|
/// The vertical padding of the ColorGradient.
|
|
31659
|
-
/// @group
|
|
31934
|
+
/// @group color-gradient
|
|
31660
31935
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
31661
31936
|
/// The horizontal padding of the ColorGradient.
|
|
31662
|
-
/// @group
|
|
31937
|
+
/// @group color-gradient
|
|
31663
31938
|
$kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
|
|
31664
31939
|
/// The spacing between the sections of the ColorGradient.
|
|
31665
|
-
/// @group
|
|
31940
|
+
/// @group color-gradient
|
|
31666
31941
|
$kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
|
|
31667
31942
|
/// The font family of the ColorGradient.
|
|
31668
|
-
/// @group
|
|
31943
|
+
/// @group color-gradient
|
|
31669
31944
|
$kendo-color-gradient-font-family: var( --kendo-font-family, inherit ) !default;
|
|
31670
31945
|
/// The font size of the ColorGradient.
|
|
31671
|
-
/// @group
|
|
31946
|
+
/// @group color-gradient
|
|
31672
31947
|
$kendo-color-gradient-font-size: var( --kendo-font-size, inherit ) !default;
|
|
31673
31948
|
/// The line height of the ColorGradient.
|
|
31674
|
-
/// @group
|
|
31949
|
+
/// @group color-gradient
|
|
31675
31950
|
$kendo-color-gradient-line-height: var( --kendo-line-height, normal ) !default;
|
|
31676
31951
|
/// The text color of the ColorGradient.
|
|
31677
|
-
/// @group
|
|
31952
|
+
/// @group color-gradient
|
|
31678
31953
|
$kendo-color-gradient-text: $kendo-component-text !default;
|
|
31679
31954
|
/// The background color of the ColorGradient.
|
|
31680
|
-
/// @group
|
|
31955
|
+
/// @group color-gradient
|
|
31681
31956
|
$kendo-color-gradient-bg: $kendo-component-bg !default;
|
|
31682
31957
|
/// The border color of the ColorGradient.
|
|
31683
|
-
/// @group
|
|
31958
|
+
/// @group color-gradient
|
|
31684
31959
|
$kendo-color-gradient-border: $kendo-component-border !default;
|
|
31685
31960
|
|
|
31686
31961
|
/// The border color of the focused ColorGradient.
|
|
31687
|
-
/// @group
|
|
31962
|
+
/// @group color-gradient
|
|
31688
31963
|
$kendo-color-gradient-focus-border: null !default;
|
|
31689
31964
|
/// The box shadow of the focused ColorGradient.
|
|
31690
|
-
/// @group
|
|
31965
|
+
/// @group color-gradient
|
|
31691
31966
|
$kendo-color-gradient-focus-shadow: k-elevation(3) !default;
|
|
31692
31967
|
|
|
31693
31968
|
/// The border radius of the ColorGradient canvas.
|
|
31694
|
-
/// @group
|
|
31969
|
+
/// @group color-gradient
|
|
31695
31970
|
$kendo-color-gradient-canvas-border-radius: k-border-radius(md) !default;
|
|
31696
31971
|
/// The spacing between the items of the ColorGradient canvas.
|
|
31697
|
-
/// @group
|
|
31972
|
+
/// @group color-gradient
|
|
31698
31973
|
$kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
|
|
31699
31974
|
/// The height the ColorGradient canvas hsv rectangle.
|
|
31700
|
-
/// @group
|
|
31975
|
+
/// @group color-gradient
|
|
31701
31976
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
31702
31977
|
|
|
31703
31978
|
/// The width of the ColorGradient slider.
|
|
31704
|
-
/// @group
|
|
31979
|
+
/// @group color-gradient
|
|
31705
31980
|
$kendo-color-gradient-slider-track-size: 10px !default;
|
|
31706
31981
|
/// The border radius of the ColorGradient slider.
|
|
31707
|
-
/// @group
|
|
31982
|
+
/// @group color-gradient
|
|
31708
31983
|
$kendo-color-gradient-slider-border-radius: 10px !default;
|
|
31709
31984
|
/// The width of the border around the ColorGradient slider drag handle.
|
|
31710
|
-
/// @group
|
|
31985
|
+
/// @group color-gradient
|
|
31711
31986
|
$kendo-color-gradient-slider-draghandle-border-width: 3px !default;
|
|
31712
31987
|
|
|
31713
31988
|
/// The height of the ColorGradient vertical slider.
|
|
31714
|
-
/// @group
|
|
31989
|
+
/// @group color-gradient
|
|
31715
31990
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
31716
31991
|
/// The width of the ColorGradient horizontal slider.
|
|
31717
|
-
/// @group
|
|
31992
|
+
/// @group color-gradient
|
|
31718
31993
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
31719
31994
|
|
|
31720
31995
|
/// The width of the ColorGradient canvas drag handle.
|
|
31721
|
-
/// @group
|
|
31996
|
+
/// @group color-gradient
|
|
31722
31997
|
$kendo-color-gradient-draghandle-width: 14px !default;
|
|
31723
31998
|
/// The height of the ColorGradient canvas drag handle.
|
|
31724
|
-
/// @group
|
|
31999
|
+
/// @group color-gradient
|
|
31725
32000
|
$kendo-color-gradient-draghandle-height: 14px !default;
|
|
31726
32001
|
/// The width of the border around the ColorGradient canvas drag handle.
|
|
31727
|
-
/// @group
|
|
32002
|
+
/// @group color-gradient
|
|
31728
32003
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
31729
32004
|
/// The width of the outline around the ColorGradient canvas drag handle.
|
|
31730
|
-
/// @group
|
|
32005
|
+
/// @group color-gradient
|
|
31731
32006
|
$kendo-color-gradient-draghandle-outline-width: 1px !default;
|
|
31732
32007
|
/// The border radius of the ColorGradient canvas drag handle.
|
|
31733
|
-
/// @group
|
|
32008
|
+
/// @group color-gradient
|
|
31734
32009
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
31735
32010
|
/// The text color of the ColorGradient canvas drag handle.
|
|
31736
|
-
/// @group
|
|
32011
|
+
/// @group color-gradient
|
|
31737
32012
|
$kendo-color-gradient-draghandle-text: null !default;
|
|
31738
32013
|
/// The background color of the ColorGradient canvas drag handle.
|
|
31739
|
-
/// @group
|
|
32014
|
+
/// @group color-gradient
|
|
31740
32015
|
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
31741
32016
|
/// The color of the border around the ColorGradient canvas drag handle.
|
|
31742
|
-
/// @group
|
|
32017
|
+
/// @group color-gradient
|
|
31743
32018
|
$kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
|
|
31744
32019
|
/// The color of the outline around the ColorGradient canvas drag handle.
|
|
31745
|
-
/// @group
|
|
32020
|
+
/// @group color-gradient
|
|
31746
32021
|
$kendo-color-gradient-draghandle-shadow: rgba( $kendo-color-black, .5) !default;
|
|
31747
32022
|
/// The focus color of the outline around the ColorGradient canvas drag handle.
|
|
31748
|
-
/// @group
|
|
32023
|
+
/// @group color-gradient
|
|
31749
32024
|
$kendo-color-gradient-draghandle-focus-shadow: $kendo-color-black !default;
|
|
31750
32025
|
/// The outline color of the outline around the ColorGradient canvas drag handle.
|
|
31751
|
-
/// @group
|
|
32026
|
+
/// @group color-gradient
|
|
31752
32027
|
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
|
|
31753
32028
|
/// The box shadow of the ColorGradient canvas drag handle.
|
|
31754
|
-
/// @group
|
|
32029
|
+
/// @group color-gradient
|
|
31755
32030
|
$kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
|
|
31756
32031
|
|
|
31757
32032
|
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
31758
|
-
/// @group
|
|
32033
|
+
/// @group color-gradient
|
|
31759
32034
|
$kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
|
|
31760
32035
|
/// The horizontal margin of the ColorGradient canvas drag handle.
|
|
31761
|
-
/// @group
|
|
32036
|
+
/// @group color-gradient
|
|
31762
32037
|
$kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
|
|
31763
32038
|
|
|
31764
32039
|
/// The width of the ColorGradient input.
|
|
31765
|
-
/// @group
|
|
32040
|
+
/// @group color-gradient
|
|
31766
32041
|
$kendo-color-gradient-input-width: 46px !default;
|
|
31767
32042
|
/// The spacing between the ColorGradient inputs.
|
|
31768
|
-
/// @group
|
|
32043
|
+
/// @group color-gradient
|
|
31769
32044
|
$kendo-color-gradient-input-gap: calc( #{$kendo-color-gradient-spacer} / 1.5 ) !default;
|
|
31770
32045
|
/// The spacing between the ColorGradient inputs and their labels.
|
|
31771
|
-
/// @group
|
|
32046
|
+
/// @group color-gradient
|
|
31772
32047
|
$kendo-color-gradient-input-label-gap: calc( #{$kendo-color-gradient-spacer} / 3 ) !default;
|
|
31773
32048
|
/// The text color of the ColorGradient input labels.
|
|
31774
|
-
/// @group
|
|
32049
|
+
/// @group color-gradient
|
|
31775
32050
|
$kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
|
|
31776
32051
|
|
|
31777
32052
|
/// The font weight of the ColorGradient contrast ratio text.
|
|
31778
|
-
/// @group
|
|
32053
|
+
/// @group color-gradient
|
|
31779
32054
|
$kendo-color-gradient-contrast-ratio-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
31780
32055
|
/// The spacing between the items in the ColorGradient contrast tool.
|
|
31781
|
-
/// @group
|
|
32056
|
+
/// @group color-gradient
|
|
31782
32057
|
$kendo-color-gradient-contrast-spacer: calc( #{$kendo-color-gradient-spacer} / 1.5 ) !default;
|
|
31783
32058
|
|
|
31784
32059
|
// #endregion
|
|
@@ -32151,82 +32426,82 @@ $_kendo-module-meta: (
|
|
|
32151
32426
|
// ColorEditor/FlatColorPicker
|
|
32152
32427
|
|
|
32153
32428
|
/// The spacer of the ColorEditor.
|
|
32154
|
-
/// @group
|
|
32429
|
+
/// @group color-editor
|
|
32155
32430
|
$kendo-color-editor-spacer: k-spacing(3) !default;
|
|
32156
32431
|
|
|
32157
32432
|
/// The minimum width of the ColorEditor.
|
|
32158
|
-
/// @group
|
|
32433
|
+
/// @group color-editor
|
|
32159
32434
|
$kendo-color-editor-min-width: 272px !default;
|
|
32160
32435
|
/// The width of the border around the ColorEditor.
|
|
32161
|
-
/// @group
|
|
32436
|
+
/// @group color-editor
|
|
32162
32437
|
$kendo-color-editor-border-width: 1px !default;
|
|
32163
32438
|
/// The border radius of the ColorEditor.
|
|
32164
|
-
/// @group
|
|
32439
|
+
/// @group color-editor
|
|
32165
32440
|
$kendo-color-editor-border-radius: k-border-radius(md) !default;
|
|
32166
32441
|
/// The font family of the ColorEditor.
|
|
32167
|
-
/// @group
|
|
32442
|
+
/// @group color-editor
|
|
32168
32443
|
$kendo-color-editor-font-family: var( --kendo-font-family, inherit ) !default;
|
|
32169
32444
|
/// The font size of the ColorEditor.
|
|
32170
|
-
/// @group
|
|
32445
|
+
/// @group color-editor
|
|
32171
32446
|
$kendo-color-editor-font-size: var( --kendo-font-size, inherit ) !default;
|
|
32172
32447
|
/// The line height of the ColorEditor.
|
|
32173
|
-
/// @group
|
|
32448
|
+
/// @group color-editor
|
|
32174
32449
|
$kendo-color-editor-line-height: var( --kendo-line-height, normal ) !default;
|
|
32175
32450
|
/// The text color of the ColorEditor.
|
|
32176
|
-
/// @group
|
|
32451
|
+
/// @group color-editor
|
|
32177
32452
|
$kendo-color-editor-text: $kendo-component-text !default;
|
|
32178
32453
|
/// The background color of the ColorEditor.
|
|
32179
|
-
/// @group
|
|
32454
|
+
/// @group color-editor
|
|
32180
32455
|
$kendo-color-editor-bg: $kendo-component-bg !default;
|
|
32181
32456
|
/// The border color of the ColorEditor.
|
|
32182
|
-
/// @group
|
|
32457
|
+
/// @group color-editor
|
|
32183
32458
|
$kendo-color-editor-border: $kendo-component-border !default;
|
|
32184
32459
|
|
|
32185
32460
|
/// The border color of the focused ColorEditor.
|
|
32186
|
-
/// @group
|
|
32461
|
+
/// @group color-editor
|
|
32187
32462
|
$kendo-color-editor-focus-border: null !default;
|
|
32188
32463
|
/// The box shadow of the focused ColorEditor.
|
|
32189
|
-
/// @group
|
|
32464
|
+
/// @group color-editor
|
|
32190
32465
|
$kendo-color-editor-focus-shadow: k-elevation(3) !default;
|
|
32191
32466
|
|
|
32192
32467
|
/// The vertical padding of the ColorEditor header.
|
|
32193
|
-
/// @group
|
|
32468
|
+
/// @group color-editor
|
|
32194
32469
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
32195
32470
|
/// The horizontal padding of the ColorEditor header.
|
|
32196
|
-
/// @group
|
|
32471
|
+
/// @group color-editor
|
|
32197
32472
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
32198
32473
|
/// The spacing between the ColorEditor header actions.
|
|
32199
|
-
/// @group
|
|
32474
|
+
/// @group color-editor
|
|
32200
32475
|
$kendo-color-editor-header-actions-gap: calc( #{$kendo-color-editor-spacer} / 1.5 ) !default;
|
|
32201
32476
|
|
|
32202
32477
|
/// The width of the ColorEditor preview.
|
|
32203
|
-
/// @group
|
|
32478
|
+
/// @group color-editor
|
|
32204
32479
|
$kendo-color-editor-color-preview-width: 32px !default;
|
|
32205
32480
|
/// The height of the ColorEditor preview.
|
|
32206
|
-
/// @group
|
|
32481
|
+
/// @group color-editor
|
|
32207
32482
|
$kendo-color-editor-color-preview-height: 12px !default;
|
|
32208
32483
|
/// The spacing between the colors in the ColorEditor preview.
|
|
32209
|
-
/// @group
|
|
32484
|
+
/// @group color-editor
|
|
32210
32485
|
$kendo-color-editor-preview-gap: k-spacing(1) !default;
|
|
32211
32486
|
|
|
32212
32487
|
/// The vertical padding of the ColorEditor views container.
|
|
32213
|
-
/// @group
|
|
32488
|
+
/// @group color-editor
|
|
32214
32489
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
32215
32490
|
/// The horizontal padding of the ColorEditor views container.
|
|
32216
|
-
/// @group
|
|
32491
|
+
/// @group color-editor
|
|
32217
32492
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
32218
32493
|
/// The spacing of the ColorEditor views container.
|
|
32219
|
-
/// @group
|
|
32494
|
+
/// @group color-editor
|
|
32220
32495
|
$kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
|
|
32221
32496
|
|
|
32222
32497
|
/// The outline color of the focused ColorGradient.
|
|
32223
|
-
/// @group
|
|
32498
|
+
/// @group color-editor
|
|
32224
32499
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
32225
32500
|
/// The outline width of the focused ColorGradient.
|
|
32226
|
-
/// @group
|
|
32501
|
+
/// @group color-editor
|
|
32227
32502
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
32228
32503
|
/// The outline offset of the focused ColorGradient.
|
|
32229
|
-
/// @group
|
|
32504
|
+
/// @group color-editor
|
|
32230
32505
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
32231
32506
|
|
|
32232
32507
|
// #endregion
|
|
@@ -44691,38 +44966,38 @@ $_kendo-module-meta: (
|
|
|
44691
44966
|
// TileLayout
|
|
44692
44967
|
|
|
44693
44968
|
/// The width of the border around the TileLayout.
|
|
44694
|
-
/// @group
|
|
44969
|
+
/// @group tile-layout
|
|
44695
44970
|
$kendo-tile-layout-border-width: 0px !default;
|
|
44696
44971
|
/// The background color of the TileLayout.
|
|
44697
|
-
/// @group
|
|
44972
|
+
/// @group tile-layout
|
|
44698
44973
|
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
44699
44974
|
|
|
44700
44975
|
/// The horizontal padding of the TileLayout.
|
|
44701
|
-
/// @group
|
|
44976
|
+
/// @group tile-layout
|
|
44702
44977
|
$kendo-tile-layout-padding-x: k-spacing(4) !default;
|
|
44703
44978
|
|
|
44704
44979
|
/// The vertical padding of the TileLayout
|
|
44705
|
-
/// @group
|
|
44980
|
+
/// @group tile-layout
|
|
44706
44981
|
$kendo-tile-layout-padding-y: $kendo-tile-layout-padding-x !default;
|
|
44707
44982
|
|
|
44708
44983
|
/// The width of the border around the TileLayout card.
|
|
44709
|
-
/// @group
|
|
44984
|
+
/// @group tile-layout
|
|
44710
44985
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|
|
44711
44986
|
/// The focus box shadow of the TileLayout card.
|
|
44712
|
-
/// @group
|
|
44987
|
+
/// @group tile-layout
|
|
44713
44988
|
$kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
44714
44989
|
|
|
44715
44990
|
/// The width of the border around the TileLayout hint.
|
|
44716
|
-
/// @group
|
|
44991
|
+
/// @group tile-layout
|
|
44717
44992
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
44718
44993
|
/// The radius of the border around the TileLayout hint.
|
|
44719
|
-
/// @group
|
|
44994
|
+
/// @group tile-layout
|
|
44720
44995
|
$kendo-tile-layout-hint-border-radius: k-border-radius(lg) !default;
|
|
44721
44996
|
/// The color of the border around the TileLayout hint.
|
|
44722
|
-
/// @group
|
|
44997
|
+
/// @group tile-layout
|
|
44723
44998
|
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
44724
44999
|
/// The background color of the TileLayout hint.
|
|
44725
|
-
/// @group
|
|
45000
|
+
/// @group tile-layout
|
|
44726
45001
|
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
44727
45002
|
|
|
44728
45003
|
|
|
@@ -51913,184 +52188,184 @@ $_kendo-module-meta: (
|
|
|
51913
52188
|
// FileManager
|
|
51914
52189
|
|
|
51915
52190
|
/// The space between the FileManager items.
|
|
51916
|
-
/// @group
|
|
52191
|
+
/// @group file-manager
|
|
51917
52192
|
$kendo-file-manager-spacer: k-spacing(4) !default;
|
|
51918
52193
|
/// The border width of the FileManager.
|
|
51919
|
-
/// @group
|
|
52194
|
+
/// @group file-manager
|
|
51920
52195
|
$kendo-file-manager-border-width: 1px !default;
|
|
51921
52196
|
/// The font family of the FileManager.
|
|
51922
|
-
/// @group
|
|
52197
|
+
/// @group file-manager
|
|
51923
52198
|
$kendo-file-manager-font-family: var( --kendo-font-family, inherit ) !default;
|
|
51924
52199
|
/// The font size of the FileManager.
|
|
51925
|
-
/// @group
|
|
52200
|
+
/// @group file-manager
|
|
51926
52201
|
$kendo-file-manager-font-size: var( --kendo-font-size, inherit ) !default;
|
|
51927
52202
|
/// The line height of the FileManager.
|
|
51928
|
-
/// @group
|
|
52203
|
+
/// @group file-manager
|
|
51929
52204
|
$kendo-file-manager-line-height: var( --kendo-line-height, normal ) !default;
|
|
51930
52205
|
/// The background color of the FileManager.
|
|
51931
|
-
/// @group
|
|
52206
|
+
/// @group file-manager
|
|
51932
52207
|
$kendo-file-manager-bg: $kendo-component-bg !default;
|
|
51933
52208
|
/// The text color of the FileManager.
|
|
51934
|
-
/// @group
|
|
52209
|
+
/// @group file-manager
|
|
51935
52210
|
$kendo-file-manager-text: $kendo-component-text !default;
|
|
51936
52211
|
/// The border color of the FileManager.
|
|
51937
|
-
/// @group
|
|
52212
|
+
/// @group file-manager
|
|
51938
52213
|
$kendo-file-manager-border: $kendo-component-border !default;
|
|
51939
52214
|
|
|
51940
52215
|
/// The border width of the FileManager Toolbar.
|
|
51941
|
-
/// @group
|
|
52216
|
+
/// @group file-manager
|
|
51942
52217
|
$kendo-file-manager-toolbar-border-width: $kendo-file-manager-border-width !default;
|
|
51943
52218
|
/// The background color of the FileManager Toolbar.
|
|
51944
|
-
/// @group
|
|
52219
|
+
/// @group file-manager
|
|
51945
52220
|
$kendo-file-manager-toolbar-bg: null !default;
|
|
51946
52221
|
/// The text color of the FileManager Toolbar.
|
|
51947
|
-
/// @group
|
|
52222
|
+
/// @group file-manager
|
|
51948
52223
|
$kendo-file-manager-toolbar-text: null !default;
|
|
51949
52224
|
/// The border color of the FileManager Toolbar.
|
|
51950
|
-
/// @group
|
|
52225
|
+
/// @group file-manager
|
|
51951
52226
|
$kendo-file-manager-toolbar-border: null !default;
|
|
51952
52227
|
/// The gradient of the FileManager Toolbar.
|
|
51953
|
-
/// @group
|
|
52228
|
+
/// @group file-manager
|
|
51954
52229
|
$kendo-file-manager-toolbar-gradient: null !default;
|
|
51955
52230
|
|
|
51956
52231
|
/// The horizontal padding of the FileManager Navigation.
|
|
51957
|
-
/// @group
|
|
52232
|
+
/// @group file-manager
|
|
51958
52233
|
$kendo-file-manager-navigation-padding-x: $kendo-file-manager-spacer !default;
|
|
51959
52234
|
/// The vertical padding of the FileManager Navigation.
|
|
51960
|
-
/// @group
|
|
52235
|
+
/// @group file-manager
|
|
51961
52236
|
$kendo-file-manager-navigation-padding-y: $kendo-file-manager-spacer !default;
|
|
51962
52237
|
/// The width of the FileManager Navigation.
|
|
51963
|
-
/// @group
|
|
52238
|
+
/// @group file-manager
|
|
51964
52239
|
$kendo-file-manager-navigation-width: 20% !default;
|
|
51965
52240
|
/// The border width of the FileManager Navigation.
|
|
51966
|
-
/// @group
|
|
52241
|
+
/// @group file-manager
|
|
51967
52242
|
$kendo-file-manager-navigation-border-width: $kendo-file-manager-border-width !default;
|
|
51968
52243
|
/// The background color of the FileManager Navigation.
|
|
51969
|
-
/// @group
|
|
52244
|
+
/// @group file-manager
|
|
51970
52245
|
$kendo-file-manager-navigation-bg: null !default;
|
|
51971
52246
|
/// The text color of the FileManager Navigation.
|
|
51972
|
-
/// @group
|
|
52247
|
+
/// @group file-manager
|
|
51973
52248
|
$kendo-file-manager-navigation-text: null !default;
|
|
51974
52249
|
/// The border color of the FileManager Navigation.
|
|
51975
|
-
/// @group
|
|
52250
|
+
/// @group file-manager
|
|
51976
52251
|
$kendo-file-manager-navigation-border: null !default;
|
|
51977
52252
|
|
|
51978
52253
|
/// The horizontal padding of the FileManager Breadcrumb.
|
|
51979
|
-
/// @group
|
|
52254
|
+
/// @group file-manager
|
|
51980
52255
|
$kendo-file-manager-breadcrumb-padding-x: k-spacing(2) !default;
|
|
51981
52256
|
/// The vertical padding of the FileManager Breadcrumb.
|
|
51982
|
-
/// @group
|
|
52257
|
+
/// @group file-manager
|
|
51983
52258
|
$kendo-file-manager-breadcrumb-padding-y: k-spacing(2) !default;
|
|
51984
52259
|
/// The border width of the FileManager Breadcrumb.
|
|
51985
|
-
/// @group
|
|
52260
|
+
/// @group file-manager
|
|
51986
52261
|
$kendo-file-manager-breadcrumb-border-width: $kendo-file-manager-border-width !default;
|
|
51987
52262
|
/// The background color of the FileManager Breadcrumb.
|
|
51988
|
-
/// @group
|
|
52263
|
+
/// @group file-manager
|
|
51989
52264
|
$kendo-file-manager-breadcrumb-bg: $kendo-toolbar-bg !default;
|
|
51990
52265
|
/// The text color of the FileManager Breadcrumb.
|
|
51991
|
-
/// @group
|
|
52266
|
+
/// @group file-manager
|
|
51992
52267
|
$kendo-file-manager-breadcrumb-text: null !default;
|
|
51993
52268
|
/// The border color of the FileManager Breadcrumb.
|
|
51994
|
-
/// @group
|
|
52269
|
+
/// @group file-manager
|
|
51995
52270
|
$kendo-file-manager-breadcrumb-border: null !default;
|
|
51996
52271
|
|
|
51997
52272
|
/// The background color of the FileManager ListView.
|
|
51998
|
-
/// @group
|
|
52273
|
+
/// @group file-manager
|
|
51999
52274
|
$kendo-file-manager-listview-bg: null !default;
|
|
52000
52275
|
/// The text color of the FileManager ListView.
|
|
52001
|
-
/// @group
|
|
52276
|
+
/// @group file-manager
|
|
52002
52277
|
$kendo-file-manager-listview-text: null !default;
|
|
52003
52278
|
/// The border color of the FileManager ListView.
|
|
52004
|
-
/// @group
|
|
52279
|
+
/// @group file-manager
|
|
52005
52280
|
$kendo-file-manager-listview-border: null !default;
|
|
52006
52281
|
|
|
52007
52282
|
/// The horizontal padding of the FileManager ListView item.
|
|
52008
|
-
/// @group
|
|
52283
|
+
/// @group file-manager
|
|
52009
52284
|
$kendo-file-manager-listview-item-padding-x: k-spacing(4) !default;
|
|
52010
52285
|
/// The vertical padding of the FileManager ListView item.
|
|
52011
|
-
/// @group
|
|
52286
|
+
/// @group file-manager
|
|
52012
52287
|
$kendo-file-manager-listview-item-padding-y: k-spacing(4) !default;
|
|
52013
52288
|
/// The width of the FileManager ListView item.
|
|
52014
|
-
/// @group
|
|
52289
|
+
/// @group file-manager
|
|
52015
52290
|
$kendo-file-manager-listview-item-width: 120px !default;
|
|
52016
52291
|
/// The height of the FileManager ListView item.
|
|
52017
|
-
/// @group
|
|
52292
|
+
/// @group file-manager
|
|
52018
52293
|
$kendo-file-manager-listview-item-height: 120px !default;
|
|
52019
52294
|
/// The background color of the FileManager ListView item.
|
|
52020
|
-
/// @group
|
|
52295
|
+
/// @group file-manager
|
|
52021
52296
|
$kendo-file-manager-listview-item-bg: null !default;
|
|
52022
52297
|
/// The text color of the FileManager ListView item.
|
|
52023
|
-
/// @group
|
|
52298
|
+
/// @group file-manager
|
|
52024
52299
|
$kendo-file-manager-listview-item-text: null !default;
|
|
52025
52300
|
/// The border color of the FileManager ListView item.
|
|
52026
|
-
/// @group
|
|
52301
|
+
/// @group file-manager
|
|
52027
52302
|
$kendo-file-manager-listview-item-border: null !default;
|
|
52028
52303
|
|
|
52029
52304
|
/// The background color of the FileManager ListView item icon.
|
|
52030
|
-
/// @group
|
|
52305
|
+
/// @group file-manager
|
|
52031
52306
|
$kendo-file-manager-listview-item-icon-bg: null !default;
|
|
52032
52307
|
/// The text color of the FileManager ListView item icon.
|
|
52033
|
-
/// @group
|
|
52308
|
+
/// @group file-manager
|
|
52034
52309
|
$kendo-file-manager-listview-item-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
52035
52310
|
/// The border color of the FileManager ListView item icon.
|
|
52036
|
-
/// @group
|
|
52311
|
+
/// @group file-manager
|
|
52037
52312
|
$kendo-file-manager-listview-item-icon-border: null !default;
|
|
52038
52313
|
/// Background color of the FileManager selected ListView item icon.
|
|
52039
|
-
/// @group
|
|
52314
|
+
/// @group file-manager
|
|
52040
52315
|
$kendo-file-manager-listview-item-icon-selected-bg: null !default;
|
|
52041
52316
|
/// Text color of the FileManager selected ListView item icon.
|
|
52042
|
-
/// @group
|
|
52317
|
+
/// @group file-manager
|
|
52043
52318
|
$kendo-file-manager-listview-item-icon-selected-text: inherit !default;
|
|
52044
52319
|
/// Border color of the FileManager selected ListView item icon.
|
|
52045
|
-
/// @group
|
|
52320
|
+
/// @group file-manager
|
|
52046
52321
|
$kendo-file-manager-listview-item-icon-selected-border: null !default;
|
|
52047
52322
|
|
|
52048
52323
|
/// The background color of the FileManager Grid.
|
|
52049
|
-
/// @group
|
|
52324
|
+
/// @group file-manager
|
|
52050
52325
|
$kendo-file-manager-grid-bg: null !default;
|
|
52051
52326
|
/// The text color of the FileManager Grid.
|
|
52052
|
-
/// @group
|
|
52327
|
+
/// @group file-manager
|
|
52053
52328
|
$kendo-file-manager-grid-text: null !default;
|
|
52054
52329
|
/// The border color of the FileManager Grid.
|
|
52055
|
-
/// @group
|
|
52330
|
+
/// @group file-manager
|
|
52056
52331
|
$kendo-file-manager-grid-border: null !default;
|
|
52057
52332
|
|
|
52058
52333
|
/// The horizontal padding of the FileManager preview.
|
|
52059
|
-
/// @group
|
|
52334
|
+
/// @group file-manager
|
|
52060
52335
|
$kendo-file-manager-preview-padding-x: $kendo-file-manager-spacer !default;
|
|
52061
52336
|
/// The vertical padding of the FileManager preview.
|
|
52062
|
-
/// @group
|
|
52337
|
+
/// @group file-manager
|
|
52063
52338
|
$kendo-file-manager-preview-padding-y: $kendo-file-manager-spacer !default;
|
|
52064
52339
|
/// The width of the FileManager preview.
|
|
52065
|
-
/// @group
|
|
52340
|
+
/// @group file-manager
|
|
52066
52341
|
$kendo-file-manager-preview-width: 20% !default;
|
|
52067
52342
|
/// The border width of the FileManager preview.
|
|
52068
|
-
/// @group
|
|
52343
|
+
/// @group file-manager
|
|
52069
52344
|
$kendo-file-manager-preview-border-width: $kendo-file-manager-border-width !default;
|
|
52070
52345
|
/// The spacing of the FileManager preview.
|
|
52071
|
-
/// @group
|
|
52346
|
+
/// @group file-manager
|
|
52072
52347
|
$kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
|
|
52073
52348
|
/// The gap between the columns in the FileManager preview.
|
|
52074
|
-
/// @group
|
|
52349
|
+
/// @group file-manager
|
|
52075
52350
|
$kendo-file-manager-preview-column-gap: k-spacing(1) !default;
|
|
52076
52351
|
/// The background color of the FileManager preview.
|
|
52077
|
-
/// @group
|
|
52352
|
+
/// @group file-manager
|
|
52078
52353
|
$kendo-file-manager-preview-bg: null !default;
|
|
52079
52354
|
/// The text color of the FileManager preview.
|
|
52080
|
-
/// @group
|
|
52355
|
+
/// @group file-manager
|
|
52081
52356
|
$kendo-file-manager-preview-text: null !default;
|
|
52082
52357
|
/// The border color of the FileManager preview.
|
|
52083
|
-
/// @group
|
|
52358
|
+
/// @group file-manager
|
|
52084
52359
|
$kendo-file-manager-preview-border: null !default;
|
|
52085
52360
|
|
|
52086
52361
|
/// The background color of the FileManager preview icon.
|
|
52087
|
-
/// @group
|
|
52362
|
+
/// @group file-manager
|
|
52088
52363
|
$kendo-file-manager-preview-icon-bg: null !default;
|
|
52089
52364
|
/// The text color of the FileManager preview icon.
|
|
52090
|
-
/// @group
|
|
52365
|
+
/// @group file-manager
|
|
52091
52366
|
$kendo-file-manager-preview-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
52092
52367
|
/// The border color of the FileManager preview icon.
|
|
52093
|
-
/// @group
|
|
52368
|
+
/// @group file-manager
|
|
52094
52369
|
$kendo-file-manager-preview-icon-border: null !default;
|
|
52095
52370
|
|
|
52096
52371
|
// #endregion
|