@progress/kendo-theme-bootstrap 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 +102 -38
- package/dist/all.scss +1091 -193
- package/dist/meta/sassdoc-data.json +41178 -19266
- package/dist/meta/sassdoc-raw-data.json +18201 -8101
- package/dist/meta/variables.json +268 -208
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.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 +179 -6
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -4
- 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 +55 -11
- 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 +20 -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
|
|
|
@@ -16923,7 +16927,11 @@ $ki-rotate-map: (
|
|
|
16923
16927
|
}
|
|
16924
16928
|
|
|
16925
16929
|
.k-icon-action {
|
|
16930
|
+
display: inline-flex;
|
|
16926
16931
|
padding: $kendo-icon-padding;
|
|
16932
|
+
line-height: 1;
|
|
16933
|
+
align-items: center;
|
|
16934
|
+
vertical-align: middle;
|
|
16927
16935
|
cursor: pointer;
|
|
16928
16936
|
}
|
|
16929
16937
|
|
|
@@ -17472,7 +17480,7 @@ $kendo-list-lg-header-line-height: null !default;
|
|
|
17472
17480
|
|
|
17473
17481
|
/// The font weight of the List header.
|
|
17474
17482
|
/// @group list
|
|
17475
|
-
$kendo-list-header-font-weight: bold !default;
|
|
17483
|
+
$kendo-list-header-font-weight: $kendo-font-weight-bold !default;
|
|
17476
17484
|
|
|
17477
17485
|
/// The horizontal padding of the List items, when no size is set.
|
|
17478
17486
|
/// @group list
|
|
@@ -17536,7 +17544,7 @@ $kendo-list-lg-group-item-line-height: null !default;
|
|
|
17536
17544
|
|
|
17537
17545
|
/// The font weight of a List group item.
|
|
17538
17546
|
/// @group list
|
|
17539
|
-
$kendo-list-group-item-font-weight: bold !default;
|
|
17547
|
+
$kendo-list-group-item-font-weight: $kendo-font-weight-bold !default;
|
|
17540
17548
|
|
|
17541
17549
|
|
|
17542
17550
|
/// The map with the sizes of the List.
|
|
@@ -18371,6 +18379,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
18371
18379
|
}
|
|
18372
18380
|
}
|
|
18373
18381
|
.k-list-item-text,
|
|
18382
|
+
.k-list-header-text,
|
|
18374
18383
|
.k-list-optionlabel {
|
|
18375
18384
|
&::before {
|
|
18376
18385
|
content: "\200b";
|
|
@@ -21302,6 +21311,10 @@ $kendo-chip-list-sizes: (
|
|
|
21302
21311
|
padding-inline: $_padding-x;
|
|
21303
21312
|
font-size: $_font-size;
|
|
21304
21313
|
line-height: $_line-height;
|
|
21314
|
+
|
|
21315
|
+
.k-chip-action {
|
|
21316
|
+
padding: $_padding-y;
|
|
21317
|
+
}
|
|
21305
21318
|
}
|
|
21306
21319
|
|
|
21307
21320
|
.k-chip-avatar {
|
|
@@ -21756,53 +21769,129 @@ $_kendo-module-meta: (
|
|
|
21756
21769
|
// #region @import "./_variables.scss"; -> scss/loader/_variables.scss
|
|
21757
21770
|
// Loader
|
|
21758
21771
|
|
|
21772
|
+
/// The border radius of the Loader segment.
|
|
21773
|
+
/// @group loader
|
|
21759
21774
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
21775
|
+
|
|
21776
|
+
/// The size of the small Loader segment.
|
|
21777
|
+
/// @group loader
|
|
21760
21778
|
$kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21779
|
+
/// The size of the medium Loader segment.
|
|
21780
|
+
/// @group loader
|
|
21761
21781
|
$kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
|
|
21782
|
+
/// The size of the large Loader segment.
|
|
21783
|
+
/// @group loader
|
|
21762
21784
|
$kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
21763
21785
|
|
|
21786
|
+
/// The padding of the small Loader.
|
|
21787
|
+
/// @group loader
|
|
21764
21788
|
$kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
21789
|
+
/// The padding of the medium Loader.
|
|
21790
|
+
/// @group loader
|
|
21765
21791
|
$kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
21792
|
+
/// The padding of the large Loader.
|
|
21793
|
+
/// @group loader
|
|
21766
21794
|
$kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
21767
21795
|
|
|
21796
|
+
/// The width of the small spinner-3 Loader.
|
|
21797
|
+
/// @group loader
|
|
21768
21798
|
$kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
21769
|
-
|
|
21799
|
+
/// The width of the medium spinner-3 Loader.
|
|
21800
|
+
/// @group loader
|
|
21770
21801
|
$kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
21771
|
-
|
|
21802
|
+
/// The width of the large spinner-3 Loader.
|
|
21803
|
+
/// @group loader
|
|
21772
21804
|
$kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
21805
|
+
|
|
21806
|
+
/// The height of the small spinner-3 Loader.
|
|
21807
|
+
/// @group loader
|
|
21808
|
+
$kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
|
|
21809
|
+
/// The height of the medium spinner-3 Loader.
|
|
21810
|
+
/// @group loader
|
|
21811
|
+
$kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
|
|
21812
|
+
/// The height of the large spinner-3 Loader.
|
|
21813
|
+
/// @group loader
|
|
21773
21814
|
$kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
|
|
21774
21815
|
|
|
21816
|
+
/// The width of the small spinner-4 Loader.
|
|
21817
|
+
/// @group loader
|
|
21775
21818
|
$kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
|
|
21776
|
-
|
|
21819
|
+
/// The width of the medium spinner-4 Loader.
|
|
21820
|
+
/// @group loader
|
|
21777
21821
|
$kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
|
|
21778
|
-
|
|
21822
|
+
/// The width of the large spinner-4 Loader.
|
|
21823
|
+
/// @group loader
|
|
21779
21824
|
$kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
|
|
21825
|
+
|
|
21826
|
+
/// The height of the small spinner-4 Loader.
|
|
21827
|
+
/// @group loader
|
|
21828
|
+
$kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
|
|
21829
|
+
/// The height of the medium spinner-4 Loader.
|
|
21830
|
+
/// @group loader
|
|
21831
|
+
$kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
21832
|
+
/// The height of the large spinner-4 Loader.
|
|
21833
|
+
/// @group loader
|
|
21780
21834
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
21781
21835
|
|
|
21836
|
+
/// The color of the Loader based on the secondary theme color.
|
|
21837
|
+
/// @group loader
|
|
21782
21838
|
$kendo-loader-secondary-bg: #212529 !default;
|
|
21783
21839
|
|
|
21840
|
+
/// The border width of the container panel.
|
|
21841
|
+
/// @group loader
|
|
21784
21842
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
21843
|
+
/// The border style of the container panel.
|
|
21844
|
+
/// @group loader
|
|
21785
21845
|
$kendo-loader-container-panel-border-style: solid !default;
|
|
21846
|
+
/// The border color of the container panel.
|
|
21847
|
+
/// @group loader
|
|
21786
21848
|
$kendo-loader-container-panel-border-color: $kendo-component-border !default;
|
|
21849
|
+
/// The border radius of the container panel.
|
|
21850
|
+
/// @group loader
|
|
21787
21851
|
$kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
21852
|
+
/// The background color of the container panel.
|
|
21853
|
+
/// @group loader
|
|
21788
21854
|
$kendo-loader-container-panel-bg: $kendo-color-white !default;
|
|
21789
21855
|
|
|
21856
|
+
/// The padding of the small Loader container.
|
|
21857
|
+
/// @group loader
|
|
21790
21858
|
$kendo-loader-sm-container-padding: k-map-get( $kendo-spacing, 4 ) !default;
|
|
21791
|
-
|
|
21792
|
-
|
|
21793
|
-
|
|
21859
|
+
/// The padding of the medium Loader container.
|
|
21860
|
+
/// @group loader
|
|
21794
21861
|
$kendo-loader-md-container-padding: k-map-get( $kendo-spacing, 5 ) !default;
|
|
21795
|
-
|
|
21796
|
-
|
|
21797
|
-
|
|
21862
|
+
/// The padding of the large Loader container.
|
|
21863
|
+
/// @group loader
|
|
21798
21864
|
$kendo-loader-lg-container-padding: k-map-get( $kendo-spacing, 6 ) !default;
|
|
21865
|
+
|
|
21866
|
+
/// The gap of the small Loader container.
|
|
21867
|
+
/// @group loader
|
|
21868
|
+
$kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21869
|
+
/// The gap of the medium Loader container.
|
|
21870
|
+
/// @group loader
|
|
21871
|
+
$kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
21872
|
+
/// The gap of the large Loader container.
|
|
21873
|
+
/// @group loader
|
|
21799
21874
|
$kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
|
|
21800
|
-
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
21801
21875
|
|
|
21876
|
+
/// The font size of the small Loader container.
|
|
21877
|
+
/// @group loader
|
|
21878
|
+
$kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
|
|
21879
|
+
/// The font size of the medium Loader container.
|
|
21880
|
+
/// @group loader
|
|
21881
|
+
$kendo-loader-md-container-font-size: $kendo-font-size-md !default;
|
|
21882
|
+
/// The font size of the large Loader container.
|
|
21883
|
+
/// @group loader
|
|
21884
|
+
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
21802
21885
|
|
|
21803
|
-
// Loading
|
|
21886
|
+
// Loading indicator
|
|
21887
|
+
/// The background color of the Loading indicator.
|
|
21888
|
+
/// @group loading
|
|
21804
21889
|
$kendo-loading-bg: $kendo-component-bg !default;
|
|
21890
|
+
/// The text color of the Loading indicator.
|
|
21891
|
+
/// @group loading
|
|
21805
21892
|
$kendo-loading-text: currentColor !default;
|
|
21893
|
+
/// The opacity of the Loading indicator.
|
|
21894
|
+
/// @group loading
|
|
21806
21895
|
$kendo-loading-opacity: .3 !default;
|
|
21807
21896
|
|
|
21808
21897
|
// #endregion
|
|
@@ -25366,54 +25455,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
|
|
|
25366
25455
|
// File already imported_once. Skipping output.
|
|
25367
25456
|
// #endregion
|
|
25368
25457
|
|
|
25369
|
-
|
|
25370
25458
|
// Window
|
|
25371
25459
|
|
|
25460
|
+
/// The width of the border around the Window.
|
|
25461
|
+
/// @group window
|
|
25372
25462
|
$kendo-window-border-width: 1px !default;
|
|
25463
|
+
/// The border radius of the Window.
|
|
25464
|
+
/// @group window
|
|
25373
25465
|
$kendo-window-border-radius: $kendo-border-radius-md !default;
|
|
25466
|
+
/// The font family of the Window.
|
|
25467
|
+
/// @group window
|
|
25374
25468
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
25469
|
+
/// The font size of the Window.
|
|
25470
|
+
/// @group window
|
|
25375
25471
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
25472
|
+
/// The line height of the Window.
|
|
25473
|
+
/// @group window
|
|
25376
25474
|
$kendo-window-line-height: $kendo-line-height-md !default;
|
|
25377
25475
|
|
|
25476
|
+
/// The horizontal padding of the Window titlebar.
|
|
25477
|
+
/// @group window
|
|
25378
25478
|
$kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
25479
|
+
/// The vertical padding of the Window titlebar.
|
|
25480
|
+
/// @group window
|
|
25379
25481
|
$kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
25482
|
+
/// The width of the border of the Window titlebar.
|
|
25483
|
+
/// @group window
|
|
25380
25484
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
25485
|
+
/// The style of the border of the Window titlebar.
|
|
25486
|
+
/// @group window
|
|
25381
25487
|
$kendo-window-titlebar-border-style: solid !default;
|
|
25382
25488
|
|
|
25489
|
+
/// The font size of the title of the Window.
|
|
25490
|
+
/// @group window
|
|
25383
25491
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
25492
|
+
/// The line height of the title of the Window.
|
|
25493
|
+
/// @group window
|
|
25384
25494
|
$kendo-window-title-line-height: 1.5 !default;
|
|
25385
25495
|
|
|
25496
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
25497
|
+
/// @group window
|
|
25386
25498
|
$kendo-window-actions-gap: .5rem !default;
|
|
25387
|
-
|
|
25499
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
25500
|
+
/// @group window
|
|
25388
25501
|
$kendo-window-action-opacity: .5 !default;
|
|
25502
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
25503
|
+
/// @group window
|
|
25389
25504
|
$kendo-window-action-hover-opacity: .75 !default;
|
|
25390
25505
|
|
|
25506
|
+
/// The horizontal padding of the content of the Window.
|
|
25507
|
+
/// @group window
|
|
25391
25508
|
$kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
25509
|
+
/// The vertical padding of the content of the Window.
|
|
25510
|
+
/// @group window
|
|
25392
25511
|
$kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
25393
25512
|
|
|
25513
|
+
/// The horizontal padding of the Window action buttons.
|
|
25514
|
+
/// @group window
|
|
25394
25515
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
25516
|
+
/// The vertical padding of the Window action buttons.
|
|
25517
|
+
/// @group window
|
|
25395
25518
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
25519
|
+
/// The width of the top border of the Window action buttons.
|
|
25520
|
+
/// @group window
|
|
25396
25521
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
25397
25522
|
|
|
25523
|
+
/// The background color of the Window.
|
|
25524
|
+
/// @group window
|
|
25398
25525
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
25526
|
+
/// The text color of the Window.
|
|
25527
|
+
/// @group window
|
|
25399
25528
|
$kendo-window-text: $kendo-component-text !default;
|
|
25529
|
+
/// The border color of the Window.
|
|
25530
|
+
/// @group window
|
|
25400
25531
|
$kendo-window-border: $kendo-component-border !default;
|
|
25532
|
+
/// The box shadow of the Window.
|
|
25533
|
+
/// @group window
|
|
25534
|
+
$kendo-window-shadow: null !default;
|
|
25535
|
+
/// The box shadow of the focused Window.
|
|
25536
|
+
/// @group window
|
|
25537
|
+
$kendo-window-focus-shadow: null !default;
|
|
25401
25538
|
|
|
25539
|
+
/// The background color of the Window titlebar.
|
|
25540
|
+
/// @group window
|
|
25402
25541
|
$kendo-window-titlebar-bg: null !default;
|
|
25542
|
+
/// The text color of the Window titlebar.
|
|
25543
|
+
/// @group window
|
|
25403
25544
|
$kendo-window-titlebar-text: null !default;
|
|
25545
|
+
/// The border color of the Window titlebar.
|
|
25546
|
+
/// @group window
|
|
25404
25547
|
$kendo-window-titlebar-border: $kendo-component-border !default;
|
|
25548
|
+
/// The background gradient of the Window titlebar.
|
|
25549
|
+
/// @group window
|
|
25405
25550
|
$kendo-window-titlebar-gradient: null !default;
|
|
25406
25551
|
|
|
25407
|
-
|
|
25408
|
-
|
|
25409
|
-
|
|
25552
|
+
/// The map of the width for the different Window sizes.
|
|
25553
|
+
/// @group window
|
|
25410
25554
|
$kendo-window-sizes: (
|
|
25411
25555
|
sm: 300px,
|
|
25412
25556
|
md: 800px,
|
|
25413
25557
|
lg: 1200px
|
|
25414
25558
|
) !default;
|
|
25415
25559
|
|
|
25416
|
-
///
|
|
25560
|
+
/// The theme colors map for the Window.
|
|
25417
25561
|
/// @group window
|
|
25418
25562
|
$kendo-window-theme-colors: (
|
|
25419
25563
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -28370,56 +28514,56 @@ $_kendo-module-meta: (
|
|
|
28370
28514
|
|
|
28371
28515
|
// Component
|
|
28372
28516
|
// #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
|
|
28373
|
-
//
|
|
28517
|
+
// ListBox
|
|
28374
28518
|
|
|
28375
|
-
///
|
|
28519
|
+
/// The spacing between the ListBox elements.
|
|
28376
28520
|
/// @group listbox
|
|
28377
28521
|
$kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
28378
|
-
///
|
|
28522
|
+
/// The spacing between the ListBox buttons.
|
|
28379
28523
|
/// @group listbox
|
|
28380
28524
|
$kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
28381
|
-
///
|
|
28525
|
+
/// The width of the ListBox.
|
|
28382
28526
|
/// @group listbox
|
|
28383
28527
|
$kendo-listbox-width: 10em !default;
|
|
28384
|
-
///
|
|
28528
|
+
/// The height of the ListBox.
|
|
28385
28529
|
/// @group listbox
|
|
28386
28530
|
$kendo-listbox-default-height: 200px !default;
|
|
28387
|
-
///
|
|
28531
|
+
/// The width of the border around the ListBox.
|
|
28388
28532
|
/// @group listbox
|
|
28389
28533
|
$kendo-listbox-border-width: 1px !default;
|
|
28390
|
-
///
|
|
28534
|
+
/// The font family of the ListBox.
|
|
28391
28535
|
/// @group listbox
|
|
28392
28536
|
$kendo-listbox-font-family: $kendo-font-family !default;
|
|
28393
|
-
///
|
|
28537
|
+
/// The font size of the ListBox.
|
|
28394
28538
|
/// @group listbox
|
|
28395
28539
|
$kendo-listbox-font-size: $kendo-font-size-md !default;
|
|
28396
|
-
///
|
|
28540
|
+
/// The line height of the ListBoxx.
|
|
28397
28541
|
/// @group listbox
|
|
28398
28542
|
$kendo-listbox-line-height: $kendo-line-height-md !default;
|
|
28399
|
-
|
|
28400
|
-
///
|
|
28401
|
-
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
28402
|
-
/// Text color of the listbox.
|
|
28543
|
+
|
|
28544
|
+
/// The text color of the ListBox.
|
|
28403
28545
|
/// @group listbox
|
|
28404
28546
|
$kendo-listbox-text: $kendo-component-text !default;
|
|
28405
|
-
///
|
|
28547
|
+
/// The background color of the ListBox.
|
|
28548
|
+
/// @group listbox
|
|
28549
|
+
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
28550
|
+
/// The border color of the ListBox.
|
|
28406
28551
|
/// @group listbox
|
|
28407
28552
|
$kendo-listbox-border: $kendo-component-border !default;
|
|
28408
28553
|
|
|
28409
|
-
///
|
|
28554
|
+
/// The inline padding of the ListBox item.
|
|
28410
28555
|
/// @group listbox
|
|
28411
28556
|
$kendo-listbox-item-padding-x: null !default;
|
|
28412
|
-
///
|
|
28557
|
+
/// The block padding of the ListBox item.
|
|
28413
28558
|
/// @group listbox
|
|
28414
28559
|
$kendo-listbox-item-padding-y: null !default;
|
|
28415
28560
|
|
|
28416
|
-
///
|
|
28417
|
-
/// @group listbox
|
|
28418
|
-
$kendo-listbox-drop-hint-border-width: null !default;
|
|
28419
|
-
/// Width of the drop hint.
|
|
28561
|
+
/// The width of the ListBox drop hint.
|
|
28420
28562
|
/// @group listbox
|
|
28421
28563
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
28422
|
-
|
|
28564
|
+
/// The width of the border around the ListBox drop hint.
|
|
28565
|
+
/// @group listbox
|
|
28566
|
+
$kendo-listbox-drop-hint-border-width: null !default;
|
|
28423
28567
|
// #endregion
|
|
28424
28568
|
// #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
|
|
28425
28569
|
// #region @import "@progress/kendo-theme-default/scss/listbox/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listbox/_layout.scss
|
|
@@ -28596,77 +28740,78 @@ $_kendo-module-meta: (
|
|
|
28596
28740
|
|
|
28597
28741
|
// Component
|
|
28598
28742
|
// #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
|
|
28599
|
-
//
|
|
28743
|
+
// ProgressBar
|
|
28600
28744
|
|
|
28601
|
-
///
|
|
28745
|
+
/// The height of the ProgressBar.
|
|
28602
28746
|
/// @group progressbar
|
|
28603
28747
|
$kendo-progressbar-height: $progress-height !default;
|
|
28604
|
-
///
|
|
28748
|
+
/// The horizontal width of the ProgressBar.
|
|
28605
28749
|
/// @group progressbar
|
|
28606
28750
|
$kendo-progressbar-horizontal-width: 100% !default;
|
|
28607
|
-
///
|
|
28751
|
+
/// The animation timing of the ProgressBar.
|
|
28608
28752
|
/// @group progressbar
|
|
28609
28753
|
$kendo-progressbar-animation-timing: $progress-bar-animation-timing !default;
|
|
28610
|
-
///
|
|
28754
|
+
/// The width of the border around the ProgressBar.
|
|
28611
28755
|
/// @group progressbar
|
|
28612
28756
|
$kendo-progressbar-border-width: 0px !default;
|
|
28613
|
-
///
|
|
28757
|
+
/// The font family of the ProgressBar.
|
|
28614
28758
|
/// @group progressbar
|
|
28615
28759
|
$kendo-progressbar-font-family: $kendo-font-family !default;
|
|
28616
|
-
///
|
|
28760
|
+
/// The font size of the ProgressBar.
|
|
28617
28761
|
/// @group progressbar
|
|
28618
28762
|
$kendo-progressbar-font-size: $progress-font-size !default;
|
|
28619
|
-
///
|
|
28763
|
+
/// The line height of the ProgressBar.
|
|
28620
28764
|
/// @group progressbar
|
|
28621
28765
|
$kendo-progressbar-line-height: 1 !default;
|
|
28622
|
-
|
|
28766
|
+
|
|
28767
|
+
/// The background color of the ProgressBar.
|
|
28623
28768
|
/// @group progressbar
|
|
28624
28769
|
$kendo-progressbar-bg: $gray-200 !default;
|
|
28625
|
-
///
|
|
28770
|
+
/// The text color of the ProgressBar.
|
|
28626
28771
|
/// @group progressbar
|
|
28627
28772
|
$kendo-progressbar-text: k-contrast-color( $gray-200 ) !default;
|
|
28628
|
-
///
|
|
28773
|
+
/// The border color of the ProgressBar.
|
|
28629
28774
|
/// @group progressbar
|
|
28630
28775
|
$kendo-progressbar-border: null !default;
|
|
28631
|
-
///
|
|
28776
|
+
/// The background gradient of the ProgressBar.
|
|
28632
28777
|
/// @group progressbar
|
|
28633
28778
|
$kendo-progressbar-gradient: null !default;
|
|
28634
28779
|
|
|
28635
|
-
///
|
|
28780
|
+
/// The progress background color of the ProgressBar.
|
|
28636
28781
|
/// @group progressbar
|
|
28637
28782
|
$kendo-progressbar-value-bg: $kendo-selected-bg !default;
|
|
28638
|
-
///
|
|
28783
|
+
/// The progress text color of the ProgressBar.
|
|
28639
28784
|
/// @group progressbar
|
|
28640
28785
|
$kendo-progressbar-value-text: $kendo-selected-text !default;
|
|
28641
|
-
///
|
|
28786
|
+
/// The progress border color of the ProgressBar.
|
|
28642
28787
|
/// @group progressbar
|
|
28643
28788
|
$kendo-progressbar-value-border: null !default;
|
|
28644
|
-
///
|
|
28789
|
+
/// The progress background gradient of the ProgressBar.
|
|
28645
28790
|
/// @group progressbar
|
|
28646
28791
|
$kendo-progressbar-value-gradient: null !default;
|
|
28647
28792
|
|
|
28648
|
-
///
|
|
28793
|
+
/// The background color of the indeterminate ProgressBar.
|
|
28649
28794
|
/// @group progressbar
|
|
28650
28795
|
$kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
|
|
28651
|
-
///
|
|
28796
|
+
/// The text color of the indeterminate ProgressBar.
|
|
28652
28797
|
/// @group progressbar
|
|
28653
28798
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
28654
|
-
///
|
|
28799
|
+
/// The border color of the indeterminate ProgressBar.
|
|
28655
28800
|
/// @group progressbar
|
|
28656
28801
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
|
|
28657
|
-
///
|
|
28802
|
+
/// The background gradient of the indeterminate ProgressBar.
|
|
28658
28803
|
/// @group progressbar
|
|
28659
28804
|
$kendo-progressbar-indeterminate-gradient: null !default;
|
|
28660
28805
|
|
|
28661
|
-
///
|
|
28806
|
+
/// The border color of the chunk ProgressBar.
|
|
28662
28807
|
/// @group progressbar
|
|
28663
28808
|
$kendo-progressbar-chunk-border: $kendo-body-bg !default;
|
|
28664
28809
|
|
|
28665
28810
|
// Circular Progressbar
|
|
28666
|
-
///
|
|
28811
|
+
/// The arc stroke color of the circular ProgressBar.
|
|
28667
28812
|
/// @group progressbar
|
|
28668
28813
|
$kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
|
|
28669
|
-
///
|
|
28814
|
+
/// The scale stroke background color of the circular ProgressBar.
|
|
28670
28815
|
/// @group progressbar
|
|
28671
28816
|
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
28672
28817
|
|
|
@@ -32028,15 +32173,32 @@ $_kendo-module-meta: (
|
|
|
32028
32173
|
|
|
32029
32174
|
// Component
|
|
32030
32175
|
// #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
|
|
32031
|
-
//
|
|
32176
|
+
// ColorPalette
|
|
32177
|
+
|
|
32178
|
+
/// The font family of the ColorPalette.
|
|
32179
|
+
/// @group colorpalette
|
|
32032
32180
|
$kendo-color-palette-font-family: $kendo-font-family !default;
|
|
32181
|
+
/// The font size of the ColorPalette.
|
|
32182
|
+
/// @group colorpalette
|
|
32033
32183
|
$kendo-color-palette-font-size: $kendo-font-size-md !default;
|
|
32184
|
+
/// The line height of the ColorPalette.
|
|
32185
|
+
/// @group colorpalette
|
|
32034
32186
|
$kendo-color-palette-line-height: 0 !default;
|
|
32035
32187
|
|
|
32188
|
+
/// The width of the ColorPalette tile.
|
|
32189
|
+
/// @group colorpalette
|
|
32036
32190
|
$kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
|
|
32191
|
+
/// The height of the ColorPalette tile.
|
|
32192
|
+
/// @group colorpalette
|
|
32037
32193
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
32194
|
+
/// The shadow of the ColorPalette focused tile.
|
|
32195
|
+
/// @group colorpalette
|
|
32038
32196
|
$kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
32197
|
+
/// The shadow of the ColorPalette hovered tile.
|
|
32198
|
+
/// @group colorpalette
|
|
32039
32199
|
$kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
32200
|
+
/// The shadow of the ColorPalette selected tile.
|
|
32201
|
+
/// @group colorpalette
|
|
32040
32202
|
$kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
|
|
32041
32203
|
|
|
32042
32204
|
// #endregion
|
|
@@ -32329,59 +32491,140 @@ $_kendo-module-meta: (
|
|
|
32329
32491
|
// File already imported_once. Skipping output.
|
|
32330
32492
|
// #endregion
|
|
32331
32493
|
|
|
32332
|
-
|
|
32333
32494
|
// ColorGradient
|
|
32495
|
+
|
|
32496
|
+
/// The spacer of the ColorGradient.
|
|
32497
|
+
/// @group cologradient
|
|
32334
32498
|
$kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 4 ) !default;
|
|
32335
32499
|
|
|
32500
|
+
/// The width of the ColorGradient.
|
|
32501
|
+
/// @group cologradient
|
|
32336
32502
|
$kendo-color-gradient-width: 328px !default;
|
|
32503
|
+
// The width of the border around the ColorGradient.
|
|
32504
|
+
/// @group cologradient
|
|
32337
32505
|
$kendo-color-gradient-border-width: 1px !default;
|
|
32506
|
+
/// The border radius of the ColorGradient.
|
|
32507
|
+
/// @group cologradient
|
|
32338
32508
|
$kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
|
|
32509
|
+
/// The vertical padding of the ColorGradient.
|
|
32510
|
+
/// @group cologradient
|
|
32339
32511
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
32512
|
+
/// The horizontal padding of the ColorGradient.
|
|
32513
|
+
/// @group cologradient
|
|
32340
32514
|
$kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
|
|
32515
|
+
/// The spacing between the sections of the ColorGradient.
|
|
32516
|
+
/// @group cologradient
|
|
32341
32517
|
$kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
|
|
32518
|
+
/// The font family of the ColorGradient.
|
|
32519
|
+
/// @group cologradient
|
|
32342
32520
|
$kendo-color-gradient-font-family: $kendo-font-family !default;
|
|
32521
|
+
/// The font size of the ColorGradient.
|
|
32522
|
+
/// @group cologradient
|
|
32343
32523
|
$kendo-color-gradient-font-size: $kendo-font-size-md !default;
|
|
32524
|
+
/// The line height of the ColorGradient.
|
|
32525
|
+
/// @group cologradient
|
|
32344
32526
|
$kendo-color-gradient-line-height: $kendo-line-height-md !default;
|
|
32345
|
-
|
|
32527
|
+
/// The text color of the ColorGradient.
|
|
32528
|
+
/// @group cologradient
|
|
32346
32529
|
$kendo-color-gradient-text: $kendo-component-text !default;
|
|
32530
|
+
/// The background color of the ColorGradient.
|
|
32531
|
+
/// @group cologradient
|
|
32532
|
+
$kendo-color-gradient-bg: $kendo-component-bg !default;
|
|
32533
|
+
/// The border color of the ColorGradient.
|
|
32534
|
+
/// @group cologradient
|
|
32347
32535
|
$kendo-color-gradient-border: $kendo-component-border !default;
|
|
32348
32536
|
|
|
32537
|
+
/// The border color of the focused ColorGradient.
|
|
32538
|
+
/// @group cologradient
|
|
32349
32539
|
$kendo-color-gradient-focus-border: $kendo-hover-border !default;
|
|
32540
|
+
/// The box shadow of the focused ColorGradient.
|
|
32541
|
+
/// @group cologradient
|
|
32350
32542
|
$kendo-color-gradient-focus-shadow: null !default;
|
|
32351
32543
|
|
|
32544
|
+
/// The border radius of the ColorGradient canvas.
|
|
32545
|
+
/// @group cologradient
|
|
32352
32546
|
$kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
32547
|
+
/// The spacing between the items of the ColorGradient canvas.
|
|
32548
|
+
/// @group cologradient
|
|
32353
32549
|
$kendo-color-gradient-canvas-gap: k-map-get( $kendo-spacing, 3 ) !default;
|
|
32550
|
+
/// The height the ColorGradient canvas hsv rectangle.
|
|
32551
|
+
/// @group cologradient
|
|
32354
32552
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
32355
32553
|
|
|
32554
|
+
/// The width of the ColorGradient slider.
|
|
32555
|
+
/// @group cologradient
|
|
32356
32556
|
$kendo-color-gradient-slider-track-size: 10px !default;
|
|
32557
|
+
/// The border radius of the ColorGradient slider.
|
|
32558
|
+
/// @group cologradient
|
|
32357
32559
|
$kendo-color-gradient-slider-border-radius: 10px !default;
|
|
32560
|
+
/// The width of the border around the ColorGradient slider drag handle.
|
|
32561
|
+
/// @group cologradient
|
|
32358
32562
|
$kendo-color-gradient-slider-draghandle-border-width: 3px !default;
|
|
32359
32563
|
|
|
32564
|
+
/// The height of the ColorGradient vertical slider.
|
|
32565
|
+
/// @group cologradient
|
|
32360
32566
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
32567
|
+
/// The width of the ColorGradient horizontal slider.
|
|
32568
|
+
/// @group cologradient
|
|
32361
32569
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
32362
32570
|
|
|
32571
|
+
/// The width of the ColorGradient canvas drag handle.
|
|
32572
|
+
/// @group cologradient
|
|
32363
32573
|
$kendo-color-gradient-draghandle-width: 14px !default;
|
|
32574
|
+
/// The height of the ColorGradient canvas drag handle.
|
|
32575
|
+
/// @group cologradient
|
|
32364
32576
|
$kendo-color-gradient-draghandle-height: 14px !default;
|
|
32577
|
+
/// The width of the border around the ColorGradient canvas drag handle.
|
|
32578
|
+
/// @group cologradient
|
|
32365
32579
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
32580
|
+
/// The border radius of the ColorGradient canvas drag handle.
|
|
32581
|
+
/// @group cologradient
|
|
32366
32582
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
32367
|
-
|
|
32583
|
+
/// The text color of the ColorGradient canvas drag handle.
|
|
32584
|
+
/// @group cologradient
|
|
32368
32585
|
$kendo-color-gradient-draghandle-text: null !default;
|
|
32586
|
+
/// The background color of the ColorGradient canvas drag handle.
|
|
32587
|
+
/// @group cologradient
|
|
32588
|
+
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
32589
|
+
/// The color of the border around the ColorGradient canvas drag handle.
|
|
32590
|
+
/// @group cologradient
|
|
32369
32591
|
$kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
|
|
32592
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
32593
|
+
/// @group cologradient
|
|
32370
32594
|
$kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
|
|
32595
|
+
/// The box shadow of the focused ColorGradient canvas drag handle.
|
|
32596
|
+
/// @group cologradient
|
|
32371
32597
|
$kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
32598
|
+
/// The box shadow of the hovered ColorGradient canvas drag handle.
|
|
32599
|
+
/// @group cologradient
|
|
32372
32600
|
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
|
|
32373
32601
|
|
|
32602
|
+
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
32603
|
+
/// @group cologradient
|
|
32374
32604
|
$kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
|
|
32605
|
+
/// The horizontal margin of the ColorGradient canvas drag handle.
|
|
32606
|
+
/// @group cologradient
|
|
32375
32607
|
$kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
|
|
32376
32608
|
|
|
32609
|
+
/// The width of the ColorGradient input.
|
|
32610
|
+
/// @group cologradient
|
|
32377
32611
|
$kendo-color-gradient-input-width: 56px !default;
|
|
32612
|
+
/// The spacing between the ColorGradient inputs.
|
|
32613
|
+
/// @group cologradient
|
|
32378
32614
|
$kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 2 ) !default;
|
|
32615
|
+
/// The spacing between the ColorGradient inputs and their labels.
|
|
32616
|
+
/// @group cologradient
|
|
32379
32617
|
$kendo-color-gradient-input-label-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
32618
|
+
/// The text color of the ColorGradient input labels.
|
|
32619
|
+
/// @group cologradient
|
|
32380
32620
|
$kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
|
|
32381
32621
|
|
|
32622
|
+
/// The font weight of the ColorGradient contrast ratio text.
|
|
32623
|
+
/// @group cologradient
|
|
32382
32624
|
$kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
|
|
32625
|
+
/// The spacing between the items in the ColorGradient contrast tool.
|
|
32626
|
+
/// @group cologradient
|
|
32383
32627
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 2 ) !default;
|
|
32384
|
-
|
|
32385
32628
|
// #endregion
|
|
32386
32629
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
32387
32630
|
// #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
|
|
@@ -32748,38 +32991,86 @@ $_kendo-module-meta: (
|
|
|
32748
32991
|
|
|
32749
32992
|
// Component
|
|
32750
32993
|
// #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
|
|
32751
|
-
//
|
|
32994
|
+
// ColorEditor/FlatColorPicker
|
|
32995
|
+
|
|
32996
|
+
/// The spacer of the ColorEditor.
|
|
32997
|
+
/// @group coloreditor
|
|
32752
32998
|
$kendo-color-editor-spacer: k-map-get( $kendo-spacing, 4 ) !default;
|
|
32753
32999
|
|
|
33000
|
+
/// The minimum width of the ColorEditor.
|
|
33001
|
+
/// @group coloreditor
|
|
32754
33002
|
$kendo-color-editor-min-width: 328px !default;
|
|
33003
|
+
/// The width of the border around the ColorEditor.
|
|
33004
|
+
/// @group coloreditor
|
|
32755
33005
|
$kendo-color-editor-border-width: 1px !default;
|
|
33006
|
+
/// The border radius of the ColorEditor.
|
|
33007
|
+
/// @group coloreditor
|
|
32756
33008
|
$kendo-color-editor-border-radius: $kendo-border-radius-md !default;
|
|
33009
|
+
/// The font family of the ColorEditor.
|
|
33010
|
+
/// @group coloreditor
|
|
32757
33011
|
$kendo-color-editor-font-family: $kendo-font-family !default;
|
|
33012
|
+
/// The font size of the ColorEditor.
|
|
33013
|
+
/// @group coloreditor
|
|
32758
33014
|
$kendo-color-editor-font-size: $kendo-font-size-md !default;
|
|
33015
|
+
/// The line height of the ColorEditor.
|
|
33016
|
+
/// @group coloreditor
|
|
32759
33017
|
$kendo-color-editor-line-height: $kendo-line-height-md !default;
|
|
32760
|
-
|
|
33018
|
+
/// The text color of the ColorEditor.
|
|
33019
|
+
/// @group coloreditor
|
|
32761
33020
|
$kendo-color-editor-text: $kendo-component-text !default;
|
|
33021
|
+
/// The background color of the ColorEditor.
|
|
33022
|
+
/// @group coloreditor
|
|
33023
|
+
$kendo-color-editor-bg: $kendo-component-bg !default;
|
|
33024
|
+
/// The border color of the ColorEditor.
|
|
33025
|
+
/// @group coloreditor
|
|
32762
33026
|
$kendo-color-editor-border: $kendo-component-border !default;
|
|
32763
33027
|
|
|
33028
|
+
/// The border color of the focused ColorEditor.
|
|
33029
|
+
/// @group coloreditor
|
|
32764
33030
|
$kendo-color-editor-focus-border: $kendo-hover-border !default;
|
|
33031
|
+
/// The box shadow of the focused ColorEditor.
|
|
33032
|
+
/// @group coloreditor
|
|
32765
33033
|
$kendo-color-editor-focus-shadow: null !default;
|
|
32766
33034
|
|
|
33035
|
+
/// The vertical padding of the ColorEditor header.
|
|
33036
|
+
/// @group coloreditor
|
|
32767
33037
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
33038
|
+
/// The horizontal padding of the ColorEditor header.
|
|
33039
|
+
/// @group coloreditor
|
|
32768
33040
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
33041
|
+
/// The spacing between the ColorEditor header actions.
|
|
33042
|
+
/// @group coloreditor
|
|
32769
33043
|
$kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 2 ) !default;
|
|
32770
33044
|
|
|
32771
|
-
|
|
33045
|
+
/// The width of the ColorEditor preview.
|
|
33046
|
+
/// @group coloreditor
|
|
32772
33047
|
$kendo-color-editor-color-preview-width: 32px !default;
|
|
33048
|
+
/// The height of the ColorEditor preview.
|
|
33049
|
+
/// @group coloreditor
|
|
32773
33050
|
$kendo-color-editor-color-preview-height: 12px !default;
|
|
33051
|
+
/// The spacing between the colors in the ColorEditor preview.
|
|
33052
|
+
/// @group coloreditor
|
|
33053
|
+
$kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
32774
33054
|
|
|
33055
|
+
/// The vertical padding of the ColorEditor views container.
|
|
33056
|
+
/// @group coloreditor
|
|
32775
33057
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
33058
|
+
/// The horizontal padding of the ColorEditor views container.
|
|
33059
|
+
/// @group coloreditor
|
|
32776
33060
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
33061
|
+
/// The spacing of the ColorEditor views container.
|
|
33062
|
+
/// @group coloreditor
|
|
32777
33063
|
$kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
|
|
32778
33064
|
|
|
33065
|
+
/// The outline color of the focused ColorGradient.
|
|
33066
|
+
/// @group coloreditor
|
|
32779
33067
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
33068
|
+
/// The outline width of the focused ColorGradient.
|
|
33069
|
+
/// @group coloreditor
|
|
32780
33070
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
33071
|
+
/// The outline offset of the focused ColorGradient.
|
|
33072
|
+
/// @group coloreditor
|
|
32781
33073
|
$kendo-color-editor-color-gradient-focus-outline-offset: 2px !default;
|
|
32782
|
-
|
|
32783
33074
|
// #endregion
|
|
32784
33075
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
32785
33076
|
// #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
|
|
@@ -34411,7 +34702,7 @@ $kendo-treeview-lg-line-height: $kendo-line-height-md !default;
|
|
|
34411
34702
|
|
|
34412
34703
|
/// The indentation of child groups in the TreeView.
|
|
34413
34704
|
/// @group treeview
|
|
34414
|
-
$kendo-treeview-indent:
|
|
34705
|
+
$kendo-treeview-indent: 24px !default;
|
|
34415
34706
|
|
|
34416
34707
|
/// The horizontal padding of the TreeView items.
|
|
34417
34708
|
/// @group treeview
|
|
@@ -34444,6 +34735,25 @@ $kendo-treeview-item-border-width: 0px !default;
|
|
|
34444
34735
|
/// @group treeview
|
|
34445
34736
|
$kendo-treeview-item-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
34446
34737
|
|
|
34738
|
+
/// The horizontal padding of the checkbox in the small TreeView.
|
|
34739
|
+
/// @group treeview
|
|
34740
|
+
$kendo-treeview-sm-checkbox-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
34741
|
+
/// The horizontal padding of the checkbox in the medium TreeView.
|
|
34742
|
+
/// @group treeview
|
|
34743
|
+
$kendo-treeview-md-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
34744
|
+
/// The horizontal padding of the checkbox in the large TreeView.
|
|
34745
|
+
/// @group treeview
|
|
34746
|
+
$kendo-treeview-lg-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
34747
|
+
/// The vertical padding of the checkbox in the small TreeView.
|
|
34748
|
+
/// @group treeview
|
|
34749
|
+
$kendo-treeview-sm-checkbox-padding-y: k-map-get( $kendo-spacing, .5 ) !default;
|
|
34750
|
+
/// The vertical padding of the checkbox in the medium TreeView.
|
|
34751
|
+
/// @group treeview
|
|
34752
|
+
$kendo-treeview-md-checkbox-padding-y: null !default;
|
|
34753
|
+
/// The vertical padding of the checkbox in the large TreeView.
|
|
34754
|
+
/// @group treeview
|
|
34755
|
+
$kendo-treeview-lg-checkbox-padding-y: null !default;
|
|
34756
|
+
|
|
34447
34757
|
|
|
34448
34758
|
/// The sizes map of the TreeView.
|
|
34449
34759
|
/// @group treeview
|
|
@@ -34452,19 +34762,25 @@ $kendo-treeview-sizes: (
|
|
|
34452
34762
|
font-size: $kendo-treeview-sm-font-size,
|
|
34453
34763
|
line-height: $kendo-treeview-sm-line-height,
|
|
34454
34764
|
item-padding-x: $kendo-treeview-sm-item-padding-x,
|
|
34455
|
-
item-padding-y: $kendo-treeview-sm-item-padding-y
|
|
34765
|
+
item-padding-y: $kendo-treeview-sm-item-padding-y,
|
|
34766
|
+
checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x,
|
|
34767
|
+
checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y
|
|
34456
34768
|
),
|
|
34457
34769
|
md: (
|
|
34458
34770
|
font-size: $kendo-treeview-md-font-size,
|
|
34459
34771
|
line-height: $kendo-treeview-md-line-height,
|
|
34460
34772
|
item-padding-x: $kendo-treeview-md-item-padding-x,
|
|
34461
|
-
item-padding-y: $kendo-treeview-md-item-padding-y
|
|
34773
|
+
item-padding-y: $kendo-treeview-md-item-padding-y,
|
|
34774
|
+
checkbox-padding-x: $kendo-treeview-md-checkbox-padding-x,
|
|
34775
|
+
checkbox-padding-y: $kendo-treeview-md-checkbox-padding-y
|
|
34462
34776
|
),
|
|
34463
34777
|
lg: (
|
|
34464
34778
|
font-size: $kendo-treeview-lg-font-size,
|
|
34465
34779
|
line-height: $kendo-treeview-lg-line-height,
|
|
34466
34780
|
item-padding-x: $kendo-treeview-lg-item-padding-x,
|
|
34467
|
-
item-padding-y: $kendo-treeview-lg-item-padding-y
|
|
34781
|
+
item-padding-y: $kendo-treeview-lg-item-padding-y,
|
|
34782
|
+
checkbox-padding-x: $kendo-treeview-lg-checkbox-padding-x,
|
|
34783
|
+
checkbox-padding-y: $kendo-treeview-lg-checkbox-padding-y
|
|
34468
34784
|
)
|
|
34469
34785
|
) !default;
|
|
34470
34786
|
|
|
@@ -34542,6 +34858,7 @@ $kendo-treeview-loadmore-focus-border: null !default;
|
|
|
34542
34858
|
/// @group treeview
|
|
34543
34859
|
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
34544
34860
|
|
|
34861
|
+
|
|
34545
34862
|
// #endregion
|
|
34546
34863
|
// #region @import "./_layout.scss"; -> scss/treeview/_layout.scss
|
|
34547
34864
|
// #region @import "@progress/kendo-theme-default/scss/treeview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/treeview/_layout.scss
|
|
@@ -34620,13 +34937,18 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
34620
34937
|
|
|
34621
34938
|
// Treeview toggle
|
|
34622
34939
|
.k-treeview-toggle {
|
|
34623
|
-
margin-
|
|
34940
|
+
margin-inline-start: -$kendo-treeview-indent;
|
|
34624
34941
|
flex: none;
|
|
34625
34942
|
display: inline-flex;
|
|
34626
34943
|
flex-flow: row nowrap;
|
|
34627
34944
|
align-items: center;
|
|
34628
34945
|
cursor: pointer;
|
|
34629
34946
|
}
|
|
34947
|
+
.k-treeview-toggle .k-icon,
|
|
34948
|
+
.k-treeview-toggle .k-svg-icon {
|
|
34949
|
+
padding: $kendo-icon-padding;
|
|
34950
|
+
box-sizing: content-box;
|
|
34951
|
+
}
|
|
34630
34952
|
|
|
34631
34953
|
|
|
34632
34954
|
// Loading icon
|
|
@@ -34638,8 +34960,6 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
34638
34960
|
// Checkbox
|
|
34639
34961
|
.k-treeview .k-checkbox-wrap,
|
|
34640
34962
|
.k-treeview .k-checkbox-wrapper {
|
|
34641
|
-
margin-left: $kendo-icon-spacing;
|
|
34642
|
-
margin-right: $kendo-icon-spacing;
|
|
34643
34963
|
align-self: center;
|
|
34644
34964
|
}
|
|
34645
34965
|
|
|
@@ -34695,12 +35015,6 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
34695
35015
|
padding-right: $kendo-treeview-indent;
|
|
34696
35016
|
}
|
|
34697
35017
|
|
|
34698
|
-
// Treeview toggle
|
|
34699
|
-
.k-treeview-toggle {
|
|
34700
|
-
margin-left: 0;
|
|
34701
|
-
margin-right: -$kendo-treeview-indent;
|
|
34702
|
-
}
|
|
34703
|
-
|
|
34704
35018
|
// Loading
|
|
34705
35019
|
.k-treeview-loading {
|
|
34706
35020
|
margin-right: 0;
|
|
@@ -34725,6 +35039,8 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
34725
35039
|
$_line-height: k-map-get( $size-props, line-height);
|
|
34726
35040
|
$_item-padding-x: k-map-get( $size-props, item-padding-x);
|
|
34727
35041
|
$_item-padding-y: k-map-get( $size-props, item-padding-y);
|
|
35042
|
+
$_checkbox-padding-x: k-map-get( $size-props, checkbox-padding-x );
|
|
35043
|
+
$_checkbox-padding-y: k-map-get( $size-props, checkbox-padding-y );
|
|
34728
35044
|
|
|
34729
35045
|
.k-treeview-#{$size} {
|
|
34730
35046
|
font-size: $_font-size;
|
|
@@ -34734,6 +35050,11 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
34734
35050
|
padding-block: $_item-padding-y;
|
|
34735
35051
|
padding-inline: $_item-padding-x;
|
|
34736
35052
|
}
|
|
35053
|
+
|
|
35054
|
+
.k-checkbox-wrap {
|
|
35055
|
+
padding-block: $_checkbox-padding-y;
|
|
35056
|
+
padding-inline: $_checkbox-padding-x;
|
|
35057
|
+
}
|
|
34737
35058
|
}
|
|
34738
35059
|
}
|
|
34739
35060
|
|
|
@@ -34905,13 +35226,12 @@ $kendo-dropdowntree-popup-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
34905
35226
|
.k-popup-dropdowntree, // remove legacy class once updated in components
|
|
34906
35227
|
.k-dropdowntree-popup,
|
|
34907
35228
|
.k-multiselecttree-popup {
|
|
34908
|
-
|
|
34909
|
-
|
|
34910
|
-
|
|
34911
|
-
padding: $kendo-dropdowntree-popup-padding-y $kendo-dropdowntree-popup-padding-x 0;
|
|
35229
|
+
.k-treeview {
|
|
35230
|
+
padding-block: k-math-div( $kendo-dropdowntree-popup-padding-y, 2 );
|
|
35231
|
+
padding-inline: k-math-div( $kendo-dropdowntree-popup-padding-x, 2 );
|
|
34912
35232
|
}
|
|
34913
35233
|
|
|
34914
|
-
.k-
|
|
35234
|
+
.k-check-all {
|
|
34915
35235
|
padding-block: $kendo-dropdowntree-popup-padding-y;
|
|
34916
35236
|
padding-inline: $kendo-dropdowntree-popup-padding-x;
|
|
34917
35237
|
}
|
|
@@ -36253,49 +36573,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
|
|
|
36253
36573
|
// #region @import "./_variables.scss"; -> scss/upload/_variables.scss
|
|
36254
36574
|
// Upload
|
|
36255
36575
|
|
|
36576
|
+
/// The width of the border around the Upload.
|
|
36577
|
+
/// @group upload
|
|
36256
36578
|
$kendo-upload-border-width: 1px !default;
|
|
36579
|
+
/// The font family of the Upload.
|
|
36580
|
+
/// @group upload
|
|
36257
36581
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
36582
|
+
/// The font size of the Upload.
|
|
36583
|
+
/// @group upload
|
|
36258
36584
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
36585
|
+
/// The line height of the Upload.
|
|
36586
|
+
/// @group upload
|
|
36259
36587
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
36588
|
+
/// The maximum height of the list with uploaded items.
|
|
36589
|
+
/// @group upload
|
|
36260
36590
|
$kendo-upload-max-height: 300px !default;
|
|
36261
36591
|
|
|
36262
|
-
|
|
36592
|
+
/// The text color of the Upload.
|
|
36593
|
+
/// @group upload
|
|
36263
36594
|
$kendo-upload-text: $kendo-component-text !default;
|
|
36595
|
+
/// The background color of the Upload.
|
|
36596
|
+
/// @group upload
|
|
36597
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
36598
|
+
/// The border color of the Upload.
|
|
36599
|
+
/// @group upload
|
|
36264
36600
|
$kendo-upload-border: $kendo-component-border !default;
|
|
36265
36601
|
|
|
36602
|
+
/// The horizontal padding of the Upload dropzone.
|
|
36603
|
+
/// @group upload
|
|
36266
36604
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
36605
|
+
/// The vertical padding of the Upload dropzone.
|
|
36606
|
+
/// @group upload
|
|
36267
36607
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
36268
|
-
|
|
36608
|
+
/// The text color of the Upload dropzone.
|
|
36609
|
+
/// @group upload
|
|
36269
36610
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
36611
|
+
/// The background color of the Upload dropzone.
|
|
36612
|
+
/// @group upload
|
|
36613
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
36614
|
+
/// The border color of the Upload dropzone.
|
|
36615
|
+
/// @group upload
|
|
36270
36616
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
36617
|
+
/// The background color of the hovered Upload dropzone.
|
|
36618
|
+
/// @group upload
|
|
36271
36619
|
$kendo-upload-dropzone-hover-bg: k-try-shade( $kendo-upload-dropzone-bg, .2 ) !default;
|
|
36272
36620
|
|
|
36621
|
+
/// The text color of the Upload status message.
|
|
36622
|
+
/// @group upload
|
|
36273
36623
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
36624
|
+
/// The opacity of the Upload status message.
|
|
36625
|
+
/// @group upload
|
|
36274
36626
|
$kendo-upload-status-text-opacity: null !default;
|
|
36275
36627
|
|
|
36628
|
+
/// The horizontal padding of an uploaded item.
|
|
36629
|
+
/// @group upload
|
|
36276
36630
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
36631
|
+
/// The vertical padding of an uploaded item.
|
|
36632
|
+
/// @group upload
|
|
36277
36633
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
36278
36634
|
|
|
36635
|
+
/// The vertical spacing between uploaded batch items.
|
|
36636
|
+
/// @group upload
|
|
36279
36637
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
36280
36638
|
|
|
36639
|
+
/// The font size of the Upload validation message.
|
|
36640
|
+
/// @group upload
|
|
36281
36641
|
$kendo-upload-validation-font-size: 11px !default;
|
|
36642
|
+
/// The horizontal spacing of the Upload status icon.
|
|
36643
|
+
/// @group upload
|
|
36282
36644
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
36645
|
+
/// The color of the uploaded items icon.
|
|
36646
|
+
/// @group upload
|
|
36283
36647
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
36284
36648
|
|
|
36285
|
-
|
|
36286
|
-
|
|
36287
|
-
$kendo-upload-item-image-border: 2px !default;
|
|
36288
|
-
|
|
36649
|
+
/// The thickness of the Upload progress bar.
|
|
36650
|
+
/// @group upload
|
|
36289
36651
|
$kendo-upload-progress-thickness: 2px !default;
|
|
36652
|
+
/// The background color of the Upload progress bar.
|
|
36653
|
+
/// @group upload
|
|
36290
36654
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
36291
36655
|
|
|
36292
|
-
|
|
36656
|
+
/// The success text color of the Upload.
|
|
36657
|
+
/// @group upload
|
|
36293
36658
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
36659
|
+
/// The success background color of the Upload progress bar.
|
|
36660
|
+
/// @group upload
|
|
36661
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
36294
36662
|
|
|
36295
|
-
|
|
36663
|
+
/// The error text color of the Upload.
|
|
36664
|
+
/// @group upload
|
|
36296
36665
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
36297
|
-
|
|
36666
|
+
/// The error background color of the Upload progress bar.
|
|
36667
|
+
/// @group upload
|
|
36668
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
36298
36669
|
|
|
36670
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
36671
|
+
/// @group upload
|
|
36299
36672
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
36300
36673
|
|
|
36301
36674
|
// #endregion
|
|
@@ -36733,29 +37106,60 @@ $_kendo-module-meta: (
|
|
|
36733
37106
|
|
|
36734
37107
|
// Component
|
|
36735
37108
|
// #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
|
|
36736
|
-
//
|
|
36737
|
-
|
|
37109
|
+
// AppBar
|
|
37110
|
+
|
|
37111
|
+
/// The horizontal margin of the AppBar.
|
|
37112
|
+
/// @group appbar
|
|
36738
37113
|
$kendo-appbar-margin-x: null !default;
|
|
36739
|
-
|
|
37114
|
+
/// The vertical margin of the AppBar.
|
|
37115
|
+
/// @group appbar
|
|
37116
|
+
$kendo-appbar-margin-y: null !default;
|
|
37117
|
+
/// The horizontal padding of the AppBar.
|
|
37118
|
+
/// @group appbar
|
|
36740
37119
|
$kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
37120
|
+
/// The vertical padding of the AppBar.
|
|
37121
|
+
/// @group appbar
|
|
37122
|
+
$kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
37123
|
+
/// The width of the border around the AppBar.
|
|
37124
|
+
/// @group appbar
|
|
36741
37125
|
$kendo-appbar-border-width: 0px !default;
|
|
36742
|
-
|
|
37126
|
+
/// The z-index of the AppBar.
|
|
37127
|
+
/// @group appbar
|
|
36743
37128
|
$kendo-appbar-zindex: 1000 !default;
|
|
36744
|
-
|
|
37129
|
+
/// The font family of the AppBar.
|
|
37130
|
+
/// @group appbar
|
|
37131
|
+
$kendo-appbar-font-family: $kendo-font-family !default;
|
|
37132
|
+
/// The font size of the AppBar.
|
|
37133
|
+
/// @group appbar
|
|
36745
37134
|
$kendo-appbar-font-size: $kendo-font-size-md !default;
|
|
37135
|
+
/// The line height of the AppBar.
|
|
37136
|
+
/// @group appbar
|
|
36746
37137
|
$kendo-appbar-line-height: $kendo-line-height-md !default;
|
|
36747
|
-
|
|
37138
|
+
|
|
37139
|
+
/// The spacing between the AppBar sections.
|
|
37140
|
+
/// @group appbar
|
|
36748
37141
|
$kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
36749
37142
|
|
|
37143
|
+
/// The background color of the AppBar based on light theme color.
|
|
37144
|
+
/// @group appbar
|
|
36750
37145
|
$kendo-appbar-light-bg: $kendo-color-light !default;
|
|
37146
|
+
/// The text color of the AppBar based on light theme color.
|
|
37147
|
+
/// @group appbar
|
|
36751
37148
|
$kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
|
|
36752
37149
|
|
|
37150
|
+
/// The background color of the AppBar based on dark theme color.
|
|
37151
|
+
/// @group appbar
|
|
36753
37152
|
$kendo-appbar-dark-bg: $kendo-color-dark !default;
|
|
37153
|
+
/// The text color of the AppBar based on dark theme color.
|
|
37154
|
+
/// @group appbar
|
|
36754
37155
|
$kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
36755
37156
|
|
|
37157
|
+
/// The box shadow of the AppBar.
|
|
37158
|
+
/// @group appbar
|
|
36756
37159
|
$kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
|
|
37160
|
+
/// The box shadow of the AppBar with bottom position.
|
|
37161
|
+
/// @group appbar
|
|
36757
37162
|
$kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
|
|
36758
|
-
|
|
36759
37163
|
// #endregion
|
|
36760
37164
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
36761
37165
|
// #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
|
|
@@ -38578,17 +38982,31 @@ $_kendo-module-meta: (
|
|
|
38578
38982
|
// Component
|
|
38579
38983
|
// #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
|
|
38580
38984
|
// Dialog
|
|
38985
|
+
|
|
38986
|
+
/// The background color of the Dialog titlebar.
|
|
38987
|
+
/// @group dialog
|
|
38581
38988
|
$kendo-dialog-titlebar-bg: null !default;
|
|
38989
|
+
/// The text color of the Dialog titlebar.
|
|
38990
|
+
/// @group dialog
|
|
38582
38991
|
$kendo-dialog-titlebar-text: null !default;
|
|
38992
|
+
/// The border color of the Dialog titlebar.
|
|
38993
|
+
/// @group dialog
|
|
38583
38994
|
$kendo-dialog-titlebar-border: null !default;
|
|
38584
38995
|
|
|
38996
|
+
/// The horizontal padding of the Dialog action buttons.
|
|
38997
|
+
/// @group dialog
|
|
38585
38998
|
$kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
38999
|
+
/// The vertical padding of the Dialog action buttons.
|
|
39000
|
+
/// @group dialog
|
|
38586
39001
|
$kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
39002
|
+
/// The width of the top border of the Dialog action buttons.
|
|
39003
|
+
/// @group dialog
|
|
38587
39004
|
$kendo-dialog-buttongroup-border-width: 1px !default;
|
|
38588
|
-
|
|
39005
|
+
/// The spacing between the Dialog action buttons.
|
|
39006
|
+
/// @group dialog
|
|
38589
39007
|
$kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
|
|
38590
39008
|
|
|
38591
|
-
///
|
|
39009
|
+
/// The theme colors map for the Dialog.
|
|
38592
39010
|
/// @group dialog
|
|
38593
39011
|
$kendo-dialog-theme-colors: (
|
|
38594
39012
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -39212,44 +39630,43 @@ $_kendo-module-meta: (
|
|
|
39212
39630
|
// #region @import "./_variables.scss"; -> scss/notification/_variables.scss
|
|
39213
39631
|
// Notification
|
|
39214
39632
|
|
|
39215
|
-
///
|
|
39633
|
+
/// The horizontal padding of the Notification.
|
|
39216
39634
|
/// @group notification
|
|
39217
39635
|
$kendo-notification-padding-x: $alert-padding-x !default;
|
|
39218
|
-
///
|
|
39636
|
+
/// The vertical padding of the Notification.
|
|
39219
39637
|
/// @group notification
|
|
39220
39638
|
$kendo-notification-padding-y: $alert-padding-y !default;
|
|
39221
|
-
///
|
|
39639
|
+
/// The width of the border around the Notification.
|
|
39222
39640
|
/// @group notification
|
|
39223
39641
|
$kendo-notification-border-width: $alert-border-width !default;
|
|
39224
|
-
///
|
|
39642
|
+
/// The border radius of the Notification.
|
|
39225
39643
|
/// @group notification
|
|
39226
39644
|
$kendo-notification-border-radius: $alert-border-radius !default;
|
|
39227
|
-
///
|
|
39228
|
-
/// @group notification
|
|
39229
|
-
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
39230
|
-
/// Font family of the notification.
|
|
39645
|
+
/// The font family of the Notification.
|
|
39231
39646
|
/// @group notification
|
|
39232
39647
|
$kendo-notification-font-family: $kendo-font-family !default;
|
|
39233
|
-
///
|
|
39648
|
+
/// The font size of the Notification.
|
|
39234
39649
|
/// @group notification
|
|
39235
39650
|
$kendo-notification-font-size: $kendo-font-size-sm !default;
|
|
39236
|
-
///
|
|
39651
|
+
/// The line height of the Notification.
|
|
39237
39652
|
/// @group notification
|
|
39238
39653
|
$kendo-notification-line-height: $kendo-line-height-md !default;
|
|
39239
|
-
|
|
39240
|
-
/// Horizontal spacing of the notification icon.
|
|
39241
|
-
/// @group notification
|
|
39242
|
-
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
39243
|
-
|
|
39244
|
-
/// Background color of the notification.
|
|
39654
|
+
/// The background color of the Notification.
|
|
39245
39655
|
/// @group notification
|
|
39246
39656
|
$kendo-notification-bg: $kendo-component-bg !default;
|
|
39247
|
-
///
|
|
39657
|
+
/// The text color of the Notification.
|
|
39248
39658
|
/// @group notification
|
|
39249
39659
|
$kendo-notification-text: $kendo-component-text !default;
|
|
39250
|
-
///
|
|
39660
|
+
/// The border color of the Notification.
|
|
39251
39661
|
/// @group notification
|
|
39252
39662
|
$kendo-notification-border: $kendo-component-border !default;
|
|
39663
|
+
/// The box shadow of the Notification.
|
|
39664
|
+
/// @group notification
|
|
39665
|
+
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
39666
|
+
|
|
39667
|
+
/// The horizontal spacing of the Notification icon.
|
|
39668
|
+
/// @group notification
|
|
39669
|
+
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
39253
39670
|
|
|
39254
39671
|
@function notification-theme( $colors ) {
|
|
39255
39672
|
$_theme: ();
|
|
@@ -39265,9 +39682,11 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
39265
39682
|
@return $_theme;
|
|
39266
39683
|
}
|
|
39267
39684
|
|
|
39268
|
-
///
|
|
39685
|
+
/// The theme colors map for the Notification.
|
|
39269
39686
|
/// @group notification
|
|
39270
39687
|
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
39688
|
+
/// The generated theme colors map for the Notification.
|
|
39689
|
+
/// @group notification
|
|
39271
39690
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
39272
39691
|
|
|
39273
39692
|
// #endregion
|
|
@@ -40092,37 +40511,90 @@ $kendo-card-callout-height: 1.3em !default;
|
|
|
40092
40511
|
// Component
|
|
40093
40512
|
// #region @import "./_variables.scss"; -> scss/popover/_variables.scss
|
|
40094
40513
|
// Popover
|
|
40514
|
+
|
|
40515
|
+
/// The width of the border around the Popover.
|
|
40516
|
+
/// @group popover
|
|
40095
40517
|
$kendo-popover-border-width: $kendo-card-border-width !default;
|
|
40518
|
+
/// The style of the border around the Popover.
|
|
40519
|
+
/// @group popover
|
|
40096
40520
|
$kendo-popover-border-style: solid !default;
|
|
40521
|
+
/// The radius of the border around the Popover.
|
|
40522
|
+
/// @group popover
|
|
40097
40523
|
$kendo-popover-border-radius: $kendo-card-border-radius !default;
|
|
40098
|
-
|
|
40524
|
+
/// The font family of the Popover.
|
|
40525
|
+
/// @group popover
|
|
40099
40526
|
$kendo-popover-font-family: $kendo-card-font-family !default;
|
|
40527
|
+
/// The font size of the Popover.
|
|
40528
|
+
/// @group popover
|
|
40529
|
+
$kendo-popover-font-size: $kendo-card-font-size !default;
|
|
40530
|
+
/// The line height of the Popover.
|
|
40531
|
+
/// @group popover
|
|
40100
40532
|
$kendo-popover-line-height: $kendo-card-line-height !default;
|
|
40101
|
-
|
|
40533
|
+
|
|
40534
|
+
/// The text color of the Popover.
|
|
40535
|
+
/// @group popover
|
|
40102
40536
|
$kendo-popover-text: $kendo-card-text !default;
|
|
40537
|
+
/// The background color of the Popover.
|
|
40538
|
+
/// @group popover
|
|
40539
|
+
$kendo-popover-bg: $kendo-card-bg !default;
|
|
40540
|
+
/// The border color of the Popover.
|
|
40541
|
+
/// @group popover
|
|
40103
40542
|
$kendo-popover-border: $kendo-card-border !default;
|
|
40543
|
+
/// The box shadow of the Popover.
|
|
40544
|
+
/// @group popover
|
|
40104
40545
|
$kendo-popover-shadow: $kendo-card-shadow !default;
|
|
40105
40546
|
|
|
40106
|
-
|
|
40547
|
+
/// The horizontal padding of the Popover header.
|
|
40548
|
+
/// @group popover
|
|
40107
40549
|
$kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
|
|
40550
|
+
/// The vertical padding of the Popover header.
|
|
40551
|
+
/// @group popover
|
|
40552
|
+
$kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
|
|
40553
|
+
/// The border width of the Popover header.
|
|
40554
|
+
/// @group popover
|
|
40108
40555
|
$kendo-popover-header-border-width: $kendo-card-header-border-width !default;
|
|
40556
|
+
/// The border style of the Popover header.
|
|
40557
|
+
/// @group popover
|
|
40109
40558
|
$kendo-popover-header-border-style: $kendo-popover-border-style !default;
|
|
40110
|
-
|
|
40559
|
+
/// The text color of the Popover header.
|
|
40560
|
+
/// @group popover
|
|
40111
40561
|
$kendo-popover-header-text: null !default;
|
|
40562
|
+
/// The background color of the Popover header.
|
|
40563
|
+
/// @group popover
|
|
40564
|
+
$kendo-popover-header-bg: null !default;
|
|
40565
|
+
/// The border color of the Popover header.
|
|
40566
|
+
/// @group popover
|
|
40112
40567
|
$kendo-popover-header-border: null !default;
|
|
40113
40568
|
|
|
40114
|
-
|
|
40569
|
+
/// The horizontal padding of the Popover body.
|
|
40570
|
+
/// @group popover
|
|
40115
40571
|
$kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
|
|
40572
|
+
/// The vertical padding of the Popover body.
|
|
40573
|
+
/// @group popover
|
|
40574
|
+
$kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
|
|
40116
40575
|
|
|
40576
|
+
/// The border width of the Popover actions.
|
|
40577
|
+
/// @group popover
|
|
40117
40578
|
$kendo-popover-actions-border-width: $kendo-popover-border-width !default;
|
|
40118
40579
|
|
|
40580
|
+
/// The width of the Popover callout.
|
|
40581
|
+
/// @group popover
|
|
40119
40582
|
$kendo-popover-callout-width: $kendo-card-callout-width !default;
|
|
40583
|
+
/// The height of the Popover callout.
|
|
40584
|
+
/// @group popover
|
|
40120
40585
|
$kendo-popover-callout-height: $kendo-card-callout-height !default;
|
|
40586
|
+
/// The border width of the Popover callout.
|
|
40587
|
+
/// @group popover
|
|
40121
40588
|
$kendo-popover-callout-border-width: $kendo-popover-border-width !default;
|
|
40589
|
+
/// The border style of the Popover callout.
|
|
40590
|
+
/// @group popover
|
|
40122
40591
|
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
40592
|
+
/// The background color of the Popover callout.
|
|
40593
|
+
/// @group popover
|
|
40123
40594
|
$kendo-popover-callout-bg: $kendo-popover-bg !default;
|
|
40595
|
+
/// The border color of the Popover callout.
|
|
40596
|
+
/// @group popover
|
|
40124
40597
|
$kendo-popover-callout-border: $kendo-popover-border !default;
|
|
40125
|
-
|
|
40126
40598
|
// #endregion
|
|
40127
40599
|
// #region @import "./_layout.scss"; -> scss/popover/_layout.scss
|
|
40128
40600
|
// #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
|
|
@@ -40484,35 +40956,68 @@ $_kendo-module-meta: (
|
|
|
40484
40956
|
|
|
40485
40957
|
// Component
|
|
40486
40958
|
// #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
|
|
40487
|
-
//
|
|
40959
|
+
// BottomNavigation
|
|
40960
|
+
|
|
40961
|
+
/// The horizontal padding of the BottomNavigation.
|
|
40962
|
+
/// @group bottom-navigation
|
|
40488
40963
|
$kendo-bottom-nav-padding-x: 0px !default;
|
|
40964
|
+
/// The vertical padding of the BottomNavigation.
|
|
40965
|
+
/// @group bottom-navigation
|
|
40489
40966
|
$kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
|
|
40967
|
+
/// The spacing between the BottomNavigation items.
|
|
40968
|
+
/// @group bottom-navigation
|
|
40490
40969
|
$kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
|
|
40970
|
+
/// The width of the border around the BottomNavigation.
|
|
40971
|
+
/// @group bottom-navigation
|
|
40491
40972
|
$kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
40492
|
-
|
|
40973
|
+
/// The font family of the BottomNavigation.
|
|
40974
|
+
/// @group bottom-navigation
|
|
40493
40975
|
$kendo-bottom-nav-font-family: $kendo-font-family !default;
|
|
40976
|
+
/// The font size of the BottomNavigation.
|
|
40977
|
+
/// @group bottom-navigation
|
|
40494
40978
|
$kendo-bottom-nav-font-size: $kendo-font-size-md !default;
|
|
40979
|
+
/// The line height of the BottomNavigation.
|
|
40980
|
+
/// @group bottom-navigation
|
|
40495
40981
|
$kendo-bottom-nav-line-height: normal !default;
|
|
40982
|
+
/// The letter spacing of the BottomNavigation.
|
|
40983
|
+
/// @group bottom-navigation
|
|
40496
40984
|
$kendo-bottom-nav-letter-spacing: .2px !default;
|
|
40497
40985
|
|
|
40986
|
+
/// The horizontal padding of the BottomNavigation item.
|
|
40987
|
+
/// @group bottom-navigation
|
|
40498
40988
|
$kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
40989
|
+
/// The vertical padding of the BottomNavigation item.
|
|
40990
|
+
/// @group bottom-navigation
|
|
40499
40991
|
$kendo-bottom-nav-item-padding-y: 0 !default;
|
|
40992
|
+
/// The minimum width of the BottomNavigation item.
|
|
40993
|
+
/// @group bottom-navigation
|
|
40500
40994
|
$kendo-bottom-nav-item-min-width: 72px !default;
|
|
40995
|
+
/// The maximum width of the BottomNavigation item.
|
|
40996
|
+
/// @group bottom-navigation
|
|
40501
40997
|
$kendo-bottom-nav-item-max-width: null !default;
|
|
40998
|
+
/// The minimum height of the BottomNavigation item.
|
|
40999
|
+
/// @group bottom-navigation
|
|
40502
41000
|
$kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{k-map-get( $kendo-spacing, 4 )} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
|
|
41001
|
+
/// The border radius of the BottomNavigation item.
|
|
41002
|
+
/// @group bottom-navigation
|
|
40503
41003
|
$kendo-bottom-nav-item-border-radius: null !default;
|
|
41004
|
+
/// The spacing of the BottomNavigation item.
|
|
41005
|
+
/// @group bottom-navigation
|
|
40504
41006
|
$kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
40505
41007
|
|
|
40506
|
-
|
|
40507
|
-
|
|
40508
|
-
$kendo-bottom-nav-item-disabled-opacity: .5 !default;
|
|
40509
|
-
|
|
41008
|
+
/// The box shadow of the BottomNavigation.
|
|
41009
|
+
/// @group bottom-navigation
|
|
40510
41010
|
$kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
|
|
40511
41011
|
|
|
40512
|
-
|
|
41012
|
+
/// The text color of the flat BottomNavigation.
|
|
41013
|
+
/// @group bottom-navigation
|
|
40513
41014
|
$kendo-bottom-nav-flat-text: $kendo-component-text !default;
|
|
41015
|
+
/// The background color of the flat BottomNavigation.
|
|
41016
|
+
/// @group bottom-navigation
|
|
41017
|
+
$kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
41018
|
+
/// The border color of the flat BottomNavigation.
|
|
41019
|
+
/// @group bottom-navigation
|
|
40514
41020
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
40515
|
-
|
|
40516
41021
|
// #endregion
|
|
40517
41022
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
40518
41023
|
// #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
|
|
@@ -40769,63 +41274,236 @@ $_kendo-module-meta: (
|
|
|
40769
41274
|
// #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
|
|
40770
41275
|
// Breadcrumb
|
|
40771
41276
|
|
|
41277
|
+
/// The width of the border around the Breadcrumb.
|
|
41278
|
+
/// @group breadcrumb
|
|
41279
|
+
$kendo-breadcrumb-border-width: 0px !default;
|
|
41280
|
+
|
|
41281
|
+
/// The horizontal margin of the Breadcrumb.
|
|
41282
|
+
/// @group breadcrumb
|
|
40772
41283
|
$kendo-breadcrumb-margin-x: null !default;
|
|
41284
|
+
/// The vertical margin of the Breadcrumb.
|
|
41285
|
+
/// @group breadcrumb
|
|
40773
41286
|
$kendo-breadcrumb-margin-y: null !default;
|
|
41287
|
+
|
|
41288
|
+
/// The horizontal padding of the Breadcrumb.
|
|
41289
|
+
/// @group breadcrumb
|
|
40774
41290
|
$kendo-breadcrumb-padding-x: null !default;
|
|
41291
|
+
/// The vertical padding of the Breadcrumb.
|
|
41292
|
+
/// @group breadcrumb
|
|
40775
41293
|
$kendo-breadcrumb-padding-y: null !default;
|
|
40776
|
-
$kendo-breadcrumb-border-width: 0px !default;
|
|
40777
41294
|
|
|
41295
|
+
/// The font family of the Breadcrumb.
|
|
41296
|
+
/// @group breadcrumb
|
|
40778
41297
|
$kendo-breadcrumb-font-family: $kendo-font-family !default;
|
|
41298
|
+
|
|
41299
|
+
/// The font size of the Breadcrumb.
|
|
41300
|
+
/// @group breadcrumb
|
|
40779
41301
|
$kendo-breadcrumb-font-size: $kendo-font-size-md !default;
|
|
41302
|
+
/// The font size of the small Breadcrumb.
|
|
41303
|
+
/// @group breadcrumb
|
|
41304
|
+
$kendo-breadcrumb-sm-font-size: $kendo-font-size-sm !default;
|
|
41305
|
+
/// The font size of the medium Breadcrumb.
|
|
41306
|
+
/// @group breadcrumb
|
|
41307
|
+
$kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
|
|
41308
|
+
/// The font size of the large Breadcrumb.
|
|
41309
|
+
/// @group breadcrumb
|
|
41310
|
+
$kendo-breadcrumb-lg-font-size: $kendo-font-size-md !default;
|
|
41311
|
+
|
|
41312
|
+
/// The line-height of the Breadcrumb.
|
|
41313
|
+
/// @group breadcrumb
|
|
40780
41314
|
$kendo-breadcrumb-line-height: $kendo-line-height-md !default;
|
|
40781
|
-
|
|
41315
|
+
/// The line-height of the small Breadcrumb.
|
|
41316
|
+
/// @group breadcrumb
|
|
41317
|
+
$kendo-breadcrumb-sm-line-height: k-math-div( 20, 14 ) !default;
|
|
41318
|
+
/// The line-height of the medium Breadcrumb.
|
|
41319
|
+
/// @group breadcrumb
|
|
41320
|
+
$kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
|
|
41321
|
+
/// The line-height of the height Breadcrumb.
|
|
41322
|
+
/// @group breadcrumb
|
|
41323
|
+
$kendo-breadcrumb-lg-line-height: $kendo-line-height-md !default;
|
|
41324
|
+
|
|
41325
|
+
/// The base background of the Breadcrumb.
|
|
41326
|
+
/// @group breadcrumb
|
|
40782
41327
|
$kendo-breadcrumb-bg: $kendo-component-bg !default;
|
|
41328
|
+
/// The base text color of the Breadcrumb.
|
|
41329
|
+
/// @group breadcrumb
|
|
40783
41330
|
$kendo-breadcrumb-text: $kendo-component-text !default;
|
|
41331
|
+
/// The base border color of the Breadcrumb.
|
|
41332
|
+
/// @group breadcrumb
|
|
40784
41333
|
$kendo-breadcrumb-border: $kendo-component-border !default;
|
|
40785
41334
|
|
|
41335
|
+
/// The box shadow of the focused Breadcrumb.
|
|
41336
|
+
/// @group breadcrumb
|
|
41337
|
+
$kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
41338
|
+
|
|
41339
|
+
/// The horizontal padding of the Breadcrumb link.
|
|
41340
|
+
/// @group breadcrumb
|
|
40786
41341
|
$kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41342
|
+
/// The horizontal padding of the small Breadcrumb link.
|
|
41343
|
+
/// @group breadcrumb
|
|
41344
|
+
$kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41345
|
+
/// The horizontal padding of the medium Breadcrumb link.
|
|
41346
|
+
/// @group breadcrumb
|
|
41347
|
+
$kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
|
|
41348
|
+
/// The horizontal padding of the large Breadcrumb link.
|
|
41349
|
+
/// @group breadcrumb
|
|
41350
|
+
$kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41351
|
+
|
|
41352
|
+
/// The vertical padding of the Breadcrumb link.
|
|
41353
|
+
/// @group breadcrumb
|
|
40787
41354
|
$kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
41355
|
+
/// The vertical padding of the small Breadcrumb link.
|
|
41356
|
+
/// @group breadcrumb
|
|
41357
|
+
$kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
41358
|
+
/// The vertical padding of the medium Breadcrumb link.
|
|
41359
|
+
/// @group breadcrumb
|
|
41360
|
+
$kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
|
|
41361
|
+
/// The vertical padding of the large Breadcrumb link.
|
|
41362
|
+
/// @group breadcrumb
|
|
41363
|
+
$kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
|
|
41364
|
+
|
|
41365
|
+
/// The border-radius of the Breadcrumb link.
|
|
41366
|
+
/// @group breadcrumb
|
|
40788
41367
|
$kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
40789
41368
|
|
|
40790
|
-
|
|
40791
|
-
|
|
40792
|
-
|
|
40793
|
-
|
|
40794
|
-
|
|
40795
|
-
|
|
41369
|
+
/// The vertical padding of the Breadcrumb link icon.
|
|
41370
|
+
/// @group breadcrumb
|
|
41371
|
+
$kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41372
|
+
/// The vertical padding of the small Breadcrumb link icon.
|
|
41373
|
+
/// @group breadcrumb
|
|
41374
|
+
$kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
41375
|
+
/// The vertical padding of the medium Breadcrumb link icon.
|
|
41376
|
+
/// @group breadcrumb
|
|
41377
|
+
$kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
41378
|
+
/// The vertical padding of the large Breadcrumb link icon.
|
|
41379
|
+
/// @group breadcrumb
|
|
41380
|
+
$kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
|
|
41381
|
+
|
|
41382
|
+
/// The horizontal padding of the Breadcrumb link icon.
|
|
41383
|
+
/// @group breadcrumb
|
|
41384
|
+
$kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
41385
|
+
/// The horizontal padding of the small Breadcrumb link icon.
|
|
41386
|
+
/// @group breadcrumb
|
|
41387
|
+
$kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
|
|
41388
|
+
/// The horizontal padding of the medium Breadcrumb link icon.
|
|
41389
|
+
/// @group breadcrumb
|
|
41390
|
+
$kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
|
|
41391
|
+
/// The horizontal padding of the large Breadcrumb link icon.
|
|
41392
|
+
/// @group breadcrumb
|
|
41393
|
+
$kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
|
|
41394
|
+
|
|
41395
|
+
/// The text color of the Breadcrumb link.
|
|
41396
|
+
/// @group breadcrumb
|
|
40796
41397
|
$kendo-breadcrumb-link-initial-text: inherit !default;
|
|
41398
|
+
/// The spacing of the Breadcrumb link icon.
|
|
41399
|
+
/// @group breadcrumb
|
|
41400
|
+
$kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
|
|
40797
41401
|
|
|
41402
|
+
/// The background color of the Breadcrumb link.
|
|
41403
|
+
/// @group breadcrumb
|
|
40798
41404
|
$kendo-breadcrumb-link-bg: null !default;
|
|
41405
|
+
/// The text color of the Breadcrumb link.
|
|
41406
|
+
/// @group breadcrumb
|
|
40799
41407
|
$kendo-breadcrumb-link-text: $kendo-link-text !default;
|
|
41408
|
+
/// The border color of the Breadcrumb link.
|
|
41409
|
+
/// @group breadcrumb
|
|
40800
41410
|
$kendo-breadcrumb-link-border: null !default;
|
|
40801
41411
|
|
|
41412
|
+
/// The background color of the hovered Breadcrumb link.
|
|
41413
|
+
/// @group breadcrumb
|
|
40802
41414
|
$kendo-breadcrumb-link-hover-bg: null !default;
|
|
41415
|
+
/// The text color of the hovered Breadcrumb link.
|
|
41416
|
+
/// @group breadcrumb
|
|
40803
41417
|
$kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
|
|
41418
|
+
/// The border color of the hovered Breadcrumb link.
|
|
41419
|
+
/// @group breadcrumb
|
|
40804
41420
|
$kendo-breadcrumb-link-hover-border: null !default;
|
|
40805
41421
|
|
|
41422
|
+
/// The background color of the focused Breadcrumb link.
|
|
41423
|
+
/// @group breadcrumb
|
|
40806
41424
|
$kendo-breadcrumb-link-focus-bg: null !default;
|
|
41425
|
+
/// The text color of the focused Breadcrumb link.
|
|
41426
|
+
/// @group breadcrumb
|
|
40807
41427
|
$kendo-breadcrumb-link-focus-text: null !default;
|
|
41428
|
+
/// The border color of the focused Breadcrumb link.
|
|
41429
|
+
/// @group breadcrumb
|
|
40808
41430
|
$kendo-breadcrumb-link-focus-border: null !default;
|
|
41431
|
+
/// The box shadow of the focused Breadcrumb link.
|
|
41432
|
+
/// @group breadcrumb
|
|
40809
41433
|
$kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px rgba( $kendo-breadcrumb-text, .25 ) !default;
|
|
40810
41434
|
|
|
41435
|
+
/// The background color of the Breadcrumb root link.
|
|
41436
|
+
/// @group breadcrumb
|
|
40811
41437
|
$kendo-breadcrumb-root-link-bg: null !default;
|
|
41438
|
+
/// The text color of the Breadcrumb root link.
|
|
41439
|
+
/// @group breadcrumb
|
|
40812
41440
|
$kendo-breadcrumb-root-link-text: $kendo-link-text !default;
|
|
41441
|
+
/// The border color of the Breadcrumb root link.
|
|
41442
|
+
/// @group breadcrumb
|
|
40813
41443
|
$kendo-breadcrumb-root-link-border: null !default;
|
|
40814
41444
|
|
|
41445
|
+
/// The background color of the hovered Breadcrumb root link.
|
|
41446
|
+
/// @group breadcrumb
|
|
40815
41447
|
$kendo-breadcrumb-root-link-hover-bg: null !default;
|
|
41448
|
+
/// The text color of the hovered Breadcrumb root link.
|
|
41449
|
+
/// @group breadcrumb
|
|
40816
41450
|
$kendo-breadcrumb-root-link-hover-text: $kendo-link-hover-text !default;
|
|
41451
|
+
/// The border color of the hovered Breadcrumb root link.
|
|
41452
|
+
/// @group breadcrumb
|
|
40817
41453
|
$kendo-breadcrumb-root-link-hover-border: null !default;
|
|
40818
41454
|
|
|
41455
|
+
/// The background color of the focused Breadcrumb root link.
|
|
41456
|
+
/// @group breadcrumb
|
|
40819
41457
|
$kendo-breadcrumb-root-link-focus-bg: null !default;
|
|
41458
|
+
/// The text color of the focused Breadcrumb root link.
|
|
41459
|
+
/// @group breadcrumb
|
|
40820
41460
|
$kendo-breadcrumb-root-link-focus-text: null !default;
|
|
41461
|
+
/// The border color of the focused Breadcrumb root link.
|
|
41462
|
+
/// @group breadcrumb
|
|
40821
41463
|
$kendo-breadcrumb-root-link-focus-border: null !default;
|
|
41464
|
+
/// The box shadow of the focused Breadcrumb root link.
|
|
41465
|
+
/// @group breadcrumb
|
|
40822
41466
|
$kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
|
|
40823
41467
|
|
|
41468
|
+
/// The background color of the current Breadcrumb root link.
|
|
41469
|
+
/// @group breadcrumb
|
|
40824
41470
|
$kendo-breadcrumb-current-item-bg: null !default;
|
|
41471
|
+
/// The text color of the current Breadcrumb root link.
|
|
41472
|
+
/// @group breadcrumb
|
|
40825
41473
|
$kendo-breadcrumb-current-item-text: $kendo-color-secondary !default;
|
|
41474
|
+
/// The border color of the current Breadcrumb root link.
|
|
41475
|
+
/// @group breadcrumb
|
|
40826
41476
|
$kendo-breadcrumb-current-item-border: null !default;
|
|
40827
41477
|
|
|
40828
|
-
|
|
41478
|
+
|
|
41479
|
+
/// The sizes map for the Breadcrumb.
|
|
41480
|
+
/// @group breadcrumb
|
|
41481
|
+
$kendo-breadcrumb-sizes: (
|
|
41482
|
+
sm: (
|
|
41483
|
+
link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
|
|
41484
|
+
link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
|
|
41485
|
+
icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
|
|
41486
|
+
icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
|
|
41487
|
+
font-size: $kendo-breadcrumb-sm-font-size,
|
|
41488
|
+
line-height: $kendo-breadcrumb-sm-line-height
|
|
41489
|
+
),
|
|
41490
|
+
md: (
|
|
41491
|
+
link-padding-x: $kendo-breadcrumb-md-link-padding-x,
|
|
41492
|
+
link-padding-y: $kendo-breadcrumb-md-link-padding-y,
|
|
41493
|
+
icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
|
|
41494
|
+
icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
|
|
41495
|
+
font-size: $kendo-breadcrumb-md-font-size,
|
|
41496
|
+
line-height: $kendo-breadcrumb-md-line-height
|
|
41497
|
+
),
|
|
41498
|
+
lg: (
|
|
41499
|
+
link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
|
|
41500
|
+
link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
|
|
41501
|
+
icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
|
|
41502
|
+
icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
|
|
41503
|
+
font-size: $kendo-breadcrumb-lg-font-size,
|
|
41504
|
+
line-height: $kendo-breadcrumb-lg-line-height
|
|
41505
|
+
)
|
|
41506
|
+
) !default;
|
|
40829
41507
|
|
|
40830
41508
|
// #endregion
|
|
40831
41509
|
// #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
|
|
@@ -40843,8 +41521,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40843
41521
|
box-sizing: border-box;
|
|
40844
41522
|
outline: 0;
|
|
40845
41523
|
font-family: $kendo-breadcrumb-font-family;
|
|
40846
|
-
font-size: $kendo-breadcrumb-font-size;
|
|
40847
|
-
line-height: $kendo-breadcrumb-line-height;
|
|
40848
41524
|
display: flex;
|
|
40849
41525
|
flex-direction: row;
|
|
40850
41526
|
-webkit-touch-callout: none;
|
|
@@ -40896,8 +41572,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40896
41572
|
.k-breadcrumb-link,
|
|
40897
41573
|
.k-breadcrumb-root-link {
|
|
40898
41574
|
@include border-radius( $kendo-breadcrumb-link-border-radius );
|
|
40899
|
-
padding-block: $kendo-breadcrumb-link-padding-y;
|
|
40900
|
-
padding-inline: $kendo-breadcrumb-link-padding-x;
|
|
40901
41575
|
color: $kendo-breadcrumb-link-initial-text;
|
|
40902
41576
|
text-decoration: none;
|
|
40903
41577
|
white-space: nowrap;
|
|
@@ -40911,21 +41585,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40911
41585
|
transition: $kendo-transition;
|
|
40912
41586
|
}
|
|
40913
41587
|
|
|
40914
|
-
.k-breadcrumb-root-link {
|
|
40915
|
-
margin-inline-end: $kendo-breadcrumb-root-link-spacing;
|
|
40916
|
-
}
|
|
40917
|
-
|
|
40918
41588
|
.k-breadcrumb-link > .k-image,
|
|
40919
41589
|
.k-breadcrumb-icontext-link .k-icon,
|
|
40920
41590
|
.k-breadcrumb-icontext-link .k-svg-icon {
|
|
40921
41591
|
margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
|
|
40922
41592
|
}
|
|
40923
41593
|
|
|
40924
|
-
.k-breadcrumb-icon-link {
|
|
40925
|
-
padding-block: $kendo-breadcrumb-icon-link-padding-y;
|
|
40926
|
-
padding-inline: $kendo-breadcrumb-icon-link-padding-x;
|
|
40927
|
-
}
|
|
40928
|
-
|
|
40929
41594
|
|
|
40930
41595
|
// Breadcrumb delimiter
|
|
40931
41596
|
.k-breadcrumb-delimiter,
|
|
@@ -40944,6 +41609,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
40944
41609
|
}
|
|
40945
41610
|
}
|
|
40946
41611
|
|
|
41612
|
+
|
|
41613
|
+
// Sizes
|
|
41614
|
+
@each $size, $size-props in $kendo-breadcrumb-sizes {
|
|
41615
|
+
$_link-padding-x: k-map-get( $size-props, link-padding-x );
|
|
41616
|
+
$_link-padding-y: k-map-get( $size-props, link-padding-y );
|
|
41617
|
+
$_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
|
|
41618
|
+
$_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
|
|
41619
|
+
$_font-size: k-map-get( $size-props, font-size );
|
|
41620
|
+
$_line-height: k-map-get( $size-props, line-height );
|
|
41621
|
+
|
|
41622
|
+
.k-breadcrumb-#{$size} {
|
|
41623
|
+
font-size: $_font-size;
|
|
41624
|
+
line-height: $_line-height;
|
|
41625
|
+
|
|
41626
|
+
|
|
41627
|
+
.k-breadcrumb-link,
|
|
41628
|
+
.k-breadcrumb-root-link {
|
|
41629
|
+
padding-block: $_link-padding-y;
|
|
41630
|
+
padding-inline: $_link-padding-x;
|
|
41631
|
+
}
|
|
41632
|
+
|
|
41633
|
+
.k-breadcrumb-icon-link {
|
|
41634
|
+
padding-block: $_icon-link-padding-y;
|
|
41635
|
+
padding-inline: $_icon-link-padding-x;
|
|
41636
|
+
}
|
|
41637
|
+
}
|
|
41638
|
+
}
|
|
41639
|
+
|
|
40947
41640
|
}
|
|
40948
41641
|
|
|
40949
41642
|
|
|
@@ -43252,40 +43945,83 @@ $_kendo-module-meta: (
|
|
|
43252
43945
|
|
|
43253
43946
|
// Component
|
|
43254
43947
|
// #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
|
|
43255
|
-
//
|
|
43948
|
+
// ExpansionPanel
|
|
43949
|
+
|
|
43950
|
+
/// The vertical spacing of the ExpansionPanel.
|
|
43951
|
+
/// @group expander
|
|
43256
43952
|
$kendo-expander-spacing-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
43953
|
+
/// The width of the border around the ExpansionPanel.
|
|
43954
|
+
/// @group expander
|
|
43955
|
+
$kendo-expander-border-width: 1px !default;
|
|
43956
|
+
/// The font family of the ExpansionPanel.
|
|
43957
|
+
/// @group expander
|
|
43257
43958
|
$kendo-expander-font-family: $kendo-font-family !default;
|
|
43959
|
+
/// The font size of the ExpansionPanel.
|
|
43960
|
+
/// @group expander
|
|
43258
43961
|
$kendo-expander-font-size: $kendo-font-size-md !default;
|
|
43962
|
+
/// The hine height of the ExpansionPanel.
|
|
43963
|
+
/// @group expander
|
|
43259
43964
|
$kendo-expander-line-height: $kendo-line-height-md !default;
|
|
43260
|
-
$kendo-expander-border-width: 1px !default;
|
|
43261
|
-
|
|
43262
|
-
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
43263
|
-
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
43264
43965
|
|
|
43265
|
-
|
|
43266
|
-
|
|
43267
|
-
$kendo-expander-bg: $kendo-component-bg !default;
|
|
43966
|
+
/// The text color of the ExpansionPanel.
|
|
43967
|
+
/// @group expander
|
|
43268
43968
|
$kendo-expander-text: $kendo-component-text !default;
|
|
43969
|
+
/// The background color of the ExpansionPanel.
|
|
43970
|
+
/// @group expander
|
|
43971
|
+
$kendo-expander-bg: $kendo-component-bg !default;
|
|
43972
|
+
/// The border color of the ExpansionPanel.
|
|
43973
|
+
/// @group expander
|
|
43269
43974
|
$kendo-expander-border: $kendo-component-border !default;
|
|
43270
43975
|
|
|
43976
|
+
/// The box shadow of the focused ExpansionPanel.
|
|
43977
|
+
/// @group expander
|
|
43271
43978
|
$kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
43272
43979
|
|
|
43273
|
-
|
|
43980
|
+
/// The horizontal padding of the ExpansionPanel header.
|
|
43981
|
+
/// @group expander
|
|
43982
|
+
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
43983
|
+
/// The vertical padding of the ExpansionPanel header.
|
|
43984
|
+
/// @group expander
|
|
43985
|
+
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
43986
|
+
|
|
43987
|
+
/// The text color of the ExpansionPanel header.
|
|
43988
|
+
/// @group expander
|
|
43274
43989
|
$kendo-expander-header-text: $kendo-expander-text !default;
|
|
43990
|
+
/// The background color of the ExpansionPanel header.
|
|
43991
|
+
/// @group expander
|
|
43992
|
+
$kendo-expander-header-bg: transparent !default;
|
|
43993
|
+
/// The border color of the ExpansionPanel header.
|
|
43994
|
+
/// @group expander
|
|
43275
43995
|
$kendo-expander-header-border: null !default;
|
|
43276
43996
|
|
|
43997
|
+
/// The background color of the hovered ExpansionPanel header.
|
|
43998
|
+
/// @group expander
|
|
43277
43999
|
$kendo-expander-header-hover-bg: rgba( black, .04 ) !default;
|
|
43278
|
-
|
|
44000
|
+
/// The background color of the focused ExpansionPanel header.
|
|
44001
|
+
/// @group expander
|
|
43279
44002
|
$kendo-expander-header-focus-bg: null !default;
|
|
44003
|
+
/// The box shadow of the focused ExpansionPanel header.
|
|
44004
|
+
/// @group expander
|
|
43280
44005
|
$kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
43281
44006
|
|
|
44007
|
+
/// The text color of the ExpansionPanel title.
|
|
44008
|
+
/// @group expander
|
|
43282
44009
|
$kendo-expander-title-text: $kendo-color-primary !default;
|
|
43283
44010
|
|
|
44011
|
+
/// The text color of the ExpansionPanel sub-title.
|
|
44012
|
+
/// @group expander
|
|
43284
44013
|
$kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
|
|
43285
44014
|
|
|
44015
|
+
/// The horizontal margin of the ExpansionPanel indicator.
|
|
44016
|
+
/// @group expander
|
|
44017
|
+
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
44018
|
+
|
|
44019
|
+
/// The horizontal padding of the ExpansionPanel content.
|
|
44020
|
+
/// @group expander
|
|
43286
44021
|
$kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
|
|
44022
|
+
/// The vertical padding of the ExpansionPanel content.
|
|
44023
|
+
/// @group expander
|
|
43287
44024
|
$kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 6 ) !default;
|
|
43288
|
-
|
|
43289
44025
|
// #endregion
|
|
43290
44026
|
// #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
|
|
43291
44027
|
// #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
|
|
@@ -44066,6 +44802,8 @@ $kendo-splitter-splitbar-size: k-map-get( $kendo-spacing, 3 ) !default;
|
|
|
44066
44802
|
$kendo-splitter-drag-handle-length: 20px !default;
|
|
44067
44803
|
$kendo-splitter-drag-handle-thickness: 2px !default;
|
|
44068
44804
|
$kendo-splitter-drag-icon-margin: 7px !default;
|
|
44805
|
+
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
44806
|
+
$kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !default;
|
|
44069
44807
|
|
|
44070
44808
|
$kendo-splitbar-bg: $kendo-base-bg !default;
|
|
44071
44809
|
$kendo-splitbar-text: $kendo-base-text !default;
|
|
@@ -44137,6 +44875,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
|
|
|
44137
44875
|
.k-collapse-prev,
|
|
44138
44876
|
.k-collapse-next {
|
|
44139
44877
|
cursor: pointer;
|
|
44878
|
+
padding: $kendo-splitter-collapse-icon-padding-y $kendo-splitter-collapse-icon-padding-x;
|
|
44140
44879
|
}
|
|
44141
44880
|
|
|
44142
44881
|
}
|
|
@@ -44384,17 +45123,33 @@ $_kendo-module-meta: (
|
|
|
44384
45123
|
// Component
|
|
44385
45124
|
// #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
|
|
44386
45125
|
// TileLayout
|
|
45126
|
+
|
|
45127
|
+
/// The width of the border around the TileLayout.
|
|
45128
|
+
/// @group tilelayout
|
|
44387
45129
|
$kendo-tile-layout-border-width: 0px !default;
|
|
45130
|
+
/// The background color of the TileLayout.
|
|
45131
|
+
/// @group tilelayout
|
|
45132
|
+
$kendo-tile-layout-bg: $gray-100 !default;
|
|
45133
|
+
|
|
45134
|
+
/// The width of the border around the TileLayout card.
|
|
45135
|
+
/// @group tilelayout
|
|
44388
45136
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|
|
45137
|
+
/// The focus box shadow of the TileLayout card.
|
|
45138
|
+
/// @group tilelayout
|
|
44389
45139
|
$kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
44390
45140
|
|
|
45141
|
+
/// The width of the border around the TileLayout hint.
|
|
45142
|
+
/// @group tilelayout
|
|
44391
45143
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
45144
|
+
/// The radius of the border around the TileLayout hint.
|
|
45145
|
+
/// @group tilelayout
|
|
44392
45146
|
$kendo-tile-layout-hint-border-radius: $kendo-card-border-radius !default;
|
|
44393
|
-
|
|
44394
|
-
|
|
44395
|
-
|
|
44396
|
-
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
45147
|
+
/// The color of the border around the TileLayout hint.
|
|
45148
|
+
/// @group tilelayout
|
|
44397
45149
|
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
45150
|
+
/// The background color of the TileLayout hint.
|
|
45151
|
+
/// @group tilelayout
|
|
45152
|
+
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
44398
45153
|
|
|
44399
45154
|
// #endregion
|
|
44400
45155
|
// #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
|
|
@@ -48082,32 +48837,66 @@ $_kendo-module-meta: (
|
|
|
48082
48837
|
|
|
48083
48838
|
// Component
|
|
48084
48839
|
// #region @import "./_variables.scss"; -> scss/listview/_variables.scss
|
|
48085
|
-
//
|
|
48840
|
+
// ListView
|
|
48841
|
+
|
|
48842
|
+
/// The horizontal padding of the ListView.
|
|
48843
|
+
/// @group listview
|
|
48086
48844
|
$kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
48845
|
+
/// The vertical padding of the ListView.
|
|
48846
|
+
/// @group listview
|
|
48087
48847
|
$kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
48848
|
+
/// The width of the border around bordered ListView.
|
|
48849
|
+
/// @group listview
|
|
48088
48850
|
$kendo-listview-border-width: 1px !default;
|
|
48851
|
+
/// The font family of the ListView.
|
|
48852
|
+
/// @group listview
|
|
48089
48853
|
$kendo-listview-font-family: $kendo-font-family !default;
|
|
48854
|
+
/// The font size of the ListView.
|
|
48855
|
+
/// @group listview
|
|
48090
48856
|
$kendo-listview-font-size: $kendo-font-size-md !default;
|
|
48857
|
+
/// The line height of the ListView.
|
|
48858
|
+
/// @group listview
|
|
48091
48859
|
$kendo-listview-line-height: $kendo-line-height-md !default;
|
|
48092
48860
|
|
|
48093
|
-
|
|
48861
|
+
/// The text color of the ListView.
|
|
48862
|
+
/// @group listview
|
|
48094
48863
|
$kendo-listview-text: $kendo-component-text !default;
|
|
48864
|
+
/// The background color of the ListView.
|
|
48865
|
+
/// @group listview
|
|
48866
|
+
$kendo-listview-bg: $kendo-component-bg !default;
|
|
48867
|
+
/// The border color of the ListView.
|
|
48868
|
+
/// @group listview
|
|
48095
48869
|
$kendo-listview-border: $kendo-component-border !default;
|
|
48096
48870
|
|
|
48097
|
-
|
|
48098
|
-
|
|
48871
|
+
/// The horizontal padding of the ListView items.
|
|
48872
|
+
/// @group listview
|
|
48099
48873
|
$kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
48874
|
+
/// The vertical padding of the ListView items.
|
|
48875
|
+
/// @group listview
|
|
48100
48876
|
$kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
48101
48877
|
|
|
48102
|
-
|
|
48878
|
+
/// The text color of the selected ListView items.
|
|
48879
|
+
/// @group listview
|
|
48103
48880
|
$kendo-listview-item-selected-text: null !default;
|
|
48881
|
+
/// The background color of the selected ListView items.
|
|
48882
|
+
/// @group listview
|
|
48883
|
+
$kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
48884
|
+
/// The border color of the selected ListView items.
|
|
48885
|
+
/// @group listview
|
|
48104
48886
|
$kendo-listview-item-selected-border: null !default;
|
|
48105
48887
|
|
|
48106
|
-
|
|
48888
|
+
/// The text color of the focused ListView items.
|
|
48889
|
+
/// @group listview
|
|
48107
48890
|
$kendo-listview-item-focus-text: null !default;
|
|
48891
|
+
/// The background color of the focused ListView items.
|
|
48892
|
+
/// @group listview
|
|
48893
|
+
$kendo-listview-item-focus-bg: null !default;
|
|
48894
|
+
/// The border color of the focused ListView items.
|
|
48895
|
+
/// @group listview
|
|
48108
48896
|
$kendo-listview-item-focus-border: null !default;
|
|
48897
|
+
/// The box shadow of the focused ListView items.
|
|
48898
|
+
/// @group listview
|
|
48109
48899
|
$kendo-listview-item-focus-shadow: inset 0 0 0 3px rgba( $kendo-listview-text, .15 ) !default;
|
|
48110
|
-
|
|
48111
48900
|
// #endregion
|
|
48112
48901
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
48113
48902
|
// #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
|
|
@@ -51171,6 +51960,12 @@ $kendo-treelist-footer-row-border-width: 1px !default;
|
|
|
51171
51960
|
margin-inline: .5em;
|
|
51172
51961
|
}
|
|
51173
51962
|
|
|
51963
|
+
.k-treelist-toggle {
|
|
51964
|
+
margin-block: -$kendo-icon-padding;
|
|
51965
|
+
padding: $kendo-icon-padding;
|
|
51966
|
+
cursor: pointer;
|
|
51967
|
+
}
|
|
51968
|
+
|
|
51174
51969
|
}
|
|
51175
51970
|
|
|
51176
51971
|
|
|
@@ -51323,19 +52118,35 @@ $_kendo-module-meta: (
|
|
|
51323
52118
|
// Component
|
|
51324
52119
|
// #region @import "./_variables.scss"; -> scss/filter/_variables.scss
|
|
51325
52120
|
// Filter expression builder
|
|
52121
|
+
|
|
52122
|
+
/// The horizontal padding of the Filter.
|
|
52123
|
+
/// @group filter
|
|
51326
52124
|
$kendo-filter-padding-x: $kendo-padding-md-x !default;
|
|
52125
|
+
/// The vertical padding of the Filter.
|
|
52126
|
+
/// @group filter
|
|
51327
52127
|
$kendo-filter-padding-y: $kendo-padding-md-y !default;
|
|
51328
52128
|
|
|
52129
|
+
/// The bottom margin of the Filter.
|
|
52130
|
+
/// @group filter
|
|
51329
52131
|
$kendo-filter-bottom-margin: 2.1em !default;
|
|
52132
|
+
/// The width of the line that connects the Filter items.
|
|
52133
|
+
/// @group filter
|
|
51330
52134
|
$kendo-filter-line-size: 1px !default;
|
|
51331
52135
|
|
|
52136
|
+
/// The width of the dropdown elements in the Filter items.
|
|
52137
|
+
/// @group filter
|
|
51332
52138
|
$kendo-filter-operator-dropdown-width: 15em !default;
|
|
51333
52139
|
|
|
52140
|
+
/// The text color of the Filter preview field.
|
|
52141
|
+
/// @group filter
|
|
51334
52142
|
$kendo-filter-preview-field-text: $kendo-color-primary !default;
|
|
52143
|
+
/// The text color of the Filter preview operator.
|
|
52144
|
+
/// @group filter
|
|
51335
52145
|
$kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
51336
52146
|
|
|
52147
|
+
/// The box shadow of the focused Filter toolbar.
|
|
52148
|
+
/// @group filter
|
|
51337
52149
|
$kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem rgba( $kendo-color-primary, .25 ) !default;
|
|
51338
|
-
|
|
51339
52150
|
// #endregion
|
|
51340
52151
|
// #region @import "./_layout.scss"; -> scss/filter/_layout.scss
|
|
51341
52152
|
// #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
|
|
@@ -52664,27 +53475,60 @@ $_kendo-module-meta: (
|
|
|
52664
53475
|
// Component
|
|
52665
53476
|
// #region @import "./_variables.scss"; -> scss/editor/_variables.scss
|
|
52666
53477
|
// Editor
|
|
53478
|
+
|
|
53479
|
+
/// The width of the border around the Еditor.
|
|
53480
|
+
/// @group editor
|
|
52667
53481
|
$kendo-editor-border-width: 1px !default;
|
|
53482
|
+
/// The font family of the Еditor.
|
|
53483
|
+
/// @group editor
|
|
52668
53484
|
$kendo-editor-font-family: $kendo-font-family !default;
|
|
53485
|
+
/// The font size of the Еditor.
|
|
53486
|
+
/// @group editor
|
|
52669
53487
|
$kendo-editor-font-size: $kendo-font-size-md !default;
|
|
53488
|
+
/// The line height of the Еditor.
|
|
53489
|
+
/// @group editor
|
|
52670
53490
|
$kendo-editor-line-height: $kendo-line-height-md !default;
|
|
52671
53491
|
|
|
53492
|
+
/// The text color of the Еditor placeholder.
|
|
53493
|
+
/// @group editor
|
|
52672
53494
|
$kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
|
|
53495
|
+
/// The opacity of the Editor placeholder.
|
|
53496
|
+
/// @group editor
|
|
52673
53497
|
$kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
52674
53498
|
|
|
53499
|
+
/// The selected text color of the Editor.
|
|
53500
|
+
/// @group editor
|
|
52675
53501
|
$kendo-editor-selected-text: $kendo-color-primary-contrast !default;
|
|
53502
|
+
/// The selected background color of the Editor.
|
|
53503
|
+
/// @group editor
|
|
52676
53504
|
$kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
52677
53505
|
|
|
53506
|
+
/// The highlighted background color of the Editor.
|
|
53507
|
+
/// @group editor
|
|
52678
53508
|
$kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
|
|
52679
53509
|
|
|
53510
|
+
/// The horizontal margin of the Editor's export tool icon.
|
|
53511
|
+
/// @group editor
|
|
52680
53512
|
$kendo-editor-export-tool-icon-margin-x: .25em !default;
|
|
52681
53513
|
|
|
53514
|
+
/// The size of the Editor's resize handle.
|
|
53515
|
+
/// @group editor
|
|
52682
53516
|
$kendo-editor-resize-handle-size: 8px !default;
|
|
53517
|
+
/// The border width of the Editor's resize handle.
|
|
53518
|
+
/// @group editor
|
|
52683
53519
|
$kendo-editor-resize-handle-border-width: 1px !default;
|
|
53520
|
+
/// The border color of the Editor's resize handle.
|
|
53521
|
+
/// @group editor
|
|
52684
53522
|
$kendo-editor-resize-handle-border: #000000 !default;
|
|
53523
|
+
/// The background color of the Editor's resize handle.
|
|
53524
|
+
/// @group editor
|
|
52685
53525
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
52686
53526
|
|
|
53527
|
+
/// The outline width of the Editor's selected node.
|
|
53528
|
+
/// @group editor
|
|
52687
53529
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
53530
|
+
/// The outline color of the Editor's selected node.
|
|
53531
|
+
/// @group editor
|
|
52688
53532
|
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
52689
53533
|
|
|
52690
53534
|
// #endregion
|
|
@@ -55381,6 +56225,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
55381
56225
|
th,
|
|
55382
56226
|
td,
|
|
55383
56227
|
div,
|
|
56228
|
+
.k-scheduler-edit-dialog,
|
|
55384
56229
|
> * {
|
|
55385
56230
|
border-color: inherit;
|
|
55386
56231
|
}
|
|
@@ -59049,44 +59894,97 @@ $_kendo-module-meta: (
|
|
|
59049
59894
|
|
|
59050
59895
|
// Component
|
|
59051
59896
|
// #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
|
|
59052
|
-
//
|
|
59897
|
+
// ScrollView
|
|
59898
|
+
|
|
59899
|
+
/// The width of the border around the ScrollView.
|
|
59900
|
+
/// @group scrollview
|
|
59053
59901
|
$kendo-scrollview-border-width: 1px !default;
|
|
59902
|
+
/// The font family of the ScrollView.
|
|
59903
|
+
/// @group scrollview
|
|
59054
59904
|
$kendo-scrollview-font-family: $kendo-font-family !default;
|
|
59905
|
+
/// The font size of the ScrollView.
|
|
59906
|
+
/// @group scrollview
|
|
59055
59907
|
$kendo-scrollview-font-size: $kendo-font-size-md !default;
|
|
59908
|
+
/// The line height of the ScrollView.
|
|
59909
|
+
/// @group scrollview
|
|
59056
59910
|
$kendo-scrollview-line-height: $kendo-line-height-md !default;
|
|
59057
59911
|
|
|
59058
|
-
|
|
59912
|
+
/// The text color of the ScrollView.
|
|
59913
|
+
/// @group scrollview
|
|
59059
59914
|
$kendo-scrollview-text: $kendo-component-text !default;
|
|
59915
|
+
/// The background color of the ScrollView.
|
|
59916
|
+
/// @group scrollview
|
|
59917
|
+
$kendo-scrollview-bg: $kendo-component-bg !default;
|
|
59918
|
+
/// The border color of the ScrollView.
|
|
59919
|
+
/// @group scrollview
|
|
59060
59920
|
$kendo-scrollview-border: $kendo-component-border !default;
|
|
59061
59921
|
|
|
59922
|
+
/// The size of the ScrollView page button.
|
|
59923
|
+
/// @group scrollview
|
|
59062
59924
|
$kendo-scrollview-pagebutton-size: 10px !default;
|
|
59925
|
+
/// The background color of the ScrollView page button.
|
|
59926
|
+
/// @group scrollview
|
|
59063
59927
|
$kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
59928
|
+
/// The border color of the ScrollView page button.
|
|
59929
|
+
/// @group scrollview
|
|
59064
59930
|
$kendo-scrollview-pagebutton-border: $kendo-button-border !default;
|
|
59931
|
+
/// The primary background color of the ScrollView page button.
|
|
59932
|
+
/// @group scrollview
|
|
59065
59933
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
|
|
59934
|
+
/// The primary border color of the ScrollView page button.
|
|
59935
|
+
/// @group scrollview
|
|
59066
59936
|
$kendo-scrollview-pagebutton-primary-border: $kendo-color-primary !default;
|
|
59937
|
+
/// The box shadow of the ScrollView page button.
|
|
59938
|
+
/// @group scrollview
|
|
59067
59939
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
59068
59940
|
|
|
59941
|
+
/// The offset of the ScrollView pager.
|
|
59942
|
+
/// @group scrollview
|
|
59069
59943
|
$kendo-scrollview-pager-offset: 0 !default;
|
|
59944
|
+
/// The spacing between the ScrollView pager items.
|
|
59945
|
+
/// @group scrollview
|
|
59070
59946
|
$kendo-scrollview-pager-item-spacing: 20px !default;
|
|
59947
|
+
/// The border width of the ScrollView pager items.
|
|
59948
|
+
/// @group scrollview
|
|
59071
59949
|
$kendo-scrollview-pager-item-border-width: 0px !default;
|
|
59950
|
+
/// The height of the ScrollView pager.
|
|
59951
|
+
/// @group scrollview
|
|
59072
59952
|
$kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
|
|
59073
59953
|
|
|
59074
|
-
|
|
59075
|
-
|
|
59076
|
-
$kendo-scrollview-pager-multidot-step: 1px !default;
|
|
59077
|
-
|
|
59954
|
+
/// The text color of the highlight over the tapped ScrollView navigation arrows.
|
|
59955
|
+
/// @group scrollview
|
|
59078
59956
|
$kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
|
|
59957
|
+
/// The color of the ScrollView navigation arrows.
|
|
59958
|
+
/// @group scrollview
|
|
59079
59959
|
$kendo-scrollview-navigation-color: white !default;
|
|
59960
|
+
/// The box shadow of the ScrollView navigation arrows.
|
|
59961
|
+
/// @group scrollview
|
|
59080
59962
|
$kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
59963
|
+
/// The background color of the ScrollView navigation.
|
|
59964
|
+
/// @group scrollview
|
|
59081
59965
|
$kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
59966
|
+
/// The opacity of the ScrollView navigation.
|
|
59967
|
+
/// @group scrollview
|
|
59082
59968
|
$kendo-scrollview-navigation-default-opacity: .7 !default;
|
|
59969
|
+
/// The hover opacity of the ScrollView navigation.
|
|
59970
|
+
/// @group scrollview
|
|
59083
59971
|
$kendo-scrollview-navigation-hover-opacity: 1 !default;
|
|
59972
|
+
/// The hover background color of the ScrollView navigation arrows.
|
|
59973
|
+
/// @group scrollview
|
|
59084
59974
|
$kendo-scrollview-navigation-hover-span-bg: null !default;
|
|
59085
59975
|
|
|
59976
|
+
/// The background color of the ScrollView pager in light mode.
|
|
59977
|
+
/// @group scrollview
|
|
59086
59978
|
$kendo-scrollview-light-bg: rgba( white, .4 ) !default;
|
|
59979
|
+
/// The background color of the ScrollView pager in dark mode.
|
|
59980
|
+
/// @group scrollview
|
|
59087
59981
|
$kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
59088
59982
|
|
|
59983
|
+
/// The duration of the ScrollView transition.
|
|
59984
|
+
/// @group scrollview
|
|
59089
59985
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
59986
|
+
/// The timing function of the ScrollView transition.
|
|
59987
|
+
/// @group scrollview
|
|
59090
59988
|
$kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
59091
59989
|
|
|
59092
59990
|
// #endregion
|