@progress/kendo-theme-classic 6.4.1-dev.1 → 6.5.0-dev.1
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 +103 -36
- package/dist/all.scss +1091 -194
- package/dist/meta/sassdoc-data.json +41297 -19385
- package/dist/meta/sassdoc-raw-data.json +18200 -8100
- package/dist/meta/variables.json +273 -213
- 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/appbar/_variables.scss +39 -7
- package/scss/bottom-navigation/_variables.scss +42 -8
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -5
- package/scss/colorpalette/_variables.scss +18 -1
- package/scss/dialog/_variables.scss +16 -2
- package/scss/editor/_variables.scss +33 -0
- package/scss/expansion-panel/_variables.scss +56 -12
- package/scss/filter/_variables.scss +18 -1
- package/scss/list/_variables.scss +2 -2
- package/scss/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/notification/_variables.scss +20 -19
- package/scss/popover/_variables.scss +60 -6
- package/scss/progressbar/_variables.scss +24 -23
- package/scss/scrollview/_variables.scss +59 -6
- package/scss/splitter/_variables.scss +2 -0
- package/scss/tilelayout/_variables.scss +21 -4
- package/scss/treeview/_variables.scss +30 -4
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
package/dist/all.scss
CHANGED
|
@@ -1323,6 +1323,10 @@ $_kendo-escape-class-name: (
|
|
|
1323
1323
|
/// @example scss - Usage
|
|
1324
1324
|
/// @debug k-meta-function-exists( "k-string-replace" ); // => true
|
|
1325
1325
|
@function k-meta-function-exists( $name ) {
|
|
1326
|
+
@if $name == "" {
|
|
1327
|
+
@return false;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1326
1330
|
@return function-exists( $name );
|
|
1327
1331
|
}
|
|
1328
1332
|
|
|
@@ -14953,7 +14957,11 @@ $ki-rotate-map: (
|
|
|
14953
14957
|
}
|
|
14954
14958
|
|
|
14955
14959
|
.k-icon-action {
|
|
14960
|
+
display: inline-flex;
|
|
14956
14961
|
padding: $kendo-icon-padding;
|
|
14962
|
+
line-height: 1;
|
|
14963
|
+
align-items: center;
|
|
14964
|
+
vertical-align: middle;
|
|
14957
14965
|
cursor: pointer;
|
|
14958
14966
|
}
|
|
14959
14967
|
|
|
@@ -15502,7 +15510,7 @@ $kendo-list-lg-header-line-height: null !default;
|
|
|
15502
15510
|
|
|
15503
15511
|
/// The font weight of the List header.
|
|
15504
15512
|
/// @group list
|
|
15505
|
-
$kendo-list-header-font-weight:
|
|
15513
|
+
$kendo-list-header-font-weight: $kendo-font-weight-bold !default;
|
|
15506
15514
|
|
|
15507
15515
|
/// The horizontal padding of the List items, when no size is set.
|
|
15508
15516
|
/// @group list
|
|
@@ -15566,7 +15574,7 @@ $kendo-list-lg-group-item-line-height: null !default;
|
|
|
15566
15574
|
|
|
15567
15575
|
/// The font weight of a List group item.
|
|
15568
15576
|
/// @group list
|
|
15569
|
-
$kendo-list-group-item-font-weight:
|
|
15577
|
+
$kendo-list-group-item-font-weight: $kendo-font-weight-bold !default;
|
|
15570
15578
|
|
|
15571
15579
|
|
|
15572
15580
|
/// The map with the sizes of the List.
|
|
@@ -16388,6 +16396,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16388
16396
|
}
|
|
16389
16397
|
}
|
|
16390
16398
|
.k-list-item-text,
|
|
16399
|
+
.k-list-header-text,
|
|
16391
16400
|
.k-list-optionlabel {
|
|
16392
16401
|
&::before {
|
|
16393
16402
|
content: "\200b";
|
|
@@ -19313,6 +19322,10 @@ $kendo-chip-list-sizes: (
|
|
|
19313
19322
|
padding-inline: $_padding-x;
|
|
19314
19323
|
font-size: $_font-size;
|
|
19315
19324
|
line-height: $_line-height;
|
|
19325
|
+
|
|
19326
|
+
.k-chip-action {
|
|
19327
|
+
padding: $_padding-y;
|
|
19328
|
+
}
|
|
19316
19329
|
}
|
|
19317
19330
|
|
|
19318
19331
|
.k-chip-avatar {
|
|
@@ -19744,53 +19757,129 @@ $_kendo-module-meta: (
|
|
|
19744
19757
|
// #region @import "./_variables.scss"; -> scss/loader/_variables.scss
|
|
19745
19758
|
// Loader
|
|
19746
19759
|
|
|
19760
|
+
/// The border radius of the Loader segment.
|
|
19761
|
+
/// @group loader
|
|
19747
19762
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
19763
|
+
|
|
19764
|
+
/// The size of the small Loader segment.
|
|
19765
|
+
/// @group loader
|
|
19748
19766
|
$kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19767
|
+
/// The size of the medium Loader segment.
|
|
19768
|
+
/// @group loader
|
|
19749
19769
|
$kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
|
|
19770
|
+
/// The size of the large Loader segment.
|
|
19771
|
+
/// @group loader
|
|
19750
19772
|
$kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
19751
19773
|
|
|
19774
|
+
/// The padding of the small Loader.
|
|
19775
|
+
/// @group loader
|
|
19752
19776
|
$kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
19777
|
+
/// The padding of the medium Loader.
|
|
19778
|
+
/// @group loader
|
|
19753
19779
|
$kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
19780
|
+
/// The padding of the large Loader.
|
|
19781
|
+
/// @group loader
|
|
19754
19782
|
$kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
19755
19783
|
|
|
19784
|
+
/// The width of the small spinner-3 Loader.
|
|
19785
|
+
/// @group loader
|
|
19756
19786
|
$kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
19757
|
-
|
|
19787
|
+
/// The width of the medium spinner-3 Loader.
|
|
19788
|
+
/// @group loader
|
|
19758
19789
|
$kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
19759
|
-
|
|
19790
|
+
/// The width of the large spinner-3 Loader.
|
|
19791
|
+
/// @group loader
|
|
19760
19792
|
$kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
19793
|
+
|
|
19794
|
+
/// The height of the small spinner-3 Loader.
|
|
19795
|
+
/// @group loader
|
|
19796
|
+
$kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
|
|
19797
|
+
/// The height of the medium spinner-3 Loader.
|
|
19798
|
+
/// @group loader
|
|
19799
|
+
$kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
|
|
19800
|
+
/// The height of the large spinner-3 Loader.
|
|
19801
|
+
/// @group loader
|
|
19761
19802
|
$kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
|
|
19762
19803
|
|
|
19804
|
+
/// The width of the small spinner-4 Loader.
|
|
19805
|
+
/// @group loader
|
|
19763
19806
|
$kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
|
|
19764
|
-
|
|
19807
|
+
/// The width of the medium spinner-4 Loader.
|
|
19808
|
+
/// @group loader
|
|
19765
19809
|
$kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
|
|
19766
|
-
|
|
19810
|
+
/// The width of the large spinner-4 Loader.
|
|
19811
|
+
/// @group loader
|
|
19767
19812
|
$kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
|
|
19813
|
+
|
|
19814
|
+
/// The height of the small spinner-4 Loader.
|
|
19815
|
+
/// @group loader
|
|
19816
|
+
$kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
|
|
19817
|
+
/// The height of the medium spinner-4 Loader.
|
|
19818
|
+
/// @group loader
|
|
19819
|
+
$kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
19820
|
+
/// The height of the large spinner-4 Loader.
|
|
19821
|
+
/// @group loader
|
|
19768
19822
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
19769
19823
|
|
|
19824
|
+
/// The color of the Loader based on the secondary theme color.
|
|
19825
|
+
/// @group loader
|
|
19770
19826
|
$kendo-loader-secondary-bg: #656565 !default;
|
|
19771
19827
|
|
|
19828
|
+
/// The border width of the container panel.
|
|
19829
|
+
/// @group loader
|
|
19772
19830
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
19831
|
+
/// The border style of the container panel.
|
|
19832
|
+
/// @group loader
|
|
19773
19833
|
$kendo-loader-container-panel-border-style: solid !default;
|
|
19834
|
+
/// The border color of the container panel.
|
|
19835
|
+
/// @group loader
|
|
19774
19836
|
$kendo-loader-container-panel-border-color: $kendo-component-border !default;
|
|
19837
|
+
/// The border radius of the container panel.
|
|
19838
|
+
/// @group loader
|
|
19775
19839
|
$kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
19840
|
+
/// The background color of the container panel.
|
|
19841
|
+
/// @group loader
|
|
19776
19842
|
$kendo-loader-container-panel-bg: $kendo-color-white !default;
|
|
19777
19843
|
|
|
19844
|
+
/// The padding of the small Loader container.
|
|
19845
|
+
/// @group loader
|
|
19778
19846
|
$kendo-loader-sm-container-padding: 15px !default;
|
|
19779
|
-
|
|
19780
|
-
|
|
19781
|
-
|
|
19847
|
+
/// The padding of the medium Loader container.
|
|
19848
|
+
/// @group loader
|
|
19782
19849
|
$kendo-loader-md-container-padding: 20px !default;
|
|
19783
|
-
|
|
19784
|
-
|
|
19785
|
-
|
|
19850
|
+
/// The padding of the large Loader container.
|
|
19851
|
+
/// @group loader
|
|
19786
19852
|
$kendo-loader-lg-container-padding: 25px !default;
|
|
19853
|
+
|
|
19854
|
+
/// The gap of the small Loader container.
|
|
19855
|
+
/// @group loader
|
|
19856
|
+
$kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
19857
|
+
/// The gap of the medium Loader container.
|
|
19858
|
+
/// @group loader
|
|
19859
|
+
$kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
19860
|
+
/// The gap of the large Loader container.
|
|
19861
|
+
/// @group loader
|
|
19787
19862
|
$kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
|
|
19788
|
-
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19789
19863
|
|
|
19864
|
+
/// The font size of the small Loader container.
|
|
19865
|
+
/// @group loader
|
|
19866
|
+
$kendo-loader-sm-container-font-size: $kendo-font-size-xs !default;
|
|
19867
|
+
/// The font size of the medium Loader container.
|
|
19868
|
+
/// @group loader
|
|
19869
|
+
$kendo-loader-md-container-font-size: $kendo-font-size-md !default;
|
|
19870
|
+
/// The font size of the large Loader container.
|
|
19871
|
+
/// @group loader
|
|
19872
|
+
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19790
19873
|
|
|
19791
|
-
// Loading
|
|
19874
|
+
// Loading indicator
|
|
19875
|
+
/// The background color of the Loading indicator.
|
|
19876
|
+
/// @group loading
|
|
19792
19877
|
$kendo-loading-bg: $kendo-component-bg !default;
|
|
19878
|
+
/// The text color of the Loading indicator.
|
|
19879
|
+
/// @group loading
|
|
19793
19880
|
$kendo-loading-text: currentColor !default;
|
|
19881
|
+
/// The opacity of the Loading indicator.
|
|
19882
|
+
/// @group loading
|
|
19794
19883
|
$kendo-loading-opacity: .3 !default;
|
|
19795
19884
|
|
|
19796
19885
|
// #endregion
|
|
@@ -23312,54 +23401,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
|
|
|
23312
23401
|
// File already imported_once. Skipping output.
|
|
23313
23402
|
// #endregion
|
|
23314
23403
|
|
|
23315
|
-
|
|
23316
23404
|
// Window
|
|
23317
23405
|
|
|
23406
|
+
/// The width of the border around the Window.
|
|
23407
|
+
/// @group window
|
|
23318
23408
|
$kendo-window-border-width: 1px !default;
|
|
23409
|
+
/// The border radius of the Window.
|
|
23410
|
+
/// @group window
|
|
23319
23411
|
$kendo-window-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
23412
|
+
/// The font family of the Window.
|
|
23413
|
+
/// @group window
|
|
23320
23414
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
23415
|
+
/// The font size of the Window.
|
|
23416
|
+
/// @group window
|
|
23321
23417
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
23418
|
+
/// The line height of the Window.
|
|
23419
|
+
/// @group window
|
|
23322
23420
|
$kendo-window-line-height: $kendo-line-height-md !default;
|
|
23323
23421
|
|
|
23422
|
+
/// The horizontal padding of the Window titlebar.
|
|
23423
|
+
/// @group window
|
|
23324
23424
|
$kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
23425
|
+
/// The vertical padding of the Window titlebar.
|
|
23426
|
+
/// @group window
|
|
23325
23427
|
$kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
23428
|
+
/// The width of the border of the Window titlebar.
|
|
23429
|
+
/// @group window
|
|
23326
23430
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
23431
|
+
/// The style of the border of the Window titlebar.
|
|
23432
|
+
/// @group window
|
|
23327
23433
|
$kendo-window-titlebar-border-style: solid !default;
|
|
23328
23434
|
|
|
23435
|
+
/// The font size of the title of the Window.
|
|
23436
|
+
/// @group window
|
|
23329
23437
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
23438
|
+
/// The line height of the title of the Window.
|
|
23439
|
+
/// @group window
|
|
23330
23440
|
$kendo-window-title-line-height: 1.25 !default;
|
|
23331
23441
|
|
|
23442
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
23443
|
+
/// @group window
|
|
23332
23444
|
$kendo-window-actions-gap: null !default;
|
|
23333
|
-
|
|
23445
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
23446
|
+
/// @group window
|
|
23334
23447
|
$kendo-window-action-opacity: null !default;
|
|
23448
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
23449
|
+
/// @group window
|
|
23335
23450
|
$kendo-window-action-hover-opacity: null !default;
|
|
23336
23451
|
|
|
23452
|
+
/// The horizontal padding of the content of the Window.
|
|
23453
|
+
/// @group window
|
|
23337
23454
|
$kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
23455
|
+
/// The vertical padding of the content of the Window.
|
|
23456
|
+
/// @group window
|
|
23338
23457
|
$kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
23339
23458
|
|
|
23459
|
+
/// The horizontal padding of the Window action buttons.
|
|
23460
|
+
/// @group window
|
|
23340
23461
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
23462
|
+
/// The vertical padding of the Window action buttons.
|
|
23463
|
+
/// @group window
|
|
23341
23464
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
23465
|
+
/// The width of the top border of the Window action buttons.
|
|
23466
|
+
/// @group window
|
|
23342
23467
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
23343
23468
|
|
|
23469
|
+
/// The background color of the Window.
|
|
23470
|
+
/// @group window
|
|
23344
23471
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
23472
|
+
/// The text color of the Window.
|
|
23473
|
+
/// @group window
|
|
23345
23474
|
$kendo-window-text: $kendo-component-text !default;
|
|
23475
|
+
/// The border color of the Window.
|
|
23476
|
+
/// @group window
|
|
23346
23477
|
$kendo-window-border: $kendo-component-border !default;
|
|
23478
|
+
/// The box shadow of the Window.
|
|
23479
|
+
/// @group window
|
|
23480
|
+
$kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
|
|
23481
|
+
/// The box shadow of the focused Window.
|
|
23482
|
+
/// @group window
|
|
23483
|
+
$kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
|
|
23347
23484
|
|
|
23485
|
+
/// The background color of the Window titlebar.
|
|
23486
|
+
/// @group window
|
|
23348
23487
|
$kendo-window-titlebar-bg: $kendo-component-header-bg !default;
|
|
23488
|
+
/// The text color of the Window titlebar.
|
|
23489
|
+
/// @group window
|
|
23349
23490
|
$kendo-window-titlebar-text: $kendo-component-header-text !default;
|
|
23491
|
+
/// The border color of the Window titlebar.
|
|
23492
|
+
/// @group window
|
|
23350
23493
|
$kendo-window-titlebar-border: $kendo-component-header-border !default;
|
|
23494
|
+
/// The background gradient of the Window titlebar.
|
|
23495
|
+
/// @group window
|
|
23351
23496
|
$kendo-window-titlebar-gradient: $kendo-component-header-gradient !default;
|
|
23352
23497
|
|
|
23353
|
-
|
|
23354
|
-
|
|
23355
|
-
|
|
23498
|
+
/// The map of the width for the different Window sizes.
|
|
23499
|
+
/// @group window
|
|
23356
23500
|
$kendo-window-sizes: (
|
|
23357
23501
|
sm: 300px,
|
|
23358
23502
|
md: 800px,
|
|
23359
23503
|
lg: 1200px
|
|
23360
23504
|
) !default;
|
|
23361
23505
|
|
|
23362
|
-
///
|
|
23506
|
+
/// The theme colors map for the Window.
|
|
23363
23507
|
/// @group window
|
|
23364
23508
|
$kendo-window-theme-colors: (
|
|
23365
23509
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -26266,55 +26410,56 @@ $_kendo-module-meta: (
|
|
|
26266
26410
|
|
|
26267
26411
|
// Component
|
|
26268
26412
|
// #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
|
|
26269
|
-
//
|
|
26413
|
+
// ListBox
|
|
26270
26414
|
|
|
26271
|
-
///
|
|
26415
|
+
/// The spacing between the ListBox elements.
|
|
26272
26416
|
/// @group listbox
|
|
26273
26417
|
$kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
26274
|
-
///
|
|
26418
|
+
/// The spacing between the ListBox buttons.
|
|
26275
26419
|
/// @group listbox
|
|
26276
26420
|
$kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
26277
|
-
///
|
|
26421
|
+
/// The width of the ListBox.
|
|
26278
26422
|
/// @group listbox
|
|
26279
26423
|
$kendo-listbox-width: 10em !default;
|
|
26280
|
-
///
|
|
26424
|
+
/// The height of the ListBox.
|
|
26281
26425
|
/// @group listbox
|
|
26282
26426
|
$kendo-listbox-default-height: 200px !default;
|
|
26283
|
-
///
|
|
26427
|
+
/// The width of the border around the ListBox.
|
|
26284
26428
|
/// @group listbox
|
|
26285
26429
|
$kendo-listbox-border-width: 1px !default;
|
|
26286
|
-
///
|
|
26430
|
+
/// The font family of the ListBox.
|
|
26287
26431
|
/// @group listbox
|
|
26288
26432
|
$kendo-listbox-font-family: $kendo-font-family !default;
|
|
26289
|
-
///
|
|
26433
|
+
/// The font size of the ListBox.
|
|
26290
26434
|
/// @group listbox
|
|
26291
26435
|
$kendo-listbox-font-size: $kendo-font-size-md !default;
|
|
26292
|
-
///
|
|
26436
|
+
/// The line height of the ListBox.
|
|
26293
26437
|
/// @group listbox
|
|
26294
26438
|
$kendo-listbox-line-height: $kendo-line-height-md !default;
|
|
26295
|
-
|
|
26296
|
-
///
|
|
26297
|
-
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
26298
|
-
/// Text color of the listbox.
|
|
26439
|
+
|
|
26440
|
+
/// The text color of the ListBox.
|
|
26299
26441
|
/// @group listbox
|
|
26300
26442
|
$kendo-listbox-text: $kendo-component-text !default;
|
|
26301
|
-
///
|
|
26443
|
+
/// The background color of the ListBox.
|
|
26444
|
+
/// @group listbox
|
|
26445
|
+
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
26446
|
+
/// The border color of the ListBox.
|
|
26302
26447
|
/// @group listbox
|
|
26303
26448
|
$kendo-listbox-border: $kendo-component-border !default;
|
|
26304
26449
|
|
|
26305
|
-
///
|
|
26450
|
+
/// The inline padding of the ListBox item.
|
|
26306
26451
|
/// @group listbox
|
|
26307
26452
|
$kendo-listbox-item-padding-x: null !default;
|
|
26308
|
-
///
|
|
26453
|
+
/// The block padding of the ListBox item.
|
|
26309
26454
|
/// @group listbox
|
|
26310
26455
|
$kendo-listbox-item-padding-y: null !default;
|
|
26311
26456
|
|
|
26312
|
-
///
|
|
26313
|
-
/// @group listbox
|
|
26314
|
-
$kendo-listbox-drop-hint-border-width: null !default;
|
|
26315
|
-
/// Width of the drop hint.
|
|
26457
|
+
/// The width of the ListBox drop hint.
|
|
26316
26458
|
/// @group listbox
|
|
26317
26459
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
26460
|
+
/// The width of the border around the ListBox drop hint.
|
|
26461
|
+
/// @group listbox
|
|
26462
|
+
$kendo-listbox-drop-hint-border-width: null !default;
|
|
26318
26463
|
|
|
26319
26464
|
// #endregion
|
|
26320
26465
|
// #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
|
|
@@ -26492,77 +26637,78 @@ $_kendo-module-meta: (
|
|
|
26492
26637
|
|
|
26493
26638
|
// Component
|
|
26494
26639
|
// #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
|
|
26495
|
-
//
|
|
26640
|
+
// ProgressBar
|
|
26496
26641
|
|
|
26497
|
-
///
|
|
26642
|
+
/// The height of the ProgressBar.
|
|
26498
26643
|
/// @group progressbar
|
|
26499
26644
|
$kendo-progressbar-height: 22px !default;
|
|
26500
|
-
///
|
|
26645
|
+
/// The horizontal width of the ProgressBar.
|
|
26501
26646
|
/// @group progressbar
|
|
26502
26647
|
$kendo-progressbar-horizontal-width: 100% !default;
|
|
26503
|
-
///
|
|
26648
|
+
/// The animation timing of the ProgressBar.
|
|
26504
26649
|
/// @group progressbar
|
|
26505
26650
|
$kendo-progressbar-animation-timing: 1s linear infinite !default;
|
|
26506
|
-
///
|
|
26651
|
+
/// The width of the border around the ProgressBar.
|
|
26507
26652
|
/// @group progressbar
|
|
26508
26653
|
$kendo-progressbar-border-width: 0px !default;
|
|
26509
|
-
///
|
|
26654
|
+
/// The font family of the ProgressBar.
|
|
26510
26655
|
/// @group progressbar
|
|
26511
26656
|
$kendo-progressbar-font-family: $kendo-font-family !default;
|
|
26512
|
-
///
|
|
26657
|
+
/// The font size of the ProgressBar.
|
|
26513
26658
|
/// @group progressbar
|
|
26514
26659
|
$kendo-progressbar-font-size: $kendo-font-size-sm !default;
|
|
26515
|
-
///
|
|
26660
|
+
/// The line height of the ProgressBar.
|
|
26516
26661
|
/// @group progressbar
|
|
26517
26662
|
$kendo-progressbar-line-height: 1 !default;
|
|
26518
|
-
|
|
26663
|
+
|
|
26664
|
+
/// The background color of the ProgressBar.
|
|
26519
26665
|
/// @group progressbar
|
|
26520
26666
|
$kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
|
|
26521
|
-
///
|
|
26667
|
+
/// The text color of the ProgressBar.
|
|
26522
26668
|
/// @group progressbar
|
|
26523
26669
|
$kendo-progressbar-text: $kendo-component-text !default;
|
|
26524
|
-
///
|
|
26670
|
+
/// The border color of the ProgressBar.
|
|
26525
26671
|
/// @group progressbar
|
|
26526
26672
|
$kendo-progressbar-border: $kendo-component-border !default;
|
|
26527
|
-
///
|
|
26673
|
+
/// The background gradient of the ProgressBar.
|
|
26528
26674
|
/// @group progressbar
|
|
26529
26675
|
$kendo-progressbar-gradient: null !default;
|
|
26530
26676
|
|
|
26531
|
-
///
|
|
26677
|
+
/// The progress background color of the ProgressBar.
|
|
26532
26678
|
/// @group progressbar
|
|
26533
26679
|
$kendo-progressbar-value-bg: $kendo-color-primary !default;
|
|
26534
|
-
///
|
|
26680
|
+
/// The progress text color of the ProgressBar.
|
|
26535
26681
|
/// @group progressbar
|
|
26536
26682
|
$kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
|
|
26537
|
-
///
|
|
26683
|
+
/// The progress border color of the ProgressBar.
|
|
26538
26684
|
/// @group progressbar
|
|
26539
26685
|
$kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
|
|
26540
|
-
///
|
|
26686
|
+
/// The progress background gradient of the ProgressBar.
|
|
26541
26687
|
/// @group progressbar
|
|
26542
26688
|
$kendo-progressbar-value-gradient: null !default;
|
|
26543
26689
|
|
|
26544
|
-
///
|
|
26690
|
+
/// The background color of the indeterminate ProgressBar.
|
|
26545
26691
|
/// @group progressbar
|
|
26546
26692
|
$kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
|
|
26547
|
-
///
|
|
26693
|
+
/// The text color of the indeterminate ProgressBar.
|
|
26548
26694
|
/// @group progressbar
|
|
26549
26695
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
26550
|
-
///
|
|
26696
|
+
/// The border color of the indeterminate ProgressBar.
|
|
26551
26697
|
/// @group progressbar
|
|
26552
26698
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
|
|
26553
|
-
///
|
|
26699
|
+
/// The background gradient of the indeterminate ProgressBar.
|
|
26554
26700
|
/// @group progressbar
|
|
26555
26701
|
$kendo-progressbar-indeterminate-gradient: null !default;
|
|
26556
26702
|
|
|
26557
|
-
///
|
|
26703
|
+
/// The border color of the chunk ProgressBar.
|
|
26558
26704
|
/// @group progressbar
|
|
26559
26705
|
$kendo-progressbar-chunk-border: $kendo-body-bg !default;
|
|
26560
26706
|
|
|
26561
26707
|
// Circular Progressbar
|
|
26562
|
-
///
|
|
26708
|
+
/// The arc stroke color of the circular ProgressBar.
|
|
26563
26709
|
/// @group progressbar
|
|
26564
26710
|
$kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
|
|
26565
|
-
///
|
|
26711
|
+
/// The scale stroke background color of the circular ProgressBar.
|
|
26566
26712
|
/// @group progressbar
|
|
26567
26713
|
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
26568
26714
|
|
|
@@ -29919,15 +30065,32 @@ $_kendo-module-meta: (
|
|
|
29919
30065
|
|
|
29920
30066
|
// Component
|
|
29921
30067
|
// #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
|
|
29922
|
-
//
|
|
30068
|
+
// ColorPalette
|
|
30069
|
+
|
|
30070
|
+
/// The font family of the ColorPalette.
|
|
30071
|
+
/// @group colorpalette
|
|
29923
30072
|
$kendo-color-palette-font-family: $kendo-font-family !default;
|
|
30073
|
+
/// The font size of the ColorPalette.
|
|
30074
|
+
/// @group colorpalette
|
|
29924
30075
|
$kendo-color-palette-font-size: $kendo-font-size-md !default;
|
|
30076
|
+
/// The line height of the ColorPalette.
|
|
30077
|
+
/// @group colorpalette
|
|
29925
30078
|
$kendo-color-palette-line-height: 0 !default;
|
|
29926
30079
|
|
|
30080
|
+
/// The width of the ColorPalette tile.
|
|
30081
|
+
/// @group colorpalette
|
|
29927
30082
|
$kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
|
|
30083
|
+
/// The height of the ColorPalette tile.
|
|
30084
|
+
/// @group colorpalette
|
|
29928
30085
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
30086
|
+
/// The shadow of the ColorPalette focused tile.
|
|
30087
|
+
/// @group colorpalette
|
|
29929
30088
|
$kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
30089
|
+
/// The shadow of the ColorPalette hovered tile.
|
|
30090
|
+
/// @group colorpalette
|
|
29930
30091
|
$kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
30092
|
+
/// The shadow of the ColorPalette selected tile.
|
|
30093
|
+
/// @group colorpalette
|
|
29931
30094
|
$kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
|
|
29932
30095
|
|
|
29933
30096
|
// #endregion
|
|
@@ -30220,60 +30383,140 @@ $_kendo-module-meta: (
|
|
|
30220
30383
|
// File already imported_once. Skipping output.
|
|
30221
30384
|
// #endregion
|
|
30222
30385
|
|
|
30223
|
-
|
|
30224
30386
|
// ColorGradient
|
|
30387
|
+
|
|
30388
|
+
/// The spacer of the ColorGradient.
|
|
30389
|
+
/// @group cologradient
|
|
30225
30390
|
$kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
30226
30391
|
|
|
30392
|
+
/// The width of the ColorGradient.
|
|
30393
|
+
/// @group cologradient
|
|
30227
30394
|
$kendo-color-gradient-width: 272px !default;
|
|
30395
|
+
/// The width of the border around the ColorGradient.
|
|
30396
|
+
/// @group cologradient
|
|
30228
30397
|
$kendo-color-gradient-border-width: 1px !default;
|
|
30398
|
+
/// The border radius of the ColorGradient.
|
|
30399
|
+
/// @group cologradient
|
|
30229
30400
|
$kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
|
|
30401
|
+
/// The vertical padding of the ColorGradient.
|
|
30402
|
+
/// @group cologradient
|
|
30230
30403
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
30404
|
+
/// The horizontal padding of the ColorGradient.
|
|
30405
|
+
/// @group cologradient
|
|
30231
30406
|
$kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
|
|
30407
|
+
/// The spacing between the sections of the ColorGradient.
|
|
30408
|
+
/// @group cologradient
|
|
30232
30409
|
$kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
|
|
30410
|
+
/// The font family of the ColorGradient.
|
|
30411
|
+
/// @group cologradient
|
|
30233
30412
|
$kendo-color-gradient-font-family: $kendo-font-family !default;
|
|
30413
|
+
/// The font size of the ColorGradient.
|
|
30414
|
+
/// @group cologradient
|
|
30234
30415
|
$kendo-color-gradient-font-size: $kendo-font-size-md !default;
|
|
30416
|
+
/// The line height of the ColorGradient.
|
|
30417
|
+
/// @group cologradient
|
|
30235
30418
|
$kendo-color-gradient-line-height: $kendo-line-height-md !default;
|
|
30236
|
-
|
|
30419
|
+
/// The text color of the ColorGradient.
|
|
30420
|
+
/// @group cologradient
|
|
30237
30421
|
$kendo-color-gradient-text: $kendo-component-text !default;
|
|
30422
|
+
/// The background color of the ColorGradient.
|
|
30423
|
+
/// @group cologradient
|
|
30424
|
+
$kendo-color-gradient-bg: $kendo-component-bg !default;
|
|
30425
|
+
/// The border color of the ColorGradient.
|
|
30426
|
+
/// @group cologradient
|
|
30238
30427
|
$kendo-color-gradient-border: $kendo-component-border !default;
|
|
30239
30428
|
|
|
30429
|
+
/// The border color of the focused ColorGradient.
|
|
30430
|
+
/// @group cologradient
|
|
30240
30431
|
$kendo-color-gradient-focus-border: null !default;
|
|
30432
|
+
/// The box shadow of the focused ColorGradient.
|
|
30433
|
+
/// @group cologradient
|
|
30241
30434
|
$kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
30242
30435
|
|
|
30243
|
-
|
|
30436
|
+
/// The border radius of the ColorGradient canvas.
|
|
30437
|
+
/// @group cologradient
|
|
30244
30438
|
$kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
30439
|
+
/// The spacing between the items of the ColorGradient canvas.
|
|
30440
|
+
/// @group cologradient
|
|
30245
30441
|
$kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
|
|
30442
|
+
/// The height the ColorGradient canvas hsv rectangle.
|
|
30443
|
+
/// @group cologradient
|
|
30246
30444
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
30247
30445
|
|
|
30446
|
+
/// The width of the ColorGradient slider.
|
|
30447
|
+
/// @group cologradient
|
|
30248
30448
|
$kendo-color-gradient-slider-track-size: 10px !default;
|
|
30449
|
+
/// The border radius of the ColorGradient slider.
|
|
30450
|
+
/// @group cologradient
|
|
30249
30451
|
$kendo-color-gradient-slider-border-radius: 10px !default;
|
|
30452
|
+
/// The width of the border around the ColorGradient slider drag handle.
|
|
30453
|
+
/// @group cologradient
|
|
30250
30454
|
$kendo-color-gradient-slider-draghandle-border-width: 3px !default;
|
|
30251
30455
|
|
|
30456
|
+
/// The height of the ColorGradient vertical slider.
|
|
30457
|
+
/// @group cologradient
|
|
30252
30458
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
30459
|
+
/// The width of the ColorGradient horizontal slider.
|
|
30460
|
+
/// @group cologradient
|
|
30253
30461
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
30254
30462
|
|
|
30463
|
+
/// The width of the ColorGradient canvas drag handle.
|
|
30464
|
+
/// @group cologradient
|
|
30255
30465
|
$kendo-color-gradient-draghandle-width: 14px !default;
|
|
30466
|
+
/// The height of the ColorGradient canvas drag handle.
|
|
30467
|
+
/// @group cologradient
|
|
30256
30468
|
$kendo-color-gradient-draghandle-height: 14px !default;
|
|
30469
|
+
/// The width of the border around the ColorGradient canvas drag handle.
|
|
30470
|
+
/// @group cologradient
|
|
30257
30471
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
30472
|
+
/// The border radius of the ColorGradient canvas drag handle.
|
|
30473
|
+
/// @group cologradient
|
|
30258
30474
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
30259
|
-
|
|
30475
|
+
/// The text color of the ColorGradient canvas drag handle.
|
|
30476
|
+
/// @group cologradient
|
|
30260
30477
|
$kendo-color-gradient-draghandle-text: null !default;
|
|
30478
|
+
/// The background color of the ColorGradient canvas drag handle.
|
|
30479
|
+
/// @group cologradient
|
|
30480
|
+
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
30481
|
+
/// The color of the border around the ColorGradient canvas drag handle.
|
|
30482
|
+
/// @group cologradient
|
|
30261
30483
|
$kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
|
|
30484
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
30485
|
+
/// @group cologradient
|
|
30262
30486
|
$kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
|
|
30487
|
+
/// The box shadow of the focused ColorGradient canvas drag handle.
|
|
30488
|
+
/// @group cologradient
|
|
30263
30489
|
$kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
30490
|
+
/// The box shadow of the hovered ColorGradient canvas drag handle.
|
|
30491
|
+
/// @group cologradient
|
|
30264
30492
|
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
|
|
30265
30493
|
|
|
30494
|
+
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
30495
|
+
/// @group cologradient
|
|
30266
30496
|
$kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
|
|
30497
|
+
/// The horizontal margin of the ColorGradient canvas drag handle.
|
|
30498
|
+
/// @group cologradient
|
|
30267
30499
|
$kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
|
|
30268
30500
|
|
|
30501
|
+
/// The width of the ColorGradient input.
|
|
30502
|
+
/// @group cologradient
|
|
30269
30503
|
$kendo-color-gradient-input-width: 46px !default;
|
|
30504
|
+
/// The spacing between the ColorGradient inputs.
|
|
30505
|
+
/// @group cologradient
|
|
30270
30506
|
$kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30507
|
+
/// The spacing between the ColorGradient inputs and their labels.
|
|
30508
|
+
/// @group cologradient
|
|
30271
30509
|
$kendo-color-gradient-input-label-gap: k-math-div( $kendo-color-gradient-spacer, 3 ) !default;
|
|
30510
|
+
/// The text color of the ColorGradient input labels.
|
|
30511
|
+
/// @group cologradient
|
|
30272
30512
|
$kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
|
|
30273
30513
|
|
|
30514
|
+
/// The font weight of the ColorGradient contrast ratio text.
|
|
30515
|
+
/// @group cologradient
|
|
30274
30516
|
$kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
|
|
30517
|
+
/// The spacing between the items in the ColorGradient contrast tool.
|
|
30518
|
+
/// @group cologradient
|
|
30275
30519
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30276
|
-
|
|
30277
30520
|
// #endregion
|
|
30278
30521
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
30279
30522
|
// #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
|
|
@@ -30640,38 +30883,86 @@ $_kendo-module-meta: (
|
|
|
30640
30883
|
|
|
30641
30884
|
// Component
|
|
30642
30885
|
// #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
|
|
30643
|
-
//
|
|
30886
|
+
// ColorEditor/FlatColorPicker
|
|
30887
|
+
|
|
30888
|
+
/// The spacer of the ColorEditor.
|
|
30889
|
+
/// @group coloreditor
|
|
30644
30890
|
$kendo-color-editor-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
30645
30891
|
|
|
30892
|
+
/// The minimum width of the ColorEditor.
|
|
30893
|
+
/// @group coloreditor
|
|
30646
30894
|
$kendo-color-editor-min-width: 272px !default;
|
|
30895
|
+
/// The width of the border around the ColorEditor.
|
|
30896
|
+
/// @group coloreditor
|
|
30647
30897
|
$kendo-color-editor-border-width: 1px !default;
|
|
30898
|
+
/// The border radius of the ColorEditor.
|
|
30899
|
+
/// @group coloreditor
|
|
30648
30900
|
$kendo-color-editor-border-radius: $kendo-border-radius-md !default;
|
|
30901
|
+
/// The font family of the ColorEditor.
|
|
30902
|
+
/// @group coloreditor
|
|
30649
30903
|
$kendo-color-editor-font-family: $kendo-font-family !default;
|
|
30904
|
+
/// The font size of the ColorEditor.
|
|
30905
|
+
/// @group coloreditor
|
|
30650
30906
|
$kendo-color-editor-font-size: $kendo-font-size-md !default;
|
|
30907
|
+
/// The line height of the ColorEditor.
|
|
30908
|
+
/// @group coloreditor
|
|
30651
30909
|
$kendo-color-editor-line-height: $kendo-line-height-md !default;
|
|
30652
|
-
|
|
30910
|
+
/// The text color of the ColorEditor.
|
|
30911
|
+
/// @group coloreditor
|
|
30653
30912
|
$kendo-color-editor-text: $kendo-component-text !default;
|
|
30913
|
+
/// The background color of the ColorEditor.
|
|
30914
|
+
/// @group coloreditor
|
|
30915
|
+
$kendo-color-editor-bg: $kendo-component-bg !default;
|
|
30916
|
+
/// The border color of the ColorEditor.
|
|
30917
|
+
/// @group coloreditor
|
|
30654
30918
|
$kendo-color-editor-border: $kendo-component-border !default;
|
|
30655
30919
|
|
|
30920
|
+
/// The border color of the focused ColorEditor.
|
|
30921
|
+
/// @group coloreditor
|
|
30656
30922
|
$kendo-color-editor-focus-border: null !default;
|
|
30923
|
+
/// The box shadow of the focused ColorEditor.
|
|
30924
|
+
/// @group coloreditor
|
|
30657
30925
|
$kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
30658
30926
|
|
|
30927
|
+
/// The vertical padding of the ColorEditor header.
|
|
30928
|
+
/// @group coloreditor
|
|
30659
30929
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
30930
|
+
/// The horizontal padding of the ColorEditor header.
|
|
30931
|
+
/// @group coloreditor
|
|
30660
30932
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
30933
|
+
/// The spacing between the ColorEditor header actions.
|
|
30934
|
+
/// @group coloreditor
|
|
30661
30935
|
$kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 1.5 ) !default;
|
|
30662
30936
|
|
|
30663
|
-
|
|
30937
|
+
/// The width of the ColorEditor preview.
|
|
30938
|
+
/// @group coloreditor
|
|
30664
30939
|
$kendo-color-editor-color-preview-width: 32px !default;
|
|
30940
|
+
/// The height of the ColorEditor preview.
|
|
30941
|
+
/// @group coloreditor
|
|
30665
30942
|
$kendo-color-editor-color-preview-height: 12px !default;
|
|
30943
|
+
/// The spacing between the colors in the ColorEditor preview.
|
|
30944
|
+
/// @group coloreditor
|
|
30945
|
+
$kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30666
30946
|
|
|
30947
|
+
/// The vertical padding of the ColorEditor views container.
|
|
30948
|
+
/// @group coloreditor
|
|
30667
30949
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
30950
|
+
/// The horizontal padding of the ColorEditor views container.
|
|
30951
|
+
/// @group coloreditor
|
|
30668
30952
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
30953
|
+
/// The spacing of the ColorEditor views container.
|
|
30954
|
+
/// @group coloreditor
|
|
30669
30955
|
$kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
|
|
30670
30956
|
|
|
30957
|
+
/// The outline color of the focused ColorGradient.
|
|
30958
|
+
/// @group coloreditor
|
|
30671
30959
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
30960
|
+
/// The outline width of the focused ColorGradient.
|
|
30961
|
+
/// @group coloreditor
|
|
30672
30962
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
30963
|
+
/// The outline offset of the focused ColorGradient.
|
|
30964
|
+
/// @group coloreditor
|
|
30673
30965
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
30674
|
-
|
|
30675
30966
|
// #endregion
|
|
30676
30967
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
30677
30968
|
// #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
|
|
@@ -32302,7 +32593,7 @@ $kendo-treeview-md-line-height: $kendo-line-height-md !default;
|
|
|
32302
32593
|
$kendo-treeview-lg-line-height: $kendo-line-height-lg !default;
|
|
32303
32594
|
/// The indentation of child groups in the TreeView.
|
|
32304
32595
|
/// @group treeview
|
|
32305
|
-
$kendo-treeview-indent:
|
|
32596
|
+
$kendo-treeview-indent: 24px !default;
|
|
32306
32597
|
|
|
32307
32598
|
/// The horizontal padding of the TreeView items.
|
|
32308
32599
|
/// @group treeview
|
|
@@ -32335,6 +32626,25 @@ $kendo-treeview-item-border-width: 0px !default;
|
|
|
32335
32626
|
/// @group treeview
|
|
32336
32627
|
$kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
|
|
32337
32628
|
|
|
32629
|
+
/// The horizontal padding of the checkbox in the small TreeView.
|
|
32630
|
+
/// @group treeview
|
|
32631
|
+
$kendo-treeview-sm-checkbox-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
32632
|
+
/// The horizontal padding of the checkbox in the medium TreeView.
|
|
32633
|
+
/// @group treeview
|
|
32634
|
+
$kendo-treeview-md-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
32635
|
+
/// The horizontal padding of the checkbox in the large TreeView.
|
|
32636
|
+
/// @group treeview
|
|
32637
|
+
$kendo-treeview-lg-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
32638
|
+
/// The vertical padding of the checkbox in the small TreeView.
|
|
32639
|
+
/// @group treeview
|
|
32640
|
+
$kendo-treeview-sm-checkbox-padding-y: k-map-get( $kendo-spacing, .5 ) !default;
|
|
32641
|
+
/// The vertical padding of the checkbox in the medium TreeView.
|
|
32642
|
+
/// @group treeview
|
|
32643
|
+
$kendo-treeview-md-checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y !default;
|
|
32644
|
+
/// The vertical padding of the checkbox in the large TreeView.
|
|
32645
|
+
/// @group treeview
|
|
32646
|
+
$kendo-treeview-lg-checkbox-padding-y: null !default;
|
|
32647
|
+
|
|
32338
32648
|
|
|
32339
32649
|
/// The sizes map of the TreeView.
|
|
32340
32650
|
/// @group treeview
|
|
@@ -32343,19 +32653,25 @@ $kendo-treeview-sizes: (
|
|
|
32343
32653
|
font-size: $kendo-treeview-sm-font-size,
|
|
32344
32654
|
line-height: $kendo-treeview-sm-line-height,
|
|
32345
32655
|
item-padding-x: $kendo-treeview-sm-item-padding-x,
|
|
32346
|
-
item-padding-y: $kendo-treeview-sm-item-padding-y
|
|
32656
|
+
item-padding-y: $kendo-treeview-sm-item-padding-y,
|
|
32657
|
+
checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x,
|
|
32658
|
+
checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y
|
|
32347
32659
|
),
|
|
32348
32660
|
md: (
|
|
32349
32661
|
font-size: $kendo-treeview-md-font-size,
|
|
32350
32662
|
line-height: $kendo-treeview-md-line-height,
|
|
32351
32663
|
item-padding-x: $kendo-treeview-md-item-padding-x,
|
|
32352
|
-
item-padding-y: $kendo-treeview-md-item-padding-y
|
|
32664
|
+
item-padding-y: $kendo-treeview-md-item-padding-y,
|
|
32665
|
+
checkbox-padding-x: $kendo-treeview-md-checkbox-padding-x,
|
|
32666
|
+
checkbox-padding-y: $kendo-treeview-md-checkbox-padding-y
|
|
32353
32667
|
),
|
|
32354
32668
|
lg: (
|
|
32355
32669
|
font-size: $kendo-treeview-lg-font-size,
|
|
32356
32670
|
line-height: $kendo-treeview-lg-line-height,
|
|
32357
32671
|
item-padding-x: $kendo-treeview-lg-item-padding-x,
|
|
32358
|
-
item-padding-y: $kendo-treeview-lg-item-padding-y
|
|
32672
|
+
item-padding-y: $kendo-treeview-lg-item-padding-y,
|
|
32673
|
+
checkbox-padding-x: $kendo-treeview-lg-checkbox-padding-x,
|
|
32674
|
+
checkbox-padding-y: $kendo-treeview-lg-checkbox-padding-y
|
|
32359
32675
|
)
|
|
32360
32676
|
) !default;
|
|
32361
32677
|
|
|
@@ -32433,6 +32749,7 @@ $kendo-treeview-loadmore-focus-border: null !default;
|
|
|
32433
32749
|
/// @group treeview
|
|
32434
32750
|
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
32435
32751
|
|
|
32752
|
+
|
|
32436
32753
|
// #endregion
|
|
32437
32754
|
// #region @import "./_layout.scss"; -> scss/treeview/_layout.scss
|
|
32438
32755
|
// #region @import "@progress/kendo-theme-default/scss/treeview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/treeview/_layout.scss
|
|
@@ -32511,13 +32828,18 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
32511
32828
|
|
|
32512
32829
|
// Treeview toggle
|
|
32513
32830
|
.k-treeview-toggle {
|
|
32514
|
-
margin-
|
|
32831
|
+
margin-inline-start: -$kendo-treeview-indent;
|
|
32515
32832
|
flex: none;
|
|
32516
32833
|
display: inline-flex;
|
|
32517
32834
|
flex-flow: row nowrap;
|
|
32518
32835
|
align-items: center;
|
|
32519
32836
|
cursor: pointer;
|
|
32520
32837
|
}
|
|
32838
|
+
.k-treeview-toggle .k-icon,
|
|
32839
|
+
.k-treeview-toggle .k-svg-icon {
|
|
32840
|
+
padding: $kendo-icon-padding;
|
|
32841
|
+
box-sizing: content-box;
|
|
32842
|
+
}
|
|
32521
32843
|
|
|
32522
32844
|
|
|
32523
32845
|
// Loading icon
|
|
@@ -32529,8 +32851,6 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
32529
32851
|
// Checkbox
|
|
32530
32852
|
.k-treeview .k-checkbox-wrap,
|
|
32531
32853
|
.k-treeview .k-checkbox-wrapper {
|
|
32532
|
-
margin-left: $kendo-icon-spacing;
|
|
32533
|
-
margin-right: $kendo-icon-spacing;
|
|
32534
32854
|
align-self: center;
|
|
32535
32855
|
}
|
|
32536
32856
|
|
|
@@ -32586,12 +32906,6 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
32586
32906
|
padding-right: $kendo-treeview-indent;
|
|
32587
32907
|
}
|
|
32588
32908
|
|
|
32589
|
-
// Treeview toggle
|
|
32590
|
-
.k-treeview-toggle {
|
|
32591
|
-
margin-left: 0;
|
|
32592
|
-
margin-right: -$kendo-treeview-indent;
|
|
32593
|
-
}
|
|
32594
|
-
|
|
32595
32909
|
// Loading
|
|
32596
32910
|
.k-treeview-loading {
|
|
32597
32911
|
margin-right: 0;
|
|
@@ -32616,6 +32930,8 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
32616
32930
|
$_line-height: k-map-get( $size-props, line-height);
|
|
32617
32931
|
$_item-padding-x: k-map-get( $size-props, item-padding-x);
|
|
32618
32932
|
$_item-padding-y: k-map-get( $size-props, item-padding-y);
|
|
32933
|
+
$_checkbox-padding-x: k-map-get( $size-props, checkbox-padding-x );
|
|
32934
|
+
$_checkbox-padding-y: k-map-get( $size-props, checkbox-padding-y );
|
|
32619
32935
|
|
|
32620
32936
|
.k-treeview-#{$size} {
|
|
32621
32937
|
font-size: $_font-size;
|
|
@@ -32625,6 +32941,11 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
32625
32941
|
padding-block: $_item-padding-y;
|
|
32626
32942
|
padding-inline: $_item-padding-x;
|
|
32627
32943
|
}
|
|
32944
|
+
|
|
32945
|
+
.k-checkbox-wrap {
|
|
32946
|
+
padding-block: $_checkbox-padding-y;
|
|
32947
|
+
padding-inline: $_checkbox-padding-x;
|
|
32948
|
+
}
|
|
32628
32949
|
}
|
|
32629
32950
|
}
|
|
32630
32951
|
|
|
@@ -32785,13 +33106,12 @@ $kendo-dropdowntree-popup-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
32785
33106
|
.k-popup-dropdowntree, // remove legacy class once updated in components
|
|
32786
33107
|
.k-dropdowntree-popup,
|
|
32787
33108
|
.k-multiselecttree-popup {
|
|
32788
|
-
|
|
32789
|
-
|
|
32790
|
-
|
|
32791
|
-
padding: $kendo-dropdowntree-popup-padding-y $kendo-dropdowntree-popup-padding-x 0;
|
|
33109
|
+
.k-treeview {
|
|
33110
|
+
padding-block: k-math-div( $kendo-dropdowntree-popup-padding-y, 2 );
|
|
33111
|
+
padding-inline: k-math-div( $kendo-dropdowntree-popup-padding-x, 2 );
|
|
32792
33112
|
}
|
|
32793
33113
|
|
|
32794
|
-
.k-
|
|
33114
|
+
.k-check-all {
|
|
32795
33115
|
padding-block: $kendo-dropdowntree-popup-padding-y;
|
|
32796
33116
|
padding-inline: $kendo-dropdowntree-popup-padding-x;
|
|
32797
33117
|
}
|
|
@@ -34127,49 +34447,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
|
|
|
34127
34447
|
// #region @import "./_variables.scss"; -> scss/upload/_variables.scss
|
|
34128
34448
|
// Upload
|
|
34129
34449
|
|
|
34450
|
+
/// The width of the border around the Upload.
|
|
34451
|
+
/// @group upload
|
|
34130
34452
|
$kendo-upload-border-width: 1px !default;
|
|
34453
|
+
/// The font family of the Upload.
|
|
34454
|
+
/// @group upload
|
|
34131
34455
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
34456
|
+
/// The font size of the Upload.
|
|
34457
|
+
/// @group upload
|
|
34132
34458
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
34459
|
+
/// The line height of the Upload.
|
|
34460
|
+
/// @group upload
|
|
34133
34461
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
34462
|
+
/// The maximum height of the list with uploaded items.
|
|
34463
|
+
/// @group upload
|
|
34134
34464
|
$kendo-upload-max-height: 300px !default;
|
|
34135
34465
|
|
|
34136
|
-
|
|
34466
|
+
/// The text color of the Upload.
|
|
34467
|
+
/// @group upload
|
|
34137
34468
|
$kendo-upload-text: $kendo-component-text !default;
|
|
34469
|
+
/// The background color of the Upload.
|
|
34470
|
+
/// @group upload
|
|
34471
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
34472
|
+
/// The border color of the Upload.
|
|
34473
|
+
/// @group upload
|
|
34138
34474
|
$kendo-upload-border: $kendo-component-border !default;
|
|
34139
34475
|
|
|
34476
|
+
/// The horizontal padding of the Upload dropzone.
|
|
34477
|
+
/// @group upload
|
|
34140
34478
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34479
|
+
/// The vertical padding of the Upload dropzone.
|
|
34480
|
+
/// @group upload
|
|
34141
34481
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34142
|
-
|
|
34482
|
+
/// The text color of the Upload dropzone.
|
|
34483
|
+
/// @group upload
|
|
34143
34484
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
34485
|
+
/// The background color of the Upload dropzone.
|
|
34486
|
+
/// @group upload
|
|
34487
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
34488
|
+
/// The border color of the Upload dropzone.
|
|
34489
|
+
/// @group upload
|
|
34144
34490
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
34491
|
+
/// The background color of the hovered Upload dropzone.
|
|
34492
|
+
/// @group upload
|
|
34145
34493
|
$kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
|
|
34146
34494
|
|
|
34495
|
+
/// The text color of the Upload status message.
|
|
34496
|
+
/// @group upload
|
|
34147
34497
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
34498
|
+
/// The opacity of the Upload status message.
|
|
34499
|
+
/// @group upload
|
|
34148
34500
|
$kendo-upload-status-text-opacity: null !default;
|
|
34149
34501
|
|
|
34502
|
+
/// The horizontal padding of an uploaded item.
|
|
34503
|
+
/// @group upload
|
|
34150
34504
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34505
|
+
/// The vertical padding of an uploaded item.
|
|
34506
|
+
/// @group upload
|
|
34151
34507
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34152
34508
|
|
|
34509
|
+
/// The vertical spacing between uploaded batch items.
|
|
34510
|
+
/// @group upload
|
|
34153
34511
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
34154
34512
|
|
|
34513
|
+
/// The font size of the Upload validation message.
|
|
34514
|
+
/// @group upload
|
|
34155
34515
|
$kendo-upload-validation-font-size: 11px !default;
|
|
34516
|
+
/// The horizontal spacing of the Upload status icon.
|
|
34517
|
+
/// @group upload
|
|
34156
34518
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
34519
|
+
/// The color of the uploaded items icon.
|
|
34520
|
+
/// @group upload
|
|
34157
34521
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
34158
34522
|
|
|
34159
|
-
|
|
34160
|
-
|
|
34161
|
-
$kendo-upload-item-image-border: 0px !default; // TODO: remove
|
|
34162
|
-
|
|
34523
|
+
/// The thickness of the Upload progress bar.
|
|
34524
|
+
/// @group upload
|
|
34163
34525
|
$kendo-upload-progress-thickness: 2px !default;
|
|
34526
|
+
/// The background color of the Upload progress bar.
|
|
34527
|
+
/// @group upload
|
|
34164
34528
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
34165
34529
|
|
|
34166
|
-
|
|
34530
|
+
/// The success text color of the Upload.
|
|
34531
|
+
/// @group upload
|
|
34167
34532
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
34533
|
+
/// The success background color of the Upload progress bar.
|
|
34534
|
+
/// @group upload
|
|
34535
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
34168
34536
|
|
|
34169
|
-
|
|
34537
|
+
/// The error text color of the Upload.
|
|
34538
|
+
/// @group upload
|
|
34170
34539
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
34171
|
-
|
|
34540
|
+
/// The error background color of the Upload progress bar.
|
|
34541
|
+
/// @group upload
|
|
34542
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
34172
34543
|
|
|
34544
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
34545
|
+
/// @group upload
|
|
34173
34546
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
34174
34547
|
|
|
34175
34548
|
// #endregion
|
|
@@ -34607,29 +34980,60 @@ $_kendo-module-meta: (
|
|
|
34607
34980
|
|
|
34608
34981
|
// Component
|
|
34609
34982
|
// #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
|
|
34610
|
-
//
|
|
34611
|
-
|
|
34983
|
+
// AppBar
|
|
34984
|
+
|
|
34985
|
+
/// The horizontal margin of the AppBar.
|
|
34986
|
+
/// @group appbar
|
|
34612
34987
|
$kendo-appbar-margin-x: null !default;
|
|
34613
|
-
|
|
34988
|
+
/// The vertical margin of the AppBar.
|
|
34989
|
+
/// @group appbar
|
|
34990
|
+
$kendo-appbar-margin-y: null !default;
|
|
34991
|
+
/// The horizontal padding of the AppBar.
|
|
34992
|
+
/// @group appbar
|
|
34614
34993
|
$kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34994
|
+
/// The vertical padding of the AppBar.
|
|
34995
|
+
/// @group appbar
|
|
34996
|
+
$kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34997
|
+
/// The width of the border around the AppBar.
|
|
34998
|
+
/// @group appbar
|
|
34615
34999
|
$kendo-appbar-border-width: 0px !default;
|
|
34616
|
-
|
|
35000
|
+
/// The z-index of the AppBar.
|
|
35001
|
+
/// @group appbar
|
|
34617
35002
|
$kendo-appbar-zindex: 1000 !default;
|
|
34618
|
-
|
|
35003
|
+
/// The font family of the AppBar.
|
|
35004
|
+
/// @group appbar
|
|
35005
|
+
$kendo-appbar-font-family: $kendo-font-family !default;
|
|
35006
|
+
/// The font size of the AppBar.
|
|
35007
|
+
/// @group appbar
|
|
34619
35008
|
$kendo-appbar-font-size: $kendo-font-size-md !default;
|
|
35009
|
+
/// The line height of the AppBar.
|
|
35010
|
+
/// @group appbar
|
|
34620
35011
|
$kendo-appbar-line-height: $kendo-line-height-md !default;
|
|
34621
|
-
|
|
35012
|
+
|
|
35013
|
+
/// The spacing between the AppBar sections.
|
|
35014
|
+
/// @group appbar
|
|
34622
35015
|
$kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34623
35016
|
|
|
35017
|
+
/// The background color of the AppBar based on light theme color.
|
|
35018
|
+
/// @group appbar
|
|
34624
35019
|
$kendo-appbar-light-bg: $kendo-color-light !default;
|
|
35020
|
+
/// The text color of the AppBar based on light theme color.
|
|
35021
|
+
/// @group appbar
|
|
34625
35022
|
$kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
|
|
34626
35023
|
|
|
35024
|
+
/// The background color of the AppBar based on dark theme color.
|
|
35025
|
+
/// @group appbar
|
|
34627
35026
|
$kendo-appbar-dark-bg: $kendo-color-dark !default;
|
|
35027
|
+
/// The text color of the AppBar based on dark theme colorr.
|
|
35028
|
+
/// @group appbar
|
|
34628
35029
|
$kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
34629
35030
|
|
|
35031
|
+
/// The box shadow of the AppBar.
|
|
35032
|
+
/// @group appbar
|
|
34630
35033
|
$kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
|
|
35034
|
+
/// The box shadow of the AppBar with bottom position.
|
|
35035
|
+
/// @group appbar
|
|
34631
35036
|
$kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
|
|
34632
|
-
|
|
34633
35037
|
// #endregion
|
|
34634
35038
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
34635
35039
|
// #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
|
|
@@ -36334,17 +36738,31 @@ $_kendo-module-meta: (
|
|
|
36334
36738
|
// Component
|
|
36335
36739
|
// #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
|
|
36336
36740
|
// Dialog
|
|
36741
|
+
|
|
36742
|
+
/// The background color of the Dialog titlebar.
|
|
36743
|
+
/// @group dialog
|
|
36337
36744
|
$kendo-dialog-titlebar-bg: null !default;
|
|
36745
|
+
/// The text color of the Dialog titlebar.
|
|
36746
|
+
/// @group dialog
|
|
36338
36747
|
$kendo-dialog-titlebar-text: null !default;
|
|
36748
|
+
/// The border color of the Dialog titlebar.
|
|
36749
|
+
/// @group dialog
|
|
36339
36750
|
$kendo-dialog-titlebar-border: null !default;
|
|
36340
36751
|
|
|
36752
|
+
/// The horizontal padding of the Dialog action buttons.
|
|
36753
|
+
/// @group dialog
|
|
36341
36754
|
$kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
36755
|
+
/// The vertical padding of the Dialog action buttons.
|
|
36756
|
+
/// @group dialog
|
|
36342
36757
|
$kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
36758
|
+
/// The width of the top border of the Dialog action buttons.
|
|
36759
|
+
/// @group dialog
|
|
36343
36760
|
$kendo-dialog-buttongroup-border-width: 1px !default;
|
|
36344
|
-
|
|
36761
|
+
/// The spacing between the Dialog action buttons.
|
|
36762
|
+
/// @group dialog
|
|
36345
36763
|
$kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
|
|
36346
36764
|
|
|
36347
|
-
///
|
|
36765
|
+
/// The theme colors map for the Dialog.
|
|
36348
36766
|
/// @group dialog
|
|
36349
36767
|
$kendo-dialog-theme-colors: (
|
|
36350
36768
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -36968,44 +37386,43 @@ $_kendo-module-meta: (
|
|
|
36968
37386
|
// #region @import "./_variables.scss"; -> scss/notification/_variables.scss
|
|
36969
37387
|
// Notification
|
|
36970
37388
|
|
|
36971
|
-
///
|
|
37389
|
+
/// The horizontal padding of the Notification.
|
|
36972
37390
|
/// @group notification
|
|
36973
37391
|
$kendo-notification-padding-x: 8px !default;
|
|
36974
|
-
///
|
|
37392
|
+
/// The vertical padding of the Notification.
|
|
36975
37393
|
/// @group notification
|
|
36976
37394
|
$kendo-notification-padding-y: 4px !default;
|
|
36977
|
-
///
|
|
37395
|
+
/// The width of the border around the Notification.
|
|
36978
37396
|
/// @group notification
|
|
36979
37397
|
$kendo-notification-border-width: 1px !default;
|
|
36980
|
-
///
|
|
37398
|
+
/// The border radius of the Notification.
|
|
36981
37399
|
/// @group notification
|
|
36982
37400
|
$kendo-notification-border-radius: $kendo-border-radius-md !default;
|
|
36983
|
-
///
|
|
36984
|
-
/// @group notification
|
|
36985
|
-
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
36986
|
-
/// Font family of the notification.
|
|
37401
|
+
/// The font family of the Notification.
|
|
36987
37402
|
/// @group notification
|
|
36988
37403
|
$kendo-notification-font-family: $kendo-font-family !default;
|
|
36989
|
-
///
|
|
37404
|
+
/// The font size of the Notification.
|
|
36990
37405
|
/// @group notification
|
|
36991
37406
|
$kendo-notification-font-size: $kendo-font-size-sm !default;
|
|
36992
|
-
///
|
|
37407
|
+
/// The line height of the Notification.
|
|
36993
37408
|
/// @group notification
|
|
36994
37409
|
$kendo-notification-line-height: $kendo-line-height-md !default;
|
|
36995
|
-
|
|
36996
|
-
/// Horizontal spacing of the notification icon.
|
|
36997
|
-
/// @group notification
|
|
36998
|
-
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
36999
|
-
|
|
37000
|
-
/// Background color of the notification.
|
|
37410
|
+
/// The background color of the Notification.
|
|
37001
37411
|
/// @group notification
|
|
37002
37412
|
$kendo-notification-bg: $kendo-component-bg !default;
|
|
37003
|
-
///
|
|
37413
|
+
/// The text color of the Notification.
|
|
37004
37414
|
/// @group notification
|
|
37005
37415
|
$kendo-notification-text: $kendo-component-text !default;
|
|
37006
|
-
///
|
|
37416
|
+
/// The border color of the Notification.
|
|
37007
37417
|
/// @group notification
|
|
37008
37418
|
$kendo-notification-border: $kendo-component-border !default;
|
|
37419
|
+
/// The box shadow of the Notification.
|
|
37420
|
+
/// @group notification
|
|
37421
|
+
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
37422
|
+
|
|
37423
|
+
/// The horizontal spacing of the Notification icon.
|
|
37424
|
+
/// @group notification
|
|
37425
|
+
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
37009
37426
|
|
|
37010
37427
|
@function notification-theme( $colors ) {
|
|
37011
37428
|
$_theme: ();
|
|
@@ -37021,9 +37438,11 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
37021
37438
|
@return $_theme;
|
|
37022
37439
|
}
|
|
37023
37440
|
|
|
37024
|
-
///
|
|
37441
|
+
/// The theme colors map for the Notification.
|
|
37025
37442
|
/// @group notification
|
|
37026
37443
|
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
37444
|
+
/// The generated theme colors map for the Notification.
|
|
37445
|
+
/// @group notification
|
|
37027
37446
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
37028
37447
|
|
|
37029
37448
|
// #endregion
|
|
@@ -37848,37 +38267,90 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37848
38267
|
// Component
|
|
37849
38268
|
// #region @import "./_variables.scss"; -> scss/popover/_variables.scss
|
|
37850
38269
|
// Popover
|
|
38270
|
+
|
|
38271
|
+
/// The width of the border around the Popover.
|
|
38272
|
+
/// @group popover
|
|
37851
38273
|
$kendo-popover-border-width: $kendo-card-border-width !default;
|
|
38274
|
+
/// The style of the border around the Popover.
|
|
38275
|
+
/// @group popover
|
|
37852
38276
|
$kendo-popover-border-style: solid !default;
|
|
38277
|
+
/// The radius of the border around the Popover.
|
|
38278
|
+
/// @group popover
|
|
37853
38279
|
$kendo-popover-border-radius: $kendo-card-border-radius !default;
|
|
37854
|
-
|
|
38280
|
+
/// The font family of the Popover.
|
|
38281
|
+
/// @group popover
|
|
37855
38282
|
$kendo-popover-font-family: $kendo-card-font-family !default;
|
|
38283
|
+
/// The font size of the Popover.
|
|
38284
|
+
/// @group popover
|
|
38285
|
+
$kendo-popover-font-size: $kendo-card-font-size !default;
|
|
38286
|
+
/// The line height of the Popover.
|
|
38287
|
+
/// @group popover
|
|
37856
38288
|
$kendo-popover-line-height: $kendo-card-line-height !default;
|
|
37857
|
-
|
|
38289
|
+
|
|
38290
|
+
/// The text color of the Popover.
|
|
38291
|
+
/// @group popover
|
|
37858
38292
|
$kendo-popover-text: $kendo-component-text !default;
|
|
38293
|
+
/// The background color of the Popover.
|
|
38294
|
+
/// @group popover
|
|
38295
|
+
$kendo-popover-bg: $kendo-component-bg !default;
|
|
38296
|
+
/// The border color of the Popover.
|
|
38297
|
+
/// @group popover
|
|
37859
38298
|
$kendo-popover-border: $kendo-component-border !default;
|
|
38299
|
+
/// The box shadow of the Popover.
|
|
38300
|
+
/// @group popover
|
|
37860
38301
|
$kendo-popover-shadow: $kendo-popup-shadow !default;
|
|
37861
38302
|
|
|
37862
|
-
|
|
38303
|
+
/// The horizontal padding of the Popover header.
|
|
38304
|
+
/// @group popover
|
|
37863
38305
|
$kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
|
|
38306
|
+
/// The vertical padding of the Popover header.
|
|
38307
|
+
/// @group popover
|
|
38308
|
+
$kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
|
|
38309
|
+
/// The border width of the Popover header.
|
|
38310
|
+
/// @group popover
|
|
37864
38311
|
$kendo-popover-header-border-width: $kendo-card-header-border-width !default;
|
|
38312
|
+
/// The border style of the Popover header.
|
|
38313
|
+
/// @group popover
|
|
37865
38314
|
$kendo-popover-header-border-style: $kendo-popover-border-style !default;
|
|
37866
|
-
|
|
38315
|
+
/// The text color of the Popover header.
|
|
38316
|
+
/// @group popover
|
|
37867
38317
|
$kendo-popover-header-text: $kendo-card-header-text !default;
|
|
38318
|
+
/// The background color of the Popover header.
|
|
38319
|
+
/// @group popover
|
|
38320
|
+
$kendo-popover-header-bg: $kendo-card-header-bg !default;
|
|
38321
|
+
/// The border color of the Popover header.
|
|
38322
|
+
/// @group popover
|
|
37868
38323
|
$kendo-popover-header-border: $kendo-card-header-border !default;
|
|
37869
38324
|
|
|
37870
|
-
|
|
38325
|
+
/// The horizontal padding of the Popover body.
|
|
38326
|
+
/// @group popover
|
|
37871
38327
|
$kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
|
|
38328
|
+
/// The vertical padding of the Popover body.
|
|
38329
|
+
/// @group popover
|
|
38330
|
+
$kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
|
|
37872
38331
|
|
|
38332
|
+
/// The border width of the Popover actions.
|
|
38333
|
+
/// @group popover
|
|
37873
38334
|
$kendo-popover-actions-border-width: $kendo-popover-border-width !default;
|
|
37874
38335
|
|
|
38336
|
+
/// The width of the Popover callout.
|
|
38337
|
+
/// @group popover
|
|
37875
38338
|
$kendo-popover-callout-width: $kendo-card-callout-width !default;
|
|
38339
|
+
/// The height of the Popover callout.
|
|
38340
|
+
/// @group popover
|
|
37876
38341
|
$kendo-popover-callout-height: $kendo-card-callout-height !default;
|
|
38342
|
+
/// The border width of the Popover callout.
|
|
38343
|
+
/// @group popover
|
|
37877
38344
|
$kendo-popover-callout-border-width: $kendo-popover-border-width !default;
|
|
38345
|
+
/// The border style of the Popover callout.
|
|
38346
|
+
/// @group popover
|
|
37878
38347
|
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
38348
|
+
/// The background color of the Popover callout.
|
|
38349
|
+
/// @group popover
|
|
37879
38350
|
$kendo-popover-callout-bg: $kendo-popover-bg !default;
|
|
38351
|
+
/// The border color of the Popover callout.
|
|
38352
|
+
/// @group popover
|
|
37880
38353
|
$kendo-popover-callout-border: $kendo-popover-border !default;
|
|
37881
|
-
|
|
37882
38354
|
// #endregion
|
|
37883
38355
|
// #region @import "./_layout.scss"; -> scss/popover/_layout.scss
|
|
37884
38356
|
// #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
|
|
@@ -38240,35 +38712,68 @@ $_kendo-module-meta: (
|
|
|
38240
38712
|
|
|
38241
38713
|
// Component
|
|
38242
38714
|
// #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
|
|
38243
|
-
//
|
|
38715
|
+
// BottomNavigation
|
|
38716
|
+
|
|
38717
|
+
/// The horizontal padding of the BottomNavigation.
|
|
38718
|
+
/// @group bottom-navigation
|
|
38244
38719
|
$kendo-bottom-nav-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
38720
|
+
/// The vertical padding of the BottomNavigation.
|
|
38721
|
+
/// @group bottom-navigation
|
|
38245
38722
|
$kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
|
|
38723
|
+
/// The spacing between the BottomNavigation items.
|
|
38724
|
+
/// @group bottom-navigation
|
|
38246
38725
|
$kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
|
|
38726
|
+
/// The width of the border around the BottomNavigation.
|
|
38727
|
+
/// @group bottom-navigation
|
|
38247
38728
|
$kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
38248
|
-
|
|
38729
|
+
/// The font family of the BottomNavigation.
|
|
38730
|
+
/// @group bottom-navigation
|
|
38249
38731
|
$kendo-bottom-nav-font-family: $kendo-font-family !default;
|
|
38732
|
+
/// The font size of the BottomNavigation.
|
|
38733
|
+
/// @group bottom-navigation
|
|
38250
38734
|
$kendo-bottom-nav-font-size: $kendo-font-size-md !default;
|
|
38735
|
+
/// The line height of the BottomNavigation.
|
|
38736
|
+
/// @group bottom-navigation
|
|
38251
38737
|
$kendo-bottom-nav-line-height: normal !default;
|
|
38738
|
+
/// The letter spacing of the BottomNavigation.
|
|
38739
|
+
/// @group bottom-navigation
|
|
38252
38740
|
$kendo-bottom-nav-letter-spacing: .2px !default;
|
|
38253
38741
|
|
|
38742
|
+
/// The horizontal padding of the BottomNavigation item.
|
|
38743
|
+
/// @group bottom-navigation
|
|
38254
38744
|
$kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38745
|
+
/// The vertical padding of the BottomNavigation item.
|
|
38746
|
+
/// @group bottom-navigation
|
|
38255
38747
|
$kendo-bottom-nav-item-padding-y: 0 !default;
|
|
38748
|
+
/// The minimum width of the BottomNavigation item.
|
|
38749
|
+
/// @group bottom-navigation
|
|
38256
38750
|
$kendo-bottom-nav-item-min-width: 72px !default;
|
|
38751
|
+
/// The maximum width of the BottomNavigation item.
|
|
38752
|
+
/// @group bottom-navigation
|
|
38257
38753
|
$kendo-bottom-nav-item-max-width: null !default;
|
|
38754
|
+
/// The minimum height of the BottomNavigation item.
|
|
38755
|
+
/// @group bottom-navigation
|
|
38258
38756
|
$kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{$kendo-padding-md-x * 2} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
|
|
38757
|
+
/// The border radius of the BottomNavigation item.
|
|
38758
|
+
/// @group bottom-navigation
|
|
38259
38759
|
$kendo-bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
38760
|
+
/// The spacing of the BottomNavigation item.
|
|
38761
|
+
/// @group bottom-navigation
|
|
38260
38762
|
$kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
38261
38763
|
|
|
38262
|
-
|
|
38263
|
-
|
|
38264
|
-
$kendo-bottom-nav-item-disabled-opacity: .5 !default;
|
|
38265
|
-
|
|
38764
|
+
/// The box shadow of the BottomNavigation.
|
|
38765
|
+
/// @group bottom-navigation
|
|
38266
38766
|
$kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
|
|
38267
38767
|
|
|
38268
|
-
|
|
38768
|
+
/// The text color of the flat BottomNavigation.
|
|
38769
|
+
/// @group bottom-navigation
|
|
38269
38770
|
$kendo-bottom-nav-flat-text: $kendo-component-text !default;
|
|
38771
|
+
/// The background color of the flat BottomNavigation.
|
|
38772
|
+
/// @group bottom-navigation
|
|
38773
|
+
$kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
38774
|
+
/// The border color of the flat BottomNavigation.
|
|
38775
|
+
/// @group bottom-navigation
|
|
38270
38776
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
38271
|
-
|
|
38272
38777
|
// #endregion
|
|
38273
38778
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
38274
38779
|
// #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
|
|
@@ -38525,63 +39030,234 @@ $_kendo-module-meta: (
|
|
|
38525
39030
|
// #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
|
|
38526
39031
|
// Breadcrumb
|
|
38527
39032
|
|
|
39033
|
+
/// The width of the border around the Breadcrumb.
|
|
39034
|
+
/// @group breadcrumb
|
|
39035
|
+
$kendo-breadcrumb-border-width: 0px !default;
|
|
39036
|
+
|
|
39037
|
+
/// The horizontal margin of the Breadcrumb.
|
|
39038
|
+
/// @group breadcrumb
|
|
38528
39039
|
$kendo-breadcrumb-margin-x: null !default;
|
|
39040
|
+
/// The vertical margin of the Breadcrumb.
|
|
39041
|
+
/// @group breadcrumb
|
|
38529
39042
|
$kendo-breadcrumb-margin-y: null !default;
|
|
39043
|
+
|
|
39044
|
+
/// The horizontal padding of the Breadcrumb.
|
|
39045
|
+
/// @group breadcrumb
|
|
38530
39046
|
$kendo-breadcrumb-padding-x: null !default;
|
|
39047
|
+
/// The vertical padding of the Breadcrumb.
|
|
39048
|
+
/// @group breadcrumb
|
|
38531
39049
|
$kendo-breadcrumb-padding-y: null !default;
|
|
38532
|
-
$kendo-breadcrumb-border-width: 0px !default;
|
|
38533
39050
|
|
|
39051
|
+
/// The font family of the Breadcrumb.
|
|
39052
|
+
/// @group breadcrumb
|
|
38534
39053
|
$kendo-breadcrumb-font-family: $kendo-font-family !default;
|
|
39054
|
+
|
|
39055
|
+
/// The font size of the Breadcrumb.
|
|
39056
|
+
/// @group breadcrumb
|
|
38535
39057
|
$kendo-breadcrumb-font-size: $kendo-font-size-md !default;
|
|
39058
|
+
/// The font size of the small Breadcrumb.
|
|
39059
|
+
/// @group breadcrumb
|
|
39060
|
+
$kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
|
|
39061
|
+
/// The font size of the medium Breadcrumb.
|
|
39062
|
+
/// @group breadcrumb
|
|
39063
|
+
$kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
|
|
39064
|
+
/// The font size of the large Breadcrumb.
|
|
39065
|
+
/// @group breadcrumb
|
|
39066
|
+
$kendo-breadcrumb-lg-font-size: $kendo-font-size-lg !default;
|
|
39067
|
+
|
|
39068
|
+
/// The line-height of the Breadcrumb.
|
|
39069
|
+
/// @group breadcrumb
|
|
38536
39070
|
$kendo-breadcrumb-line-height: $kendo-line-height-md !default;
|
|
38537
|
-
|
|
39071
|
+
/// The line-height of the small Breadcrumb.
|
|
39072
|
+
/// @group breadcrumb
|
|
39073
|
+
$kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
|
|
39074
|
+
/// The line-height of the medium Breadcrumb.
|
|
39075
|
+
/// @group breadcrumb
|
|
39076
|
+
$kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
|
|
39077
|
+
/// The line-height of the height Breadcrumb.
|
|
39078
|
+
/// @group breadcrumb
|
|
39079
|
+
$kendo-breadcrumb-lg-line-height: $kendo-line-height-lg !default;
|
|
39080
|
+
|
|
39081
|
+
/// The base background of the Breadcrumb.
|
|
39082
|
+
/// @group breadcrumb
|
|
38538
39083
|
$kendo-breadcrumb-bg: $kendo-component-bg !default;
|
|
39084
|
+
/// The base text color of the Breadcrumb.
|
|
39085
|
+
/// @group breadcrumb
|
|
38539
39086
|
$kendo-breadcrumb-text: $kendo-component-text !default;
|
|
39087
|
+
/// The base border color of the Breadcrumb.
|
|
39088
|
+
/// @group breadcrumb
|
|
38540
39089
|
$kendo-breadcrumb-border: $kendo-component-border !default;
|
|
38541
39090
|
|
|
39091
|
+
/// The box shadow of the focused Breadcrumb.
|
|
39092
|
+
/// @group breadcrumb
|
|
39093
|
+
$kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
39094
|
+
|
|
39095
|
+
/// The horizontal padding of the Breadcrumb link.
|
|
39096
|
+
/// @group breadcrumb
|
|
38542
39097
|
$kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39098
|
+
/// The horizontal padding of the small Breadcrumb link.
|
|
39099
|
+
/// @group breadcrumb
|
|
39100
|
+
$kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39101
|
+
/// The horizontal padding of the medium Breadcrumb link.
|
|
39102
|
+
/// @group breadcrumb
|
|
39103
|
+
$kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
|
|
39104
|
+
/// The horizontal padding of the large Breadcrumb link.
|
|
39105
|
+
/// @group breadcrumb
|
|
39106
|
+
$kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39107
|
+
|
|
39108
|
+
/// The vertical padding of the Breadcrumb link.
|
|
39109
|
+
/// @group breadcrumb
|
|
38543
39110
|
$kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
39111
|
+
/// The vertical padding of the small Breadcrumb link.
|
|
39112
|
+
/// @group breadcrumb
|
|
39113
|
+
$kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
39114
|
+
/// The vertical padding of the medium Breadcrumb link.
|
|
39115
|
+
/// @group breadcrumb
|
|
39116
|
+
$kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
|
|
39117
|
+
/// The vertical padding of the large Breadcrumb link.
|
|
39118
|
+
/// @group breadcrumb
|
|
39119
|
+
$kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39120
|
+
|
|
39121
|
+
/// The border-radius of the Breadcrumb link.
|
|
39122
|
+
/// @group breadcrumb
|
|
38544
39123
|
$kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
38545
39124
|
|
|
38546
|
-
|
|
38547
|
-
|
|
38548
|
-
|
|
38549
|
-
|
|
38550
|
-
|
|
38551
|
-
|
|
39125
|
+
/// The vertical padding of the Breadcrumb link icon.
|
|
39126
|
+
/// @group breadcrumb
|
|
39127
|
+
$kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39128
|
+
/// The vertical padding of the small Breadcrumb link icon.
|
|
39129
|
+
/// @group breadcrumb
|
|
39130
|
+
$kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
39131
|
+
/// The vertical padding of the medium Breadcrumb link icon.
|
|
39132
|
+
/// @group breadcrumb
|
|
39133
|
+
$kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
39134
|
+
/// The vertical padding of the large Breadcrumb link icon.
|
|
39135
|
+
/// @group breadcrumb
|
|
39136
|
+
$kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
39137
|
+
|
|
39138
|
+
/// The horizontal padding of the Breadcrumb link icon.
|
|
39139
|
+
/// @group breadcrumb
|
|
39140
|
+
$kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
39141
|
+
/// The horizontal padding of the small Breadcrumb link icon.
|
|
39142
|
+
/// @group breadcrumb
|
|
39143
|
+
$kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
|
|
39144
|
+
/// The horizontal padding of the medium Breadcrumb link icon.
|
|
39145
|
+
/// @group breadcrumb
|
|
39146
|
+
$kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
|
|
39147
|
+
/// The horizontal padding of the large Breadcrumb link icon.
|
|
39148
|
+
/// @group breadcrumb
|
|
39149
|
+
$kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
|
|
39150
|
+
|
|
39151
|
+
/// The text color of the Breadcrumb link.
|
|
39152
|
+
/// @group breadcrumb
|
|
38552
39153
|
$kendo-breadcrumb-link-initial-text: inherit !default;
|
|
39154
|
+
/// The spacing of the Breadcrumb link icon.
|
|
39155
|
+
/// @group breadcrumb
|
|
39156
|
+
$kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
|
|
38553
39157
|
|
|
39158
|
+
/// The background color of the Breadcrumb link.
|
|
39159
|
+
/// @group breadcrumb
|
|
38554
39160
|
$kendo-breadcrumb-link-bg: null !default;
|
|
39161
|
+
/// The text color of the Breadcrumb link.
|
|
39162
|
+
/// @group breadcrumb
|
|
38555
39163
|
$kendo-breadcrumb-link-text: $kendo-link-text !default;
|
|
39164
|
+
/// The border color of the Breadcrumb link.
|
|
39165
|
+
/// @group breadcrumb
|
|
38556
39166
|
$kendo-breadcrumb-link-border: null !default;
|
|
38557
39167
|
|
|
39168
|
+
/// @group breadcrumb
|
|
38558
39169
|
$kendo-breadcrumb-link-hover-bg: $kendo-base-bg !default;
|
|
39170
|
+
/// The text color of the hovered Breadcrumb link.
|
|
39171
|
+
/// @group breadcrumb
|
|
38559
39172
|
$kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
|
|
39173
|
+
/// The border color of the hovered Breadcrumb link.
|
|
39174
|
+
/// @group breadcrumb
|
|
38560
39175
|
$kendo-breadcrumb-link-hover-border: null !default;
|
|
38561
39176
|
|
|
39177
|
+
/// The background color of the focused Breadcrumb link.
|
|
39178
|
+
/// @group breadcrumb
|
|
38562
39179
|
$kendo-breadcrumb-link-focus-bg: null !default;
|
|
39180
|
+
/// The text color of the focused Breadcrumb link.
|
|
39181
|
+
/// @group breadcrumb
|
|
38563
39182
|
$kendo-breadcrumb-link-focus-text: $kendo-link-text !default;
|
|
39183
|
+
/// The border color of the focused Breadcrumb link.
|
|
39184
|
+
/// @group breadcrumb
|
|
38564
39185
|
$kendo-breadcrumb-link-focus-border: null !default;
|
|
39186
|
+
/// The box shadow of the focused Breadcrumb link.
|
|
39187
|
+
/// @group breadcrumb
|
|
38565
39188
|
$kendo-breadcrumb-link-focus-shadow: $kendo-focus-shadow !default;
|
|
38566
39189
|
|
|
39190
|
+
/// The background color of the Breadcrumb root link.
|
|
39191
|
+
/// @group breadcrumb
|
|
38567
39192
|
$kendo-breadcrumb-root-link-bg: null !default;
|
|
39193
|
+
/// The text color of the Breadcrumb root link.
|
|
39194
|
+
/// @group breadcrumb
|
|
38568
39195
|
$kendo-breadcrumb-root-link-text: null !default;
|
|
39196
|
+
/// The border color of the Breadcrumb root link.
|
|
39197
|
+
/// @group breadcrumb
|
|
38569
39198
|
$kendo-breadcrumb-root-link-border: null !default;
|
|
38570
39199
|
|
|
39200
|
+
/// The background color of the hovered Breadcrumb root link.
|
|
39201
|
+
/// @group breadcrumb
|
|
38571
39202
|
$kendo-breadcrumb-root-link-hover-bg: $kendo-base-bg !default;
|
|
39203
|
+
/// The text color of the hovered Breadcrumb root link.
|
|
39204
|
+
/// @group breadcrumb
|
|
38572
39205
|
$kendo-breadcrumb-root-link-hover-text: null !default;
|
|
39206
|
+
/// The border color of the hovered Breadcrumb root link.
|
|
39207
|
+
/// @group breadcrumb
|
|
38573
39208
|
$kendo-breadcrumb-root-link-hover-border: null !default;
|
|
38574
39209
|
|
|
39210
|
+
/// The background color of the focused Breadcrumb root link.
|
|
39211
|
+
/// @group breadcrumb
|
|
38575
39212
|
$kendo-breadcrumb-root-link-focus-bg: null !default;
|
|
39213
|
+
/// The text color of the focused Breadcrumb root link.
|
|
39214
|
+
/// @group breadcrumb
|
|
38576
39215
|
$kendo-breadcrumb-root-link-focus-text: null !default;
|
|
39216
|
+
/// The border color of the focused Breadcrumb root link.
|
|
39217
|
+
/// @group breadcrumb
|
|
38577
39218
|
$kendo-breadcrumb-root-link-focus-border: null !default;
|
|
39219
|
+
/// The box shadow of the focused Breadcrumb root link.
|
|
39220
|
+
/// @group breadcrumb
|
|
38578
39221
|
$kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
|
|
38579
39222
|
|
|
39223
|
+
/// The background color of the current Breadcrumb root link.
|
|
39224
|
+
/// @group breadcrumb
|
|
38580
39225
|
$kendo-breadcrumb-current-item-bg: null !default;
|
|
39226
|
+
/// The text color of the current Breadcrumb root link.
|
|
39227
|
+
/// @group breadcrumb
|
|
38581
39228
|
$kendo-breadcrumb-current-item-text: null !default;
|
|
39229
|
+
/// The border color of the current Breadcrumb root link.
|
|
39230
|
+
/// @group breadcrumb
|
|
38582
39231
|
$kendo-breadcrumb-current-item-border: null !default;
|
|
38583
39232
|
|
|
38584
|
-
|
|
39233
|
+
/// The sizes map for the Breadcrumb.
|
|
39234
|
+
/// @group breadcrumb
|
|
39235
|
+
$kendo-breadcrumb-sizes: (
|
|
39236
|
+
sm: (
|
|
39237
|
+
link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
|
|
39238
|
+
link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
|
|
39239
|
+
icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
|
|
39240
|
+
icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
|
|
39241
|
+
font-size: $kendo-breadcrumb-sm-font-size,
|
|
39242
|
+
line-height: $kendo-breadcrumb-sm-line-height
|
|
39243
|
+
),
|
|
39244
|
+
md: (
|
|
39245
|
+
link-padding-x: $kendo-breadcrumb-md-link-padding-x,
|
|
39246
|
+
link-padding-y: $kendo-breadcrumb-md-link-padding-y,
|
|
39247
|
+
icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
|
|
39248
|
+
icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
|
|
39249
|
+
font-size: $kendo-breadcrumb-md-font-size,
|
|
39250
|
+
line-height: $kendo-breadcrumb-md-line-height
|
|
39251
|
+
),
|
|
39252
|
+
lg: (
|
|
39253
|
+
link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
|
|
39254
|
+
link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
|
|
39255
|
+
icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
|
|
39256
|
+
icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
|
|
39257
|
+
font-size: $kendo-breadcrumb-lg-font-size,
|
|
39258
|
+
line-height: $kendo-breadcrumb-lg-line-height
|
|
39259
|
+
)
|
|
39260
|
+
) !default;
|
|
38585
39261
|
|
|
38586
39262
|
// #endregion
|
|
38587
39263
|
// #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
|
|
@@ -38599,8 +39275,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38599
39275
|
box-sizing: border-box;
|
|
38600
39276
|
outline: 0;
|
|
38601
39277
|
font-family: $kendo-breadcrumb-font-family;
|
|
38602
|
-
font-size: $kendo-breadcrumb-font-size;
|
|
38603
|
-
line-height: $kendo-breadcrumb-line-height;
|
|
38604
39278
|
display: flex;
|
|
38605
39279
|
flex-direction: row;
|
|
38606
39280
|
-webkit-touch-callout: none;
|
|
@@ -38652,8 +39326,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38652
39326
|
.k-breadcrumb-link,
|
|
38653
39327
|
.k-breadcrumb-root-link {
|
|
38654
39328
|
@include border-radius( $kendo-breadcrumb-link-border-radius );
|
|
38655
|
-
padding-block: $kendo-breadcrumb-link-padding-y;
|
|
38656
|
-
padding-inline: $kendo-breadcrumb-link-padding-x;
|
|
38657
39329
|
color: $kendo-breadcrumb-link-initial-text;
|
|
38658
39330
|
text-decoration: none;
|
|
38659
39331
|
white-space: nowrap;
|
|
@@ -38667,21 +39339,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38667
39339
|
transition: $kendo-transition;
|
|
38668
39340
|
}
|
|
38669
39341
|
|
|
38670
|
-
.k-breadcrumb-root-link {
|
|
38671
|
-
margin-inline-end: $kendo-breadcrumb-root-link-spacing;
|
|
38672
|
-
}
|
|
38673
|
-
|
|
38674
39342
|
.k-breadcrumb-link > .k-image,
|
|
38675
39343
|
.k-breadcrumb-icontext-link .k-icon,
|
|
38676
39344
|
.k-breadcrumb-icontext-link .k-svg-icon {
|
|
38677
39345
|
margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
|
|
38678
39346
|
}
|
|
38679
39347
|
|
|
38680
|
-
.k-breadcrumb-icon-link {
|
|
38681
|
-
padding-block: $kendo-breadcrumb-icon-link-padding-y;
|
|
38682
|
-
padding-inline: $kendo-breadcrumb-icon-link-padding-x;
|
|
38683
|
-
}
|
|
38684
|
-
|
|
38685
39348
|
|
|
38686
39349
|
// Breadcrumb delimiter
|
|
38687
39350
|
.k-breadcrumb-delimiter,
|
|
@@ -38700,6 +39363,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38700
39363
|
}
|
|
38701
39364
|
}
|
|
38702
39365
|
|
|
39366
|
+
|
|
39367
|
+
// Sizes
|
|
39368
|
+
@each $size, $size-props in $kendo-breadcrumb-sizes {
|
|
39369
|
+
$_link-padding-x: k-map-get( $size-props, link-padding-x );
|
|
39370
|
+
$_link-padding-y: k-map-get( $size-props, link-padding-y );
|
|
39371
|
+
$_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
|
|
39372
|
+
$_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
|
|
39373
|
+
$_font-size: k-map-get( $size-props, font-size );
|
|
39374
|
+
$_line-height: k-map-get( $size-props, line-height );
|
|
39375
|
+
|
|
39376
|
+
.k-breadcrumb-#{$size} {
|
|
39377
|
+
font-size: $_font-size;
|
|
39378
|
+
line-height: $_line-height;
|
|
39379
|
+
|
|
39380
|
+
|
|
39381
|
+
.k-breadcrumb-link,
|
|
39382
|
+
.k-breadcrumb-root-link {
|
|
39383
|
+
padding-block: $_link-padding-y;
|
|
39384
|
+
padding-inline: $_link-padding-x;
|
|
39385
|
+
}
|
|
39386
|
+
|
|
39387
|
+
.k-breadcrumb-icon-link {
|
|
39388
|
+
padding-block: $_icon-link-padding-y;
|
|
39389
|
+
padding-inline: $_icon-link-padding-x;
|
|
39390
|
+
}
|
|
39391
|
+
}
|
|
39392
|
+
}
|
|
39393
|
+
|
|
38703
39394
|
}
|
|
38704
39395
|
|
|
38705
39396
|
|
|
@@ -40979,41 +41670,84 @@ $_kendo-module-meta: (
|
|
|
40979
41670
|
|
|
40980
41671
|
// Component
|
|
40981
41672
|
// #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
|
|
40982
|
-
//
|
|
41673
|
+
// ExpansionPanel
|
|
41674
|
+
|
|
41675
|
+
/// The vertical spacing of the ExpansionPanel.
|
|
41676
|
+
/// @group expander
|
|
40983
41677
|
$kendo-expander-spacing-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
41678
|
+
/// The width of the border around the ExpansionPanel.
|
|
41679
|
+
/// @group expander
|
|
41680
|
+
$kendo-expander-border-width: 1px !default;
|
|
41681
|
+
/// The font family of the ExpansionPanel.
|
|
41682
|
+
/// @group expander
|
|
40984
41683
|
$kendo-expander-font-family: $kendo-font-family !default;
|
|
41684
|
+
/// The font size of the ExpansionPanel.
|
|
41685
|
+
/// @group expander
|
|
40985
41686
|
$kendo-expander-font-size: $kendo-font-size-md !default;
|
|
41687
|
+
/// The hine height of the ExpansionPanel.
|
|
41688
|
+
/// @group expander
|
|
40986
41689
|
$kendo-expander-line-height: $kendo-line-height-md !default;
|
|
40987
|
-
$kendo-expander-border-width: 1px !default;
|
|
40988
|
-
|
|
40989
|
-
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
40990
|
-
// TODO: use 2
|
|
40991
|
-
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
40992
|
-
|
|
40993
|
-
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
40994
41690
|
|
|
40995
|
-
|
|
41691
|
+
/// The text color of the ExpansionPanel.
|
|
41692
|
+
/// @group expander
|
|
40996
41693
|
$kendo-expander-text: $kendo-component-text !default;
|
|
41694
|
+
/// The background color of the ExpansionPanel.
|
|
41695
|
+
/// @group expander
|
|
41696
|
+
$kendo-expander-bg: $kendo-component-bg !default;
|
|
41697
|
+
/// The border color of the ExpansionPanel.
|
|
41698
|
+
/// @group expander
|
|
40997
41699
|
$kendo-expander-border: $kendo-component-border !default;
|
|
40998
41700
|
|
|
41701
|
+
/// The box shadow of the focused ExpansionPanel.
|
|
41702
|
+
/// @group expander
|
|
40999
41703
|
$kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
41000
41704
|
|
|
41001
|
-
|
|
41705
|
+
/// The horizontal padding of the ExpansionPanel header.
|
|
41706
|
+
/// @group expander
|
|
41707
|
+
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41708
|
+
// TODO: use 2
|
|
41709
|
+
/// The vertical padding of the ExpansionPanel header.
|
|
41710
|
+
/// @group expander
|
|
41711
|
+
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
41712
|
+
|
|
41713
|
+
/// The text color of the ExpansionPanel header.
|
|
41714
|
+
/// @group expander
|
|
41002
41715
|
$kendo-expander-header-text: $kendo-expander-text !default;
|
|
41716
|
+
/// The background color of the ExpansionPanel header.
|
|
41717
|
+
/// @group expander
|
|
41718
|
+
$kendo-expander-header-bg: transparent !default;
|
|
41719
|
+
/// The border color of the ExpansionPanel header.
|
|
41720
|
+
/// @group expander
|
|
41003
41721
|
$kendo-expander-header-border: null !default;
|
|
41004
41722
|
|
|
41723
|
+
/// The background color of the hovered ExpansionPanel header.
|
|
41724
|
+
/// @group expander
|
|
41005
41725
|
$kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
|
|
41006
|
-
|
|
41726
|
+
/// The background color of the focused ExpansionPanel header.
|
|
41727
|
+
/// @group expander
|
|
41007
41728
|
$kendo-expander-header-focus-bg: null !default;
|
|
41729
|
+
/// The box shadow of the focused ExpansionPanel header.
|
|
41730
|
+
/// @group expander
|
|
41008
41731
|
$kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
41009
41732
|
|
|
41733
|
+
/// The text color of the ExpansionPanel title.
|
|
41734
|
+
/// @group expander
|
|
41010
41735
|
$kendo-expander-title-text: $kendo-color-primary !default;
|
|
41011
41736
|
|
|
41737
|
+
/// The text color of the ExpansionPanel sub-title.
|
|
41738
|
+
/// @group expander
|
|
41012
41739
|
$kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
|
|
41013
41740
|
|
|
41741
|
+
/// The horizontal margin of the ExpansionPanel indicator.
|
|
41742
|
+
/// @group expander
|
|
41743
|
+
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41744
|
+
|
|
41745
|
+
/// The horizontal padding of the ExpansionPanel content.
|
|
41746
|
+
/// @group expander
|
|
41014
41747
|
$kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41748
|
+
/// The vertical padding of the ExpansionPanel content.
|
|
41749
|
+
/// @group expander
|
|
41015
41750
|
$kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41016
|
-
|
|
41017
41751
|
// #endregion
|
|
41018
41752
|
// #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
|
|
41019
41753
|
// #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
|
|
@@ -41794,6 +42528,8 @@ $kendo-splitter-splitbar-size: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
41794
42528
|
$kendo-splitter-drag-handle-length: 20px !default;
|
|
41795
42529
|
$kendo-splitter-drag-handle-thickness: 2px !default;
|
|
41796
42530
|
$kendo-splitter-drag-icon-margin: 7px !default;
|
|
42531
|
+
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
42532
|
+
$kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !default;
|
|
41797
42533
|
|
|
41798
42534
|
$kendo-splitbar-bg: $kendo-base-bg !default;
|
|
41799
42535
|
$kendo-splitbar-text: $kendo-base-text !default;
|
|
@@ -41865,6 +42601,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
|
|
|
41865
42601
|
.k-collapse-prev,
|
|
41866
42602
|
.k-collapse-next {
|
|
41867
42603
|
cursor: pointer;
|
|
42604
|
+
padding: $kendo-splitter-collapse-icon-padding-y $kendo-splitter-collapse-icon-padding-x;
|
|
41868
42605
|
}
|
|
41869
42606
|
|
|
41870
42607
|
}
|
|
@@ -42112,17 +42849,34 @@ $_kendo-module-meta: (
|
|
|
42112
42849
|
// Component
|
|
42113
42850
|
// #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
|
|
42114
42851
|
// TileLayout
|
|
42852
|
+
|
|
42853
|
+
/// The width of the border around the TileLayout.
|
|
42854
|
+
/// @group tilelayout
|
|
42115
42855
|
$kendo-tile-layout-border-width: 0px !default;
|
|
42856
|
+
/// The background color of the TileLayout.
|
|
42857
|
+
/// @group tilelayout
|
|
42858
|
+
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
42859
|
+
|
|
42860
|
+
/// The width of the border around the TileLayout card.
|
|
42861
|
+
/// @group tilelayout
|
|
42116
42862
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|
|
42863
|
+
/// The focus box shadow of the TileLayout card.
|
|
42864
|
+
/// @group tilelayout
|
|
42117
42865
|
$kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
42118
42866
|
|
|
42867
|
+
/// The width of the border around the TileLayout hint.
|
|
42868
|
+
/// @group tilelayout
|
|
42119
42869
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
42870
|
+
/// The radius of the border around the TileLayout hint.
|
|
42871
|
+
/// @group tilelayout
|
|
42120
42872
|
$kendo-tile-layout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
42121
|
-
|
|
42122
|
-
|
|
42123
|
-
|
|
42124
|
-
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
42873
|
+
/// The color of the border around the TileLayout hint.
|
|
42874
|
+
/// @group tilelayout
|
|
42125
42875
|
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
42876
|
+
/// The background color of the TileLayout hint.
|
|
42877
|
+
/// @group tilelayout
|
|
42878
|
+
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
42879
|
+
|
|
42126
42880
|
|
|
42127
42881
|
// #endregion
|
|
42128
42882
|
// #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
|
|
@@ -45350,32 +46104,66 @@ $_kendo-module-meta: (
|
|
|
45350
46104
|
|
|
45351
46105
|
// Component
|
|
45352
46106
|
// #region @import "./_variables.scss"; -> scss/listview/_variables.scss
|
|
45353
|
-
//
|
|
46107
|
+
// ListView
|
|
46108
|
+
|
|
46109
|
+
/// The horizontal padding of the ListView.
|
|
46110
|
+
/// @group listview
|
|
45354
46111
|
$kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46112
|
+
/// The vertical padding of the ListView.
|
|
46113
|
+
/// @group listview
|
|
45355
46114
|
$kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46115
|
+
/// The width of the border around bordered ListView.
|
|
46116
|
+
/// @group listview
|
|
45356
46117
|
$kendo-listview-border-width: 1px !default;
|
|
46118
|
+
/// The font family of the ListView.
|
|
46119
|
+
/// @group listview
|
|
45357
46120
|
$kendo-listview-font-family: $kendo-font-family !default;
|
|
46121
|
+
/// The font size of the ListView.
|
|
46122
|
+
/// @group listview
|
|
45358
46123
|
$kendo-listview-font-size: $kendo-font-size-md !default;
|
|
46124
|
+
/// The line height of the ListView.
|
|
46125
|
+
/// @group listview
|
|
45359
46126
|
$kendo-listview-line-height: $kendo-line-height-md !default;
|
|
45360
46127
|
|
|
45361
|
-
|
|
46128
|
+
/// The text color of the ListView.
|
|
46129
|
+
/// @group listview
|
|
45362
46130
|
$kendo-listview-text: $kendo-component-text !default;
|
|
46131
|
+
/// The background color of the ListView.
|
|
46132
|
+
/// @group listview
|
|
46133
|
+
$kendo-listview-bg: $kendo-component-bg !default;
|
|
46134
|
+
/// The border color of the ListView.
|
|
46135
|
+
/// @group listview
|
|
45363
46136
|
$kendo-listview-border: $kendo-component-border !default;
|
|
45364
46137
|
|
|
45365
|
-
|
|
45366
|
-
|
|
46138
|
+
/// The horizontal padding of the ListView items.
|
|
46139
|
+
/// @group listview
|
|
45367
46140
|
$kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46141
|
+
/// The vertical padding of the ListView items.
|
|
46142
|
+
/// @group listview
|
|
45368
46143
|
$kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
45369
46144
|
|
|
45370
|
-
|
|
46145
|
+
/// The text color of the selected ListView items.
|
|
46146
|
+
/// @group listview
|
|
45371
46147
|
$kendo-listview-item-selected-text: null !default;
|
|
46148
|
+
/// The background color of the selected ListView items.
|
|
46149
|
+
/// @group listview
|
|
46150
|
+
$kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
46151
|
+
/// The border color of the selected ListView items.
|
|
46152
|
+
/// @group listview
|
|
45372
46153
|
$kendo-listview-item-selected-border: null !default;
|
|
45373
46154
|
|
|
45374
|
-
|
|
46155
|
+
/// The text color of the focused ListView items.
|
|
46156
|
+
/// @group listview
|
|
45375
46157
|
$kendo-listview-item-focus-text: null !default;
|
|
46158
|
+
/// The background color of the focused ListView items.
|
|
46159
|
+
/// @group listview
|
|
46160
|
+
$kendo-listview-item-focus-bg: null !default;
|
|
46161
|
+
/// The border color of the focused ListView items.
|
|
46162
|
+
/// @group listview
|
|
45376
46163
|
$kendo-listview-item-focus-border: null !default;
|
|
46164
|
+
/// The box shadow of the focused ListView items.
|
|
46165
|
+
/// @group listview
|
|
45377
46166
|
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
45378
|
-
|
|
45379
46167
|
// #endregion
|
|
45380
46168
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
45381
46169
|
// #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
|
|
@@ -48193,6 +48981,12 @@ $kendo-treelist-footer-row-border-width: 1px !default;
|
|
|
48193
48981
|
margin-inline: .5em;
|
|
48194
48982
|
}
|
|
48195
48983
|
|
|
48984
|
+
.k-treelist-toggle {
|
|
48985
|
+
margin-block: -$kendo-icon-padding;
|
|
48986
|
+
padding: $kendo-icon-padding;
|
|
48987
|
+
cursor: pointer;
|
|
48988
|
+
}
|
|
48989
|
+
|
|
48196
48990
|
}
|
|
48197
48991
|
|
|
48198
48992
|
|
|
@@ -48311,19 +49105,35 @@ $_kendo-module-meta: (
|
|
|
48311
49105
|
// Component
|
|
48312
49106
|
// #region @import "./_variables.scss"; -> scss/filter/_variables.scss
|
|
48313
49107
|
// Filter expression builder
|
|
49108
|
+
|
|
49109
|
+
/// The horizontal padding of the Filter.
|
|
49110
|
+
/// @group filter
|
|
48314
49111
|
$kendo-filter-padding-x: $kendo-padding-md-x !default;
|
|
49112
|
+
/// The vertical padding of the Filter.
|
|
49113
|
+
/// @group filter
|
|
48315
49114
|
$kendo-filter-padding-y: $kendo-padding-md-y !default;
|
|
48316
49115
|
|
|
49116
|
+
/// The bottom margin of the Filter.
|
|
49117
|
+
/// @group filter
|
|
48317
49118
|
$kendo-filter-bottom-margin: 30px !default;
|
|
49119
|
+
/// The width of the line that connects the Filter items.
|
|
49120
|
+
/// @group filter
|
|
48318
49121
|
$kendo-filter-line-size: 1px !default;
|
|
48319
49122
|
|
|
49123
|
+
/// The width of the dropdown elements in the Filter items.
|
|
49124
|
+
/// @group filter
|
|
48320
49125
|
$kendo-filter-operator-dropdown-width: 15em !default;
|
|
48321
49126
|
|
|
49127
|
+
/// The text color of the Filter preview field.
|
|
49128
|
+
/// @group filter
|
|
48322
49129
|
$kendo-filter-preview-field-text: $kendo-color-primary !default;
|
|
49130
|
+
/// The text color of the Filter preview operator.
|
|
49131
|
+
/// @group filter
|
|
48323
49132
|
$kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
48324
49133
|
|
|
49134
|
+
/// The box shadow of the focused Filter toolbar.
|
|
49135
|
+
/// @group filter
|
|
48325
49136
|
$kendo-filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
48326
|
-
|
|
48327
49137
|
// #endregion
|
|
48328
49138
|
// #region @import "./_layout.scss"; -> scss/filter/_layout.scss
|
|
48329
49139
|
// #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
|
|
@@ -49652,27 +50462,60 @@ $_kendo-module-meta: (
|
|
|
49652
50462
|
// Component
|
|
49653
50463
|
// #region @import "./_variables.scss"; -> scss/editor/_variables.scss
|
|
49654
50464
|
// Editor
|
|
50465
|
+
|
|
50466
|
+
/// The width of the border around the Еditor.
|
|
50467
|
+
/// @group editor
|
|
49655
50468
|
$kendo-editor-border-width: 1px !default;
|
|
50469
|
+
/// The font family of the Еditor.
|
|
50470
|
+
/// @group editor
|
|
49656
50471
|
$kendo-editor-font-family: $kendo-font-family !default;
|
|
50472
|
+
/// The font size of the Еditor.
|
|
50473
|
+
/// @group editor
|
|
49657
50474
|
$kendo-editor-font-size: $kendo-font-size-md !default;
|
|
50475
|
+
/// The line height of the Еditor.
|
|
50476
|
+
/// @group editor
|
|
49658
50477
|
$kendo-editor-line-height: $kendo-line-height-md !default;
|
|
49659
50478
|
|
|
50479
|
+
/// The text color of the Еditor placeholder.
|
|
50480
|
+
/// @group editor
|
|
49660
50481
|
$kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
|
|
50482
|
+
/// The opacity of the Editor placeholder.
|
|
50483
|
+
/// @group editor
|
|
49661
50484
|
$kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
49662
50485
|
|
|
50486
|
+
/// The selected text color of the Editor.
|
|
50487
|
+
/// @group editor
|
|
49663
50488
|
$kendo-editor-selected-text: $kendo-color-primary-contrast !default;
|
|
50489
|
+
/// The selected background color of the Editor.
|
|
50490
|
+
/// @group editor
|
|
49664
50491
|
$kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
49665
50492
|
|
|
50493
|
+
/// The highlighted background color of the Editor.
|
|
50494
|
+
/// @group editor
|
|
49666
50495
|
$kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
|
|
49667
50496
|
|
|
50497
|
+
/// The horizontal margin of the Editor's export tool icon.
|
|
50498
|
+
/// @group editor
|
|
49668
50499
|
$kendo-editor-export-tool-icon-margin-x: .25em !default;
|
|
49669
50500
|
|
|
50501
|
+
/// The size of the Editor's resize handle.
|
|
50502
|
+
/// @group editor
|
|
49670
50503
|
$kendo-editor-resize-handle-size: 8px !default;
|
|
50504
|
+
/// The border width of the Editor's resize handle.
|
|
50505
|
+
/// @group editor
|
|
49671
50506
|
$kendo-editor-resize-handle-border-width: 1px !default;
|
|
50507
|
+
/// The border color of the Editor's resize handle.
|
|
50508
|
+
/// @group editor
|
|
49672
50509
|
$kendo-editor-resize-handle-border: #000000 !default;
|
|
50510
|
+
/// The background color of the Editor's resize handle.
|
|
50511
|
+
/// @group editor
|
|
49673
50512
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
49674
50513
|
|
|
50514
|
+
/// The outline width of the Editor's selected node.
|
|
50515
|
+
/// @group editor
|
|
49675
50516
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
50517
|
+
/// The outline color of the Editor's selected node.
|
|
50518
|
+
/// @group editor
|
|
49676
50519
|
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
49677
50520
|
|
|
49678
50521
|
// #endregion
|
|
@@ -52371,6 +53214,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
52371
53214
|
th,
|
|
52372
53215
|
td,
|
|
52373
53216
|
div,
|
|
53217
|
+
.k-scheduler-edit-dialog,
|
|
52374
53218
|
> * {
|
|
52375
53219
|
border-color: inherit;
|
|
52376
53220
|
}
|
|
@@ -56001,44 +56845,97 @@ $_kendo-module-meta: (
|
|
|
56001
56845
|
|
|
56002
56846
|
// Component
|
|
56003
56847
|
// #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
|
|
56004
|
-
//
|
|
56848
|
+
// ScrollView
|
|
56849
|
+
|
|
56850
|
+
/// The width of the border around the ScrollView.
|
|
56851
|
+
/// @group scrollview
|
|
56005
56852
|
$kendo-scrollview-border-width: 1px !default;
|
|
56853
|
+
/// The font family of the ScrollView.
|
|
56854
|
+
/// @group scrollview
|
|
56006
56855
|
$kendo-scrollview-font-family: $kendo-font-family !default;
|
|
56856
|
+
/// The font size of the ScrollView.
|
|
56857
|
+
/// @group scrollview
|
|
56007
56858
|
$kendo-scrollview-font-size: $kendo-font-size-md !default;
|
|
56859
|
+
/// The line height of the ScrollView.
|
|
56860
|
+
/// @group scrollview
|
|
56008
56861
|
$kendo-scrollview-line-height: $kendo-line-height-md !default;
|
|
56009
56862
|
|
|
56010
|
-
|
|
56863
|
+
/// The text color of the ScrollView.
|
|
56864
|
+
/// @group scrollview
|
|
56011
56865
|
$kendo-scrollview-text: $kendo-component-text !default;
|
|
56866
|
+
/// The background color of the ScrollView.
|
|
56867
|
+
/// @group scrollview
|
|
56868
|
+
$kendo-scrollview-bg: $kendo-component-bg !default;
|
|
56869
|
+
/// The border color of the ScrollView.
|
|
56870
|
+
/// @group scrollview
|
|
56012
56871
|
$kendo-scrollview-border: $kendo-component-border !default;
|
|
56013
56872
|
|
|
56873
|
+
/// The size of the ScrollView page button.
|
|
56874
|
+
/// @group scrollview
|
|
56014
56875
|
$kendo-scrollview-pagebutton-size: 10px !default;
|
|
56876
|
+
/// The background color of the ScrollView page button.
|
|
56877
|
+
/// @group scrollview
|
|
56015
56878
|
$kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
56879
|
+
/// The border color of the ScrollView page button.
|
|
56880
|
+
/// @group scrollview
|
|
56016
56881
|
$kendo-scrollview-pagebutton-border: $kendo-button-border !default;
|
|
56882
|
+
/// The primary background color of the ScrollView page button.
|
|
56883
|
+
/// @group scrollview
|
|
56017
56884
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
|
|
56885
|
+
/// The primary border color of the ScrollView page button.
|
|
56886
|
+
/// @group scrollview
|
|
56018
56887
|
$kendo-scrollview-pagebutton-primary-border: k-try-shade( $kendo-color-primary, 2 ) !default;
|
|
56888
|
+
/// The box shadow of the ScrollView page button.
|
|
56889
|
+
/// @group scrollview
|
|
56019
56890
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
56020
56891
|
|
|
56892
|
+
/// The offset of the ScrollView pager.
|
|
56893
|
+
/// @group scrollview
|
|
56021
56894
|
$kendo-scrollview-pager-offset: 0 !default;
|
|
56895
|
+
/// The spacing between the ScrollView pager items.
|
|
56896
|
+
/// @group scrollview
|
|
56022
56897
|
$kendo-scrollview-pager-item-spacing: 20px !default;
|
|
56898
|
+
/// The border width of the ScrollView pager items.
|
|
56899
|
+
/// @group scrollview
|
|
56023
56900
|
$kendo-scrollview-pager-item-border-width: 0px !default;
|
|
56901
|
+
/// The height of the ScrollView pager.
|
|
56902
|
+
/// @group scrollview
|
|
56024
56903
|
$kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
|
|
56025
56904
|
|
|
56026
|
-
|
|
56027
|
-
|
|
56028
|
-
$kendo-scrollview-pager-multidot-step: 1px !default;
|
|
56029
|
-
|
|
56905
|
+
/// The text color of the highlight over the tapped ScrollView navigation arrows.
|
|
56906
|
+
/// @group scrollview
|
|
56030
56907
|
$kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
|
|
56908
|
+
/// The color of the ScrollView navigation arrows.
|
|
56909
|
+
/// @group scrollview
|
|
56031
56910
|
$kendo-scrollview-navigation-color: white !default;
|
|
56911
|
+
/// The box shadow of the ScrollView navigation arrows.
|
|
56912
|
+
/// @group scrollview
|
|
56032
56913
|
$kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
56914
|
+
/// The background color of the ScrollView navigation.
|
|
56915
|
+
/// @group scrollview
|
|
56033
56916
|
$kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
56917
|
+
/// The opacity of the ScrollView navigation.
|
|
56918
|
+
/// @group scrollview
|
|
56034
56919
|
$kendo-scrollview-navigation-default-opacity: .7 !default;
|
|
56920
|
+
/// The hover opacity of the ScrollView navigation.
|
|
56921
|
+
/// @group scrollview
|
|
56035
56922
|
$kendo-scrollview-navigation-hover-opacity: 1 !default;
|
|
56923
|
+
/// The hover background color of the ScrollView navigation arrows.
|
|
56924
|
+
/// @group scrollview
|
|
56036
56925
|
$kendo-scrollview-navigation-hover-span-bg: null !default;
|
|
56037
56926
|
|
|
56927
|
+
/// The background color of the ScrollView pager in light mode.
|
|
56928
|
+
/// @group scrollview
|
|
56038
56929
|
$kendo-scrollview-light-bg: rgba( white, .4 ) !default;
|
|
56930
|
+
/// The background color of the ScrollView pager in dark mode.
|
|
56931
|
+
/// @group scrollview
|
|
56039
56932
|
$kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
56040
56933
|
|
|
56934
|
+
/// The duration of the ScrollView transition.
|
|
56935
|
+
/// @group scrollview
|
|
56041
56936
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
56937
|
+
/// The timing function of the ScrollView transition.
|
|
56938
|
+
/// @group scrollview
|
|
56042
56939
|
$kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
56043
56940
|
|
|
56044
56941
|
// #endregion
|