@progress/kendo-theme-classic 7.1.0-dev.8 → 7.1.0-dev.9
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 +50 -18
- package/dist/all.scss +1562 -632
- package/dist/meta/sassdoc-data.json +1792 -662
- package/dist/meta/sassdoc-raw-data.json +850 -327
- package/dist/meta/variables.json +398 -338
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +0 -197
- package/scss/adaptive/_variables.scss +1 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/button/_variables.scss +7 -7
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -2
- package/scss/chip/_variables.scss +3 -3
- package/scss/core/_index.scss +6 -0
- package/scss/core/color-system/_palettes.scss +277 -0
- package/scss/core/color-system/_swatch-legacy.scss +62 -0
- package/scss/core/color-system/_swatch.scss +397 -0
- package/scss/dataviz/_variables.scss +42 -42
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/dropzone/_variables.scss +1 -1
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -2
- package/scss/filemanager/_variables.scss +2 -2
- package/scss/forms/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +10 -10
- package/scss/grid/_variables.scss +11 -8
- package/scss/input/_variables.scss +6 -6
- package/scss/listview/_variables.scss +1 -1
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +1 -1
- package/scss/panelbar/_variables.scss +3 -4
- package/scss/pivotgrid/_variables.scss +5 -5
- package/scss/progressbar/_variables.scss +3 -3
- package/scss/scheduler/_variables.scss +3 -3
- package/scss/scrollview/_variables.scss +1 -1
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +8 -8
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +7 -7
- package/scss/switch/_variables.scss +7 -7
- package/scss/table/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +4 -3
- package/scss/timeline/_variables.scss +4 -4
- package/scss/tooltip/_variables.scss +4 -4
- package/scss/core/color-system/index.import.scss +0 -1
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"context": {
|
|
307
307
|
"type": "variable",
|
|
308
308
|
"name": "kendo-appbar-light-text",
|
|
309
|
-
"value": "k-contrast-color( $kendo-color-light )",
|
|
309
|
+
"value": "if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light ))",
|
|
310
310
|
"scope": "default",
|
|
311
311
|
"line": {
|
|
312
312
|
"start": 40,
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"context": {
|
|
361
361
|
"type": "variable",
|
|
362
362
|
"name": "kendo-appbar-dark-text",
|
|
363
|
-
"value": "k-contrast-color( $kendo-color-dark )",
|
|
363
|
+
"value": "if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark ))",
|
|
364
364
|
"scope": "default",
|
|
365
365
|
"line": {
|
|
366
366
|
"start": 47,
|
|
@@ -4059,7 +4059,7 @@
|
|
|
4059
4059
|
"context": {
|
|
4060
4060
|
"type": "variable",
|
|
4061
4061
|
"name": "kendo-button-border",
|
|
4062
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
4062
|
+
"value": "if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
4063
4063
|
"scope": "default",
|
|
4064
4064
|
"line": {
|
|
4065
4065
|
"start": 119,
|
|
@@ -4140,7 +4140,7 @@
|
|
|
4140
4140
|
"context": {
|
|
4141
4141
|
"type": "variable",
|
|
4142
4142
|
"name": "kendo-button-hover-bg",
|
|
4143
|
-
"value": "k-try-shade( $kendo-button-bg, 1 )",
|
|
4143
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 ))",
|
|
4144
4144
|
"scope": "default",
|
|
4145
4145
|
"line": {
|
|
4146
4146
|
"start": 129,
|
|
@@ -4194,7 +4194,7 @@
|
|
|
4194
4194
|
"context": {
|
|
4195
4195
|
"type": "variable",
|
|
4196
4196
|
"name": "kendo-button-hover-border",
|
|
4197
|
-
"value": "k-try-shade( $kendo-button-bg, 3 )",
|
|
4197
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 ))",
|
|
4198
4198
|
"scope": "default",
|
|
4199
4199
|
"line": {
|
|
4200
4200
|
"start": 135,
|
|
@@ -4275,7 +4275,7 @@
|
|
|
4275
4275
|
"context": {
|
|
4276
4276
|
"type": "variable",
|
|
4277
4277
|
"name": "kendo-button-active-bg",
|
|
4278
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
4278
|
+
"value": "if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
4279
4279
|
"scope": "default",
|
|
4280
4280
|
"line": {
|
|
4281
4281
|
"start": 145,
|
|
@@ -4329,7 +4329,7 @@
|
|
|
4329
4329
|
"context": {
|
|
4330
4330
|
"type": "variable",
|
|
4331
4331
|
"name": "kendo-button-active-border",
|
|
4332
|
-
"value": "k-try-shade( $kendo-button-bg, 4 )",
|
|
4332
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 ))",
|
|
4333
4333
|
"scope": "default",
|
|
4334
4334
|
"line": {
|
|
4335
4335
|
"start": 151,
|
|
@@ -4437,7 +4437,7 @@
|
|
|
4437
4437
|
"context": {
|
|
4438
4438
|
"type": "variable",
|
|
4439
4439
|
"name": "kendo-button-selected-text",
|
|
4440
|
-
"value": "k-contrast-legacy( $kendo-button-selected-bg )",
|
|
4440
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg ))",
|
|
4441
4441
|
"scope": "default",
|
|
4442
4442
|
"line": {
|
|
4443
4443
|
"start": 164,
|
|
@@ -4653,7 +4653,7 @@
|
|
|
4653
4653
|
"context": {
|
|
4654
4654
|
"type": "variable",
|
|
4655
4655
|
"name": "kendo-button-focus-shadow",
|
|
4656
|
-
"value": "0 0 4px 0 rgba( $kendo-button-border, .75 )",
|
|
4656
|
+
"value": "0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 ))",
|
|
4657
4657
|
"scope": "default",
|
|
4658
4658
|
"line": {
|
|
4659
4659
|
"start": 189,
|
|
@@ -6840,7 +6840,7 @@
|
|
|
6840
6840
|
"context": {
|
|
6841
6841
|
"type": "variable",
|
|
6842
6842
|
"name": "kendo-series-a",
|
|
6843
|
-
"value": "#ff6358",
|
|
6843
|
+
"value": "if($kendo-enable-color-system, k-color( series-a ), #ff6358)",
|
|
6844
6844
|
"scope": "default",
|
|
6845
6845
|
"line": {
|
|
6846
6846
|
"start": 8,
|
|
@@ -6867,7 +6867,7 @@
|
|
|
6867
6867
|
"context": {
|
|
6868
6868
|
"type": "variable",
|
|
6869
6869
|
"name": "kendo-series-b",
|
|
6870
|
-
"value": "#ffd246",
|
|
6870
|
+
"value": "if($kendo-enable-color-system, k-color( series-b ), #ffd246)",
|
|
6871
6871
|
"scope": "default",
|
|
6872
6872
|
"line": {
|
|
6873
6873
|
"start": 16,
|
|
@@ -6894,7 +6894,7 @@
|
|
|
6894
6894
|
"context": {
|
|
6895
6895
|
"type": "variable",
|
|
6896
6896
|
"name": "kendo-series-c",
|
|
6897
|
-
"value": "#78d237",
|
|
6897
|
+
"value": "if($kendo-enable-color-system, k-color( series-c ), #78d237)",
|
|
6898
6898
|
"scope": "default",
|
|
6899
6899
|
"line": {
|
|
6900
6900
|
"start": 24,
|
|
@@ -6921,7 +6921,7 @@
|
|
|
6921
6921
|
"context": {
|
|
6922
6922
|
"type": "variable",
|
|
6923
6923
|
"name": "kendo-series-d",
|
|
6924
|
-
"value": "#28b4c8",
|
|
6924
|
+
"value": "if($kendo-enable-color-system, k-color( series-d ), #28b4c8)",
|
|
6925
6925
|
"scope": "default",
|
|
6926
6926
|
"line": {
|
|
6927
6927
|
"start": 32,
|
|
@@ -6948,7 +6948,7 @@
|
|
|
6948
6948
|
"context": {
|
|
6949
6949
|
"type": "variable",
|
|
6950
6950
|
"name": "kendo-series-e",
|
|
6951
|
-
"value": "#2d73f5",
|
|
6951
|
+
"value": "if($kendo-enable-color-system, k-color( series-e ), #2d73f5)",
|
|
6952
6952
|
"scope": "default",
|
|
6953
6953
|
"line": {
|
|
6954
6954
|
"start": 40,
|
|
@@ -6975,7 +6975,7 @@
|
|
|
6975
6975
|
"context": {
|
|
6976
6976
|
"type": "variable",
|
|
6977
6977
|
"name": "kendo-series-f",
|
|
6978
|
-
"value": "#aa46be",
|
|
6978
|
+
"value": "if($kendo-enable-color-system, k-color( series-f ), #aa46be)",
|
|
6979
6979
|
"scope": "default",
|
|
6980
6980
|
"line": {
|
|
6981
6981
|
"start": 48,
|
|
@@ -7029,7 +7029,7 @@
|
|
|
7029
7029
|
"context": {
|
|
7030
7030
|
"type": "variable",
|
|
7031
7031
|
"name": "kendo-chart-major-lines",
|
|
7032
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )",
|
|
7032
|
+
"value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 )",
|
|
7033
7033
|
"scope": "default",
|
|
7034
7034
|
"line": {
|
|
7035
7035
|
"start": 103,
|
|
@@ -7056,7 +7056,7 @@
|
|
|
7056
7056
|
"context": {
|
|
7057
7057
|
"type": "variable",
|
|
7058
7058
|
"name": "kendo-chart-minor-lines",
|
|
7059
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )",
|
|
7059
|
+
"value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .04 )",
|
|
7060
7060
|
"scope": "default",
|
|
7061
7061
|
"line": {
|
|
7062
7062
|
"start": 107,
|
|
@@ -7542,7 +7542,7 @@
|
|
|
7542
7542
|
"context": {
|
|
7543
7543
|
"type": "variable",
|
|
7544
7544
|
"name": "kendo-checkbox-checked-text",
|
|
7545
|
-
"value": "k-contrast-legacy( $kendo-checkbox-checked-bg )",
|
|
7545
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg ))",
|
|
7546
7546
|
"scope": "default",
|
|
7547
7547
|
"line": {
|
|
7548
7548
|
"start": 84,
|
|
@@ -7758,7 +7758,7 @@
|
|
|
7758
7758
|
"context": {
|
|
7759
7759
|
"type": "variable",
|
|
7760
7760
|
"name": "kendo-checkbox-focus-checked-shadow",
|
|
7761
|
-
"value": "0 0 0 2px rgba( $kendo-color-primary, .3 )",
|
|
7761
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 ))",
|
|
7762
7762
|
"scope": "default",
|
|
7763
7763
|
"line": {
|
|
7764
7764
|
"start": 110,
|
|
@@ -9027,7 +9027,7 @@
|
|
|
9027
9027
|
"context": {
|
|
9028
9028
|
"type": "variable",
|
|
9029
9029
|
"name": "kendo-chip-solid-shadow",
|
|
9030
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
9030
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ))",
|
|
9031
9031
|
"scope": "default",
|
|
9032
9032
|
"line": {
|
|
9033
9033
|
"start": 118,
|
|
@@ -9324,7 +9324,7 @@
|
|
|
9324
9324
|
"context": {
|
|
9325
9325
|
"type": "variable",
|
|
9326
9326
|
"name": "kendo-chip-outline-shadow",
|
|
9327
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
9327
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ))",
|
|
9328
9328
|
"scope": "default",
|
|
9329
9329
|
"line": {
|
|
9330
9330
|
"start": 155,
|
|
@@ -9378,7 +9378,7 @@
|
|
|
9378
9378
|
"context": {
|
|
9379
9379
|
"type": "variable",
|
|
9380
9380
|
"name": "kendo-chip-outline-hover-text",
|
|
9381
|
-
"value": "k-contrast-legacy( $kendo-chip-outline-hover-bg )",
|
|
9381
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg ))",
|
|
9382
9382
|
"scope": "default",
|
|
9383
9383
|
"line": {
|
|
9384
9384
|
"start": 162,
|
|
@@ -10639,66 +10639,37 @@
|
|
|
10639
10639
|
"resolvedType": "Number"
|
|
10640
10640
|
},
|
|
10641
10641
|
{
|
|
10642
|
-
"description": "The
|
|
10642
|
+
"description": "The global default Colors map.\n",
|
|
10643
10643
|
"commentRange": {
|
|
10644
|
-
"start":
|
|
10645
|
-
"end":
|
|
10646
|
-
},
|
|
10647
|
-
"context": {
|
|
10648
|
-
"type": "variable",
|
|
10649
|
-
"name": "kendo-color-white",
|
|
10650
|
-
"value": "#ffffff",
|
|
10651
|
-
"scope": "private",
|
|
10652
|
-
"line": {
|
|
10653
|
-
"start": 7,
|
|
10654
|
-
"end": 7
|
|
10655
|
-
}
|
|
10656
|
-
},
|
|
10657
|
-
"type": "Color",
|
|
10658
|
-
"group": [
|
|
10659
|
-
"color-system"
|
|
10660
|
-
],
|
|
10661
|
-
"access": "public",
|
|
10662
|
-
"file": {
|
|
10663
|
-
"path": "_variables.scss",
|
|
10664
|
-
"name": "_variables.scss"
|
|
10665
|
-
},
|
|
10666
|
-
"resolvedValue": "#ffffff",
|
|
10667
|
-
"resolvedType": "Color"
|
|
10668
|
-
},
|
|
10669
|
-
{
|
|
10670
|
-
"description": "The color black.\nNote: you cannot change this value.\n",
|
|
10671
|
-
"commentRange": {
|
|
10672
|
-
"start": 9,
|
|
10673
|
-
"end": 12
|
|
10644
|
+
"start": 177,
|
|
10645
|
+
"end": 178
|
|
10674
10646
|
},
|
|
10675
10647
|
"context": {
|
|
10676
10648
|
"type": "variable",
|
|
10677
|
-
"name": "kendo-
|
|
10678
|
-
"value": "
|
|
10679
|
-
"scope": "
|
|
10649
|
+
"name": "kendo-colors",
|
|
10650
|
+
"value": "$_default-colors",
|
|
10651
|
+
"scope": "default",
|
|
10680
10652
|
"line": {
|
|
10681
|
-
"start":
|
|
10682
|
-
"end":
|
|
10653
|
+
"start": 179,
|
|
10654
|
+
"end": 179
|
|
10683
10655
|
}
|
|
10684
10656
|
},
|
|
10685
|
-
"type": "Color",
|
|
10686
10657
|
"group": [
|
|
10687
10658
|
"color-system"
|
|
10688
10659
|
],
|
|
10689
10660
|
"access": "public",
|
|
10690
10661
|
"file": {
|
|
10691
|
-
"path": "
|
|
10692
|
-
"name": "
|
|
10662
|
+
"path": "core/color-system/_swatch.scss",
|
|
10663
|
+
"name": "_swatch.scss"
|
|
10693
10664
|
},
|
|
10694
|
-
"resolvedValue": "#000000",
|
|
10695
|
-
"resolvedType": "
|
|
10665
|
+
"resolvedValue": "(app-surface: #ffffff, on-app-surface: #272727, subtle: #666666, surface: #f0f0f0, surface-alt: #ffffff, border: #cacaca, border-alt: #b6b6b6, base-subtle: #f0f0f0, base-subtle-hover: #ebebeb, base-subtle-active: #dddddd, base: #ebebeb, base-hover: #dddddd, base-active: #d6d6d6, base-emphasis: #cacaca, base-on-subtle: #272727, on-base: #272727, base-on-surface: #272727, primary-subtle: #fff2eb, primary-subtle-hover: #ffe5d6, primary-subtle-active: #ffd8c2, primary: #f35800, primary-hover: #e05100, primary-active: #cc4a00, primary-emphasis: #ff8b47, primary-on-subtle: #3d1600, on-primary: #ffffff, primary-on-surface: #f35800, secondary-subtle: #cacaca, secondary-subtle-hover: #b6b6b6, secondary-subtle-active: #a3a3a3, secondary: #b6b6b6, secondary-hover: #a3a3a3, secondary-active: #8f8f8f, secondary-emphasis: #7a7a7a, secondary-on-subtle: #272727, on-secondary: #000000, secondary-on-surface: #8f8f8f, tertiary-subtle: #9cdffe, tertiary-subtle-hover: #72d1fe, tertiary-subtle-active: #49c4fd, tertiary: #03a9f4, tertiary-hover: #039be0, tertiary-active: #038ecd, tertiary-emphasis: #2cbbfd, tertiary-on-subtle: #01364e, on-tertiary: #ffffff, tertiary-on-surface: #0273a6, info-subtle: #cce5f3, info-subtle-hover: #a6d1ea, info-subtle-active: #6ab2dc, info: #007bc3, info-hover: #0071b3, info-active: #0067a4, info-emphasis: #409cd2, info-on-subtle: #002b44, on-info: #ffffff, info-on-surface: #005485, success-subtle: #bbdfc1, success-subtle-hover: #9ed1a6, success-subtle-active: #82c48c, success: #3ea44e, success-hover: #399748, success-active: #348a42, success-emphasis: #6ebb7a, success-on-subtle: #16391b, on-success: #ffffff, success-on-surface: #2a7035, warning-subtle: #ffdead, warning-subtle-hover: #ffd699, warning-subtle-active: #ffc670, warning: #ffa41f, warning-hover: #ff9800, warning-active: #eb8c00, warning-emphasis: #ffb240, warning-on-subtle: #593500, on-warning: #000000, warning-on-surface: #ffa41f, error-subtle: #f4c3b8, error-subtle-hover: #f2b4a6, error-subtle-active: #ec8e79, error: #d92800, error-hover: #c82500, error-active: #b62200, error-emphasis: #e35e40, error-on-subtle: #4c0e00, on-error: #ffffff, error-on-surface: #941b00, light-subtle: #f0f0f0, light-subtle-hover: #ebebeb, light-subtle-active: #dddddd, light: #ebebeb, light-hover: #dddddd, light-active: #d6d6d6, light-emphasis: #cacaca, light-on-subtle: #272727, on-light: #000000, light-on-surface: #ebebeb, dark-subtle: #cacaca, dark-subtle-hover: #b6b6b6, dark-subtle-active: #a3a3a3, dark: #404040, dark-hover: #333333, dark-active: #272727, dark-emphasis: #7a7a7a, dark-on-subtle: #000000, on-dark: #ffffff, dark-on-surface: #333333, inverse-subtle: #cacaca, inverse-subtle-hover: #b6b6b6, inverse-subtle-active: #a3a3a3, inverse: #404040, inverse-hover: #333333, inverse-active: #272727, inverse-emphasis: #7a7a7a, inverse-on-subtle: #000000, on-inverse: #ffffff, inverse-on-surface: #333333, series-a: #ff6358, series-a-bold: #bf4a42, series-a-bolder: #80322c, series-a-subtle: #ffb1ac, series-a-subtler: #ff8a82, series-b: #ffd246, series-b-bold: #bf9d35, series-b-bolder: #806923, series-b-subtle: #ffe9a2, series-b-subtler: #ffdd74, series-c: #78d237, series-c-bold: #5a9d29, series-c-bolder: #3c691c, series-c-subtle: #bbe99b, series-c-subtler: #9add69, series-d: #28b4c8, series-d-bold: #1e8796, series-d-bolder: #145a64, series-d-subtle: #93d9e3, series-d-subtler: #5ec7d6, series-e: #2d73f5, series-e-bold: #2256b8, series-e-bolder: #173a7b, series-e-subtle: #96b9fa, series-e-subtler: #6296f7, series-f: #9d40b0, series-f-bold: #80358e, series-f-bolder: #55235f, series-f-subtle: #d5a2df, series-f-subtler: #bf74ce)",
|
|
10666
|
+
"resolvedType": "Map"
|
|
10696
10667
|
},
|
|
10697
10668
|
{
|
|
10698
10669
|
"description": "The color that focuses the user attention.\nUsed for primary buttons and for elements of primary importance across the theme.\n",
|
|
10699
10670
|
"commentRange": {
|
|
10700
|
-
"start":
|
|
10701
|
-
"end":
|
|
10671
|
+
"start": 184,
|
|
10672
|
+
"end": 187
|
|
10702
10673
|
},
|
|
10703
10674
|
"context": {
|
|
10704
10675
|
"type": "variable",
|
|
@@ -10706,8 +10677,8 @@
|
|
|
10706
10677
|
"value": "#f35800",
|
|
10707
10678
|
"scope": "default",
|
|
10708
10679
|
"line": {
|
|
10709
|
-
"start":
|
|
10710
|
-
"end":
|
|
10680
|
+
"start": 188,
|
|
10681
|
+
"end": 188
|
|
10711
10682
|
}
|
|
10712
10683
|
},
|
|
10713
10684
|
"group": [
|
|
@@ -10716,8 +10687,8 @@
|
|
|
10716
10687
|
"type": "Color",
|
|
10717
10688
|
"access": "public",
|
|
10718
10689
|
"file": {
|
|
10719
|
-
"path": "
|
|
10720
|
-
"name": "
|
|
10690
|
+
"path": "core/color-system/_swatch.scss",
|
|
10691
|
+
"name": "_swatch.scss"
|
|
10721
10692
|
},
|
|
10722
10693
|
"resolvedValue": "#f35800",
|
|
10723
10694
|
"resolvedType": "Color"
|
|
@@ -10725,8 +10696,8 @@
|
|
|
10725
10696
|
{
|
|
10726
10697
|
"description": "The color used along with the primary color denoted by $kendo-color-primary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
10727
10698
|
"commentRange": {
|
|
10728
|
-
"start":
|
|
10729
|
-
"end":
|
|
10699
|
+
"start": 192,
|
|
10700
|
+
"end": 195
|
|
10730
10701
|
},
|
|
10731
10702
|
"context": {
|
|
10732
10703
|
"type": "variable",
|
|
@@ -10734,8 +10705,8 @@
|
|
|
10734
10705
|
"value": "k-contrast-legacy( $kendo-color-primary )",
|
|
10735
10706
|
"scope": "default",
|
|
10736
10707
|
"line": {
|
|
10737
|
-
"start":
|
|
10738
|
-
"end":
|
|
10708
|
+
"start": 196,
|
|
10709
|
+
"end": 196
|
|
10739
10710
|
}
|
|
10740
10711
|
},
|
|
10741
10712
|
"group": [
|
|
@@ -10744,8 +10715,8 @@
|
|
|
10744
10715
|
"type": "Color",
|
|
10745
10716
|
"access": "public",
|
|
10746
10717
|
"file": {
|
|
10747
|
-
"path": "
|
|
10748
|
-
"name": "
|
|
10718
|
+
"path": "core/color-system/_swatch.scss",
|
|
10719
|
+
"name": "_swatch.scss"
|
|
10749
10720
|
},
|
|
10750
10721
|
"resolvedValue": "white",
|
|
10751
10722
|
"resolvedType": "Color"
|
|
@@ -10753,8 +10724,8 @@
|
|
|
10753
10724
|
{
|
|
10754
10725
|
"description": "The secondary color of the theme.\n",
|
|
10755
10726
|
"commentRange": {
|
|
10756
|
-
"start":
|
|
10757
|
-
"end":
|
|
10727
|
+
"start": 198,
|
|
10728
|
+
"end": 200
|
|
10758
10729
|
},
|
|
10759
10730
|
"context": {
|
|
10760
10731
|
"type": "variable",
|
|
@@ -10762,8 +10733,8 @@
|
|
|
10762
10733
|
"value": "#e9e9e9",
|
|
10763
10734
|
"scope": "default",
|
|
10764
10735
|
"line": {
|
|
10765
|
-
"start":
|
|
10766
|
-
"end":
|
|
10736
|
+
"start": 201,
|
|
10737
|
+
"end": 201
|
|
10767
10738
|
}
|
|
10768
10739
|
},
|
|
10769
10740
|
"group": [
|
|
@@ -10772,8 +10743,8 @@
|
|
|
10772
10743
|
"type": "Color",
|
|
10773
10744
|
"access": "public",
|
|
10774
10745
|
"file": {
|
|
10775
|
-
"path": "
|
|
10776
|
-
"name": "
|
|
10746
|
+
"path": "core/color-system/_swatch.scss",
|
|
10747
|
+
"name": "_swatch.scss"
|
|
10777
10748
|
},
|
|
10778
10749
|
"resolvedValue": "#e9e9e9",
|
|
10779
10750
|
"resolvedType": "Color"
|
|
@@ -10781,8 +10752,8 @@
|
|
|
10781
10752
|
{
|
|
10782
10753
|
"description": "The color used along with the secondary color denoted by $kendo-color-secondary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
10783
10754
|
"commentRange": {
|
|
10784
|
-
"start":
|
|
10785
|
-
"end":
|
|
10755
|
+
"start": 205,
|
|
10756
|
+
"end": 208
|
|
10786
10757
|
},
|
|
10787
10758
|
"context": {
|
|
10788
10759
|
"type": "variable",
|
|
@@ -10790,8 +10761,8 @@
|
|
|
10790
10761
|
"value": "k-contrast-color( $kendo-color-secondary )",
|
|
10791
10762
|
"scope": "default",
|
|
10792
10763
|
"line": {
|
|
10793
|
-
"start":
|
|
10794
|
-
"end":
|
|
10764
|
+
"start": 209,
|
|
10765
|
+
"end": 209
|
|
10795
10766
|
}
|
|
10796
10767
|
},
|
|
10797
10768
|
"group": [
|
|
@@ -10800,8 +10771,8 @@
|
|
|
10800
10771
|
"type": "Color",
|
|
10801
10772
|
"access": "public",
|
|
10802
10773
|
"file": {
|
|
10803
|
-
"path": "
|
|
10804
|
-
"name": "
|
|
10774
|
+
"path": "core/color-system/_swatch.scss",
|
|
10775
|
+
"name": "_swatch.scss"
|
|
10805
10776
|
},
|
|
10806
10777
|
"resolvedValue": "black",
|
|
10807
10778
|
"resolvedType": "Color"
|
|
@@ -10809,8 +10780,8 @@
|
|
|
10809
10780
|
{
|
|
10810
10781
|
"description": "The tertiary color of the theme.\n",
|
|
10811
10782
|
"commentRange": {
|
|
10812
|
-
"start":
|
|
10813
|
-
"end":
|
|
10783
|
+
"start": 211,
|
|
10784
|
+
"end": 213
|
|
10814
10785
|
},
|
|
10815
10786
|
"context": {
|
|
10816
10787
|
"type": "variable",
|
|
@@ -10818,8 +10789,8 @@
|
|
|
10818
10789
|
"value": "#03a9f4",
|
|
10819
10790
|
"scope": "default",
|
|
10820
10791
|
"line": {
|
|
10821
|
-
"start":
|
|
10822
|
-
"end":
|
|
10792
|
+
"start": 214,
|
|
10793
|
+
"end": 214
|
|
10823
10794
|
}
|
|
10824
10795
|
},
|
|
10825
10796
|
"group": [
|
|
@@ -10828,8 +10799,8 @@
|
|
|
10828
10799
|
"type": "Color",
|
|
10829
10800
|
"access": "public",
|
|
10830
10801
|
"file": {
|
|
10831
|
-
"path": "
|
|
10832
|
-
"name": "
|
|
10802
|
+
"path": "core/color-system/_swatch.scss",
|
|
10803
|
+
"name": "_swatch.scss"
|
|
10833
10804
|
},
|
|
10834
10805
|
"resolvedValue": "#03a9f4",
|
|
10835
10806
|
"resolvedType": "Color"
|
|
@@ -10837,8 +10808,8 @@
|
|
|
10837
10808
|
{
|
|
10838
10809
|
"description": "The color used along with the tertiary color denoted by $kendo-color-tertiary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
10839
10810
|
"commentRange": {
|
|
10840
|
-
"start":
|
|
10841
|
-
"end":
|
|
10811
|
+
"start": 218,
|
|
10812
|
+
"end": 221
|
|
10842
10813
|
},
|
|
10843
10814
|
"context": {
|
|
10844
10815
|
"type": "variable",
|
|
@@ -10846,8 +10817,8 @@
|
|
|
10846
10817
|
"value": "k-contrast-color( $kendo-color-tertiary )",
|
|
10847
10818
|
"scope": "default",
|
|
10848
10819
|
"line": {
|
|
10849
|
-
"start":
|
|
10850
|
-
"end":
|
|
10820
|
+
"start": 222,
|
|
10821
|
+
"end": 222
|
|
10851
10822
|
}
|
|
10852
10823
|
},
|
|
10853
10824
|
"group": [
|
|
@@ -10856,8 +10827,8 @@
|
|
|
10856
10827
|
"type": "Color",
|
|
10857
10828
|
"access": "public",
|
|
10858
10829
|
"file": {
|
|
10859
|
-
"path": "
|
|
10860
|
-
"name": "
|
|
10830
|
+
"path": "core/color-system/_swatch.scss",
|
|
10831
|
+
"name": "_swatch.scss"
|
|
10861
10832
|
},
|
|
10862
10833
|
"resolvedValue": "black",
|
|
10863
10834
|
"resolvedType": "Color"
|
|
@@ -10865,8 +10836,8 @@
|
|
|
10865
10836
|
{
|
|
10866
10837
|
"description": "The color for informational messages and states.\n",
|
|
10867
10838
|
"commentRange": {
|
|
10868
|
-
"start":
|
|
10869
|
-
"end":
|
|
10839
|
+
"start": 224,
|
|
10840
|
+
"end": 226
|
|
10870
10841
|
},
|
|
10871
10842
|
"context": {
|
|
10872
10843
|
"type": "variable",
|
|
@@ -10874,8 +10845,8 @@
|
|
|
10874
10845
|
"value": "#2498bc",
|
|
10875
10846
|
"scope": "default",
|
|
10876
10847
|
"line": {
|
|
10877
|
-
"start":
|
|
10878
|
-
"end":
|
|
10848
|
+
"start": 227,
|
|
10849
|
+
"end": 227
|
|
10879
10850
|
}
|
|
10880
10851
|
},
|
|
10881
10852
|
"group": [
|
|
@@ -10884,8 +10855,8 @@
|
|
|
10884
10855
|
"type": "Color",
|
|
10885
10856
|
"access": "public",
|
|
10886
10857
|
"file": {
|
|
10887
|
-
"path": "
|
|
10888
|
-
"name": "
|
|
10858
|
+
"path": "core/color-system/_swatch.scss",
|
|
10859
|
+
"name": "_swatch.scss"
|
|
10889
10860
|
},
|
|
10890
10861
|
"resolvedValue": "#2498bc",
|
|
10891
10862
|
"resolvedType": "Color"
|
|
@@ -10893,8 +10864,8 @@
|
|
|
10893
10864
|
{
|
|
10894
10865
|
"description": "The color for success messages and states.\n",
|
|
10895
10866
|
"commentRange": {
|
|
10896
|
-
"start":
|
|
10897
|
-
"end":
|
|
10867
|
+
"start": 231,
|
|
10868
|
+
"end": 233
|
|
10898
10869
|
},
|
|
10899
10870
|
"context": {
|
|
10900
10871
|
"type": "variable",
|
|
@@ -10902,8 +10873,8 @@
|
|
|
10902
10873
|
"value": "#3ea44e",
|
|
10903
10874
|
"scope": "default",
|
|
10904
10875
|
"line": {
|
|
10905
|
-
"start":
|
|
10906
|
-
"end":
|
|
10876
|
+
"start": 234,
|
|
10877
|
+
"end": 234
|
|
10907
10878
|
}
|
|
10908
10879
|
},
|
|
10909
10880
|
"group": [
|
|
@@ -10912,8 +10883,8 @@
|
|
|
10912
10883
|
"type": "Color",
|
|
10913
10884
|
"access": "public",
|
|
10914
10885
|
"file": {
|
|
10915
|
-
"path": "
|
|
10916
|
-
"name": "
|
|
10886
|
+
"path": "core/color-system/_swatch.scss",
|
|
10887
|
+
"name": "_swatch.scss"
|
|
10917
10888
|
},
|
|
10918
10889
|
"resolvedValue": "#3ea44e",
|
|
10919
10890
|
"resolvedType": "Color"
|
|
@@ -10921,8 +10892,8 @@
|
|
|
10921
10892
|
{
|
|
10922
10893
|
"description": "The color for warning messages and states.\n",
|
|
10923
10894
|
"commentRange": {
|
|
10924
|
-
"start":
|
|
10925
|
-
"end":
|
|
10895
|
+
"start": 238,
|
|
10896
|
+
"end": 240
|
|
10926
10897
|
},
|
|
10927
10898
|
"context": {
|
|
10928
10899
|
"type": "variable",
|
|
@@ -10930,8 +10901,8 @@
|
|
|
10930
10901
|
"value": "#ff9800",
|
|
10931
10902
|
"scope": "default",
|
|
10932
10903
|
"line": {
|
|
10933
|
-
"start":
|
|
10934
|
-
"end":
|
|
10904
|
+
"start": 241,
|
|
10905
|
+
"end": 241
|
|
10935
10906
|
}
|
|
10936
10907
|
},
|
|
10937
10908
|
"group": [
|
|
@@ -10940,8 +10911,8 @@
|
|
|
10940
10911
|
"type": "Color",
|
|
10941
10912
|
"access": "public",
|
|
10942
10913
|
"file": {
|
|
10943
|
-
"path": "
|
|
10944
|
-
"name": "
|
|
10914
|
+
"path": "core/color-system/_swatch.scss",
|
|
10915
|
+
"name": "_swatch.scss"
|
|
10945
10916
|
},
|
|
10946
10917
|
"resolvedValue": "#ff9800",
|
|
10947
10918
|
"resolvedType": "Color"
|
|
@@ -10949,8 +10920,8 @@
|
|
|
10949
10920
|
{
|
|
10950
10921
|
"description": "The color for error messages and states.\n",
|
|
10951
10922
|
"commentRange": {
|
|
10952
|
-
"start":
|
|
10953
|
-
"end":
|
|
10923
|
+
"start": 245,
|
|
10924
|
+
"end": 247
|
|
10954
10925
|
},
|
|
10955
10926
|
"context": {
|
|
10956
10927
|
"type": "variable",
|
|
@@ -10958,8 +10929,8 @@
|
|
|
10958
10929
|
"value": "#d92800",
|
|
10959
10930
|
"scope": "default",
|
|
10960
10931
|
"line": {
|
|
10961
|
-
"start":
|
|
10962
|
-
"end":
|
|
10932
|
+
"start": 248,
|
|
10933
|
+
"end": 248
|
|
10963
10934
|
}
|
|
10964
10935
|
},
|
|
10965
10936
|
"group": [
|
|
@@ -10968,8 +10939,8 @@
|
|
|
10968
10939
|
"type": "Color",
|
|
10969
10940
|
"access": "public",
|
|
10970
10941
|
"file": {
|
|
10971
|
-
"path": "
|
|
10972
|
-
"name": "
|
|
10942
|
+
"path": "core/color-system/_swatch.scss",
|
|
10943
|
+
"name": "_swatch.scss"
|
|
10973
10944
|
},
|
|
10974
10945
|
"resolvedValue": "#d92800",
|
|
10975
10946
|
"resolvedType": "Color"
|
|
@@ -10977,8 +10948,8 @@
|
|
|
10977
10948
|
{
|
|
10978
10949
|
"description": "The dark color of the theme.\n",
|
|
10979
10950
|
"commentRange": {
|
|
10980
|
-
"start":
|
|
10981
|
-
"end":
|
|
10951
|
+
"start": 252,
|
|
10952
|
+
"end": 254
|
|
10982
10953
|
},
|
|
10983
10954
|
"context": {
|
|
10984
10955
|
"type": "variable",
|
|
@@ -10986,8 +10957,8 @@
|
|
|
10986
10957
|
"value": "#404040",
|
|
10987
10958
|
"scope": "default",
|
|
10988
10959
|
"line": {
|
|
10989
|
-
"start":
|
|
10990
|
-
"end":
|
|
10960
|
+
"start": 255,
|
|
10961
|
+
"end": 255
|
|
10991
10962
|
}
|
|
10992
10963
|
},
|
|
10993
10964
|
"group": [
|
|
@@ -10996,8 +10967,8 @@
|
|
|
10996
10967
|
"type": "Color",
|
|
10997
10968
|
"access": "public",
|
|
10998
10969
|
"file": {
|
|
10999
|
-
"path": "
|
|
11000
|
-
"name": "
|
|
10970
|
+
"path": "core/color-system/_swatch.scss",
|
|
10971
|
+
"name": "_swatch.scss"
|
|
11001
10972
|
},
|
|
11002
10973
|
"resolvedValue": "#404040",
|
|
11003
10974
|
"resolvedType": "Color"
|
|
@@ -11005,8 +10976,8 @@
|
|
|
11005
10976
|
{
|
|
11006
10977
|
"description": "The light color of the theme.\n",
|
|
11007
10978
|
"commentRange": {
|
|
11008
|
-
"start":
|
|
11009
|
-
"end":
|
|
10979
|
+
"start": 257,
|
|
10980
|
+
"end": 259
|
|
11010
10981
|
},
|
|
11011
10982
|
"context": {
|
|
11012
10983
|
"type": "variable",
|
|
@@ -11014,8 +10985,8 @@
|
|
|
11014
10985
|
"value": "#ebebeb",
|
|
11015
10986
|
"scope": "default",
|
|
11016
10987
|
"line": {
|
|
11017
|
-
"start":
|
|
11018
|
-
"end":
|
|
10988
|
+
"start": 260,
|
|
10989
|
+
"end": 260
|
|
11019
10990
|
}
|
|
11020
10991
|
},
|
|
11021
10992
|
"group": [
|
|
@@ -11024,8 +10995,8 @@
|
|
|
11024
10995
|
"type": "Color",
|
|
11025
10996
|
"access": "public",
|
|
11026
10997
|
"file": {
|
|
11027
|
-
"path": "
|
|
11028
|
-
"name": "
|
|
10998
|
+
"path": "core/color-system/_swatch.scss",
|
|
10999
|
+
"name": "_swatch.scss"
|
|
11029
11000
|
},
|
|
11030
11001
|
"resolvedValue": "#ebebeb",
|
|
11031
11002
|
"resolvedType": "Color"
|
|
@@ -11033,8 +11004,8 @@
|
|
|
11033
11004
|
{
|
|
11034
11005
|
"description": "Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark\n",
|
|
11035
11006
|
"commentRange": {
|
|
11036
|
-
"start":
|
|
11037
|
-
"end":
|
|
11007
|
+
"start": 262,
|
|
11008
|
+
"end": 263
|
|
11038
11009
|
},
|
|
11039
11010
|
"context": {
|
|
11040
11011
|
"type": "variable",
|
|
@@ -11042,8 +11013,8 @@
|
|
|
11042
11013
|
"value": "if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark )",
|
|
11043
11014
|
"scope": "default",
|
|
11044
11015
|
"line": {
|
|
11045
|
-
"start":
|
|
11046
|
-
"end":
|
|
11016
|
+
"start": 264,
|
|
11017
|
+
"end": 264
|
|
11047
11018
|
}
|
|
11048
11019
|
},
|
|
11049
11020
|
"group": [
|
|
@@ -11051,8 +11022,8 @@
|
|
|
11051
11022
|
],
|
|
11052
11023
|
"access": "public",
|
|
11053
11024
|
"file": {
|
|
11054
|
-
"path": "
|
|
11055
|
-
"name": "
|
|
11025
|
+
"path": "core/color-system/_swatch.scss",
|
|
11026
|
+
"name": "_swatch.scss"
|
|
11056
11027
|
},
|
|
11057
11028
|
"resolvedValue": "#404040",
|
|
11058
11029
|
"resolvedType": "Color"
|
|
@@ -11921,11 +11892,146 @@
|
|
|
11921
11892
|
"resolvedValue": "0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white",
|
|
11922
11893
|
"resolvedType": "List"
|
|
11923
11894
|
},
|
|
11895
|
+
{
|
|
11896
|
+
"description": "Background color of the body.\n",
|
|
11897
|
+
"commentRange": {
|
|
11898
|
+
"start": 281,
|
|
11899
|
+
"end": 282
|
|
11900
|
+
},
|
|
11901
|
+
"context": {
|
|
11902
|
+
"type": "variable",
|
|
11903
|
+
"name": "kendo-body-bg",
|
|
11904
|
+
"value": "$kendo-color-white",
|
|
11905
|
+
"scope": "default",
|
|
11906
|
+
"line": {
|
|
11907
|
+
"start": 283,
|
|
11908
|
+
"end": 283
|
|
11909
|
+
}
|
|
11910
|
+
},
|
|
11911
|
+
"group": [
|
|
11912
|
+
"common"
|
|
11913
|
+
],
|
|
11914
|
+
"access": "public",
|
|
11915
|
+
"file": {
|
|
11916
|
+
"path": "core/color-system/_swatch.scss",
|
|
11917
|
+
"name": "_swatch.scss"
|
|
11918
|
+
},
|
|
11919
|
+
"resolvedValue": "#ffffff",
|
|
11920
|
+
"resolvedType": "Color"
|
|
11921
|
+
},
|
|
11922
|
+
{
|
|
11923
|
+
"description": "Text color of the body.\n",
|
|
11924
|
+
"commentRange": {
|
|
11925
|
+
"start": 284,
|
|
11926
|
+
"end": 285
|
|
11927
|
+
},
|
|
11928
|
+
"context": {
|
|
11929
|
+
"type": "variable",
|
|
11930
|
+
"name": "kendo-body-text",
|
|
11931
|
+
"value": "#272727",
|
|
11932
|
+
"scope": "default",
|
|
11933
|
+
"line": {
|
|
11934
|
+
"start": 286,
|
|
11935
|
+
"end": 286
|
|
11936
|
+
}
|
|
11937
|
+
},
|
|
11938
|
+
"group": [
|
|
11939
|
+
"common"
|
|
11940
|
+
],
|
|
11941
|
+
"access": "public",
|
|
11942
|
+
"file": {
|
|
11943
|
+
"path": "core/color-system/_swatch.scss",
|
|
11944
|
+
"name": "_swatch.scss"
|
|
11945
|
+
},
|
|
11946
|
+
"resolvedValue": "#272727",
|
|
11947
|
+
"resolvedType": "Color"
|
|
11948
|
+
},
|
|
11949
|
+
{
|
|
11950
|
+
"description": "Subtle text color.\n",
|
|
11951
|
+
"commentRange": {
|
|
11952
|
+
"start": 288,
|
|
11953
|
+
"end": 289
|
|
11954
|
+
},
|
|
11955
|
+
"context": {
|
|
11956
|
+
"type": "variable",
|
|
11957
|
+
"name": "kendo-subtle-text",
|
|
11958
|
+
"value": "#646464",
|
|
11959
|
+
"scope": "default",
|
|
11960
|
+
"line": {
|
|
11961
|
+
"start": 290,
|
|
11962
|
+
"end": 290
|
|
11963
|
+
}
|
|
11964
|
+
},
|
|
11965
|
+
"group": [
|
|
11966
|
+
"common"
|
|
11967
|
+
],
|
|
11968
|
+
"access": "public",
|
|
11969
|
+
"file": {
|
|
11970
|
+
"path": "core/color-system/_swatch.scss",
|
|
11971
|
+
"name": "_swatch.scss"
|
|
11972
|
+
},
|
|
11973
|
+
"resolvedValue": "#646464",
|
|
11974
|
+
"resolvedType": "Color"
|
|
11975
|
+
},
|
|
11976
|
+
{
|
|
11977
|
+
"description": "Text color of the links.\n",
|
|
11978
|
+
"commentRange": {
|
|
11979
|
+
"start": 297,
|
|
11980
|
+
"end": 298
|
|
11981
|
+
},
|
|
11982
|
+
"context": {
|
|
11983
|
+
"type": "variable",
|
|
11984
|
+
"name": "kendo-link-text",
|
|
11985
|
+
"value": "$kendo-color-primary",
|
|
11986
|
+
"scope": "default",
|
|
11987
|
+
"line": {
|
|
11988
|
+
"start": 299,
|
|
11989
|
+
"end": 299
|
|
11990
|
+
}
|
|
11991
|
+
},
|
|
11992
|
+
"group": [
|
|
11993
|
+
"common"
|
|
11994
|
+
],
|
|
11995
|
+
"access": "public",
|
|
11996
|
+
"file": {
|
|
11997
|
+
"path": "core/color-system/_swatch.scss",
|
|
11998
|
+
"name": "_swatch.scss"
|
|
11999
|
+
},
|
|
12000
|
+
"resolvedValue": "#f35800",
|
|
12001
|
+
"resolvedType": "Color"
|
|
12002
|
+
},
|
|
12003
|
+
{
|
|
12004
|
+
"description": "Text color of the links on hover.\n",
|
|
12005
|
+
"commentRange": {
|
|
12006
|
+
"start": 300,
|
|
12007
|
+
"end": 301
|
|
12008
|
+
},
|
|
12009
|
+
"context": {
|
|
12010
|
+
"type": "variable",
|
|
12011
|
+
"name": "kendo-link-hover-text",
|
|
12012
|
+
"value": "$kendo-color-primary-darker",
|
|
12013
|
+
"scope": "default",
|
|
12014
|
+
"line": {
|
|
12015
|
+
"start": 302,
|
|
12016
|
+
"end": 302
|
|
12017
|
+
}
|
|
12018
|
+
},
|
|
12019
|
+
"group": [
|
|
12020
|
+
"common"
|
|
12021
|
+
],
|
|
12022
|
+
"access": "public",
|
|
12023
|
+
"file": {
|
|
12024
|
+
"path": "core/color-system/_swatch.scss",
|
|
12025
|
+
"name": "_swatch.scss"
|
|
12026
|
+
},
|
|
12027
|
+
"resolvedValue": "#cc4a00",
|
|
12028
|
+
"resolvedType": "Color"
|
|
12029
|
+
},
|
|
11924
12030
|
{
|
|
11925
12031
|
"description": "Background color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.\n",
|
|
11926
12032
|
"commentRange": {
|
|
11927
|
-
"start":
|
|
11928
|
-
"end":
|
|
12033
|
+
"start": 315,
|
|
12034
|
+
"end": 317
|
|
11929
12035
|
},
|
|
11930
12036
|
"context": {
|
|
11931
12037
|
"type": "variable",
|
|
@@ -11933,8 +12039,8 @@
|
|
|
11933
12039
|
"value": "$kendo-body-bg",
|
|
11934
12040
|
"scope": "default",
|
|
11935
12041
|
"line": {
|
|
11936
|
-
"start":
|
|
11937
|
-
"end":
|
|
12042
|
+
"start": 318,
|
|
12043
|
+
"end": 318
|
|
11938
12044
|
}
|
|
11939
12045
|
},
|
|
11940
12046
|
"group": [
|
|
@@ -11942,8 +12048,8 @@
|
|
|
11942
12048
|
],
|
|
11943
12049
|
"access": "public",
|
|
11944
12050
|
"file": {
|
|
11945
|
-
"path": "
|
|
11946
|
-
"name": "
|
|
12051
|
+
"path": "core/color-system/_swatch.scss",
|
|
12052
|
+
"name": "_swatch.scss"
|
|
11947
12053
|
},
|
|
11948
12054
|
"resolvedValue": "#ffffff",
|
|
11949
12055
|
"resolvedType": "Color"
|
|
@@ -11951,8 +12057,8 @@
|
|
|
11951
12057
|
{
|
|
11952
12058
|
"description": "Text color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.\n",
|
|
11953
12059
|
"commentRange": {
|
|
11954
|
-
"start":
|
|
11955
|
-
"end":
|
|
12060
|
+
"start": 319,
|
|
12061
|
+
"end": 321
|
|
11956
12062
|
},
|
|
11957
12063
|
"context": {
|
|
11958
12064
|
"type": "variable",
|
|
@@ -11960,8 +12066,8 @@
|
|
|
11960
12066
|
"value": "$kendo-body-text",
|
|
11961
12067
|
"scope": "default",
|
|
11962
12068
|
"line": {
|
|
11963
|
-
"start":
|
|
11964
|
-
"end":
|
|
12069
|
+
"start": 322,
|
|
12070
|
+
"end": 322
|
|
11965
12071
|
}
|
|
11966
12072
|
},
|
|
11967
12073
|
"group": [
|
|
@@ -11969,8 +12075,8 @@
|
|
|
11969
12075
|
],
|
|
11970
12076
|
"access": "public",
|
|
11971
12077
|
"file": {
|
|
11972
|
-
"path": "
|
|
11973
|
-
"name": "
|
|
12078
|
+
"path": "core/color-system/_swatch.scss",
|
|
12079
|
+
"name": "_swatch.scss"
|
|
11974
12080
|
},
|
|
11975
12081
|
"resolvedValue": "#272727",
|
|
11976
12082
|
"resolvedType": "Color"
|
|
@@ -11978,8 +12084,8 @@
|
|
|
11978
12084
|
{
|
|
11979
12085
|
"description": "Border color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.\n",
|
|
11980
12086
|
"commentRange": {
|
|
11981
|
-
"start":
|
|
11982
|
-
"end":
|
|
12087
|
+
"start": 323,
|
|
12088
|
+
"end": 325
|
|
11983
12089
|
},
|
|
11984
12090
|
"context": {
|
|
11985
12091
|
"type": "variable",
|
|
@@ -11987,8 +12093,8 @@
|
|
|
11987
12093
|
"value": "$kendo-base-border",
|
|
11988
12094
|
"scope": "default",
|
|
11989
12095
|
"line": {
|
|
11990
|
-
"start":
|
|
11991
|
-
"end":
|
|
12096
|
+
"start": 326,
|
|
12097
|
+
"end": 326
|
|
11992
12098
|
}
|
|
11993
12099
|
},
|
|
11994
12100
|
"group": [
|
|
@@ -11996,12 +12102,336 @@
|
|
|
11996
12102
|
],
|
|
11997
12103
|
"access": "public",
|
|
11998
12104
|
"file": {
|
|
11999
|
-
"path": "
|
|
12000
|
-
"name": "
|
|
12105
|
+
"path": "core/color-system/_swatch.scss",
|
|
12106
|
+
"name": "_swatch.scss"
|
|
12107
|
+
},
|
|
12108
|
+
"resolvedValue": "#cacaca",
|
|
12109
|
+
"resolvedType": "Color"
|
|
12110
|
+
},
|
|
12111
|
+
{
|
|
12112
|
+
"description": "Background color of the component header.\n",
|
|
12113
|
+
"commentRange": {
|
|
12114
|
+
"start": 360,
|
|
12115
|
+
"end": 361
|
|
12116
|
+
},
|
|
12117
|
+
"context": {
|
|
12118
|
+
"type": "variable",
|
|
12119
|
+
"name": "kendo-component-header-bg",
|
|
12120
|
+
"value": "$kendo-base-bg",
|
|
12121
|
+
"scope": "default",
|
|
12122
|
+
"line": {
|
|
12123
|
+
"start": 362,
|
|
12124
|
+
"end": 362
|
|
12125
|
+
}
|
|
12126
|
+
},
|
|
12127
|
+
"group": [
|
|
12128
|
+
"component"
|
|
12129
|
+
],
|
|
12130
|
+
"access": "public",
|
|
12131
|
+
"file": {
|
|
12132
|
+
"path": "core/color-system/_swatch.scss",
|
|
12133
|
+
"name": "_swatch.scss"
|
|
12134
|
+
},
|
|
12135
|
+
"resolvedValue": "#f0f0f0",
|
|
12136
|
+
"resolvedType": "Color"
|
|
12137
|
+
},
|
|
12138
|
+
{
|
|
12139
|
+
"description": "Text color of the component header.\n",
|
|
12140
|
+
"commentRange": {
|
|
12141
|
+
"start": 363,
|
|
12142
|
+
"end": 364
|
|
12143
|
+
},
|
|
12144
|
+
"context": {
|
|
12145
|
+
"type": "variable",
|
|
12146
|
+
"name": "kendo-component-header-text",
|
|
12147
|
+
"value": "$kendo-base-text",
|
|
12148
|
+
"scope": "default",
|
|
12149
|
+
"line": {
|
|
12150
|
+
"start": 365,
|
|
12151
|
+
"end": 365
|
|
12152
|
+
}
|
|
12153
|
+
},
|
|
12154
|
+
"group": [
|
|
12155
|
+
"component"
|
|
12156
|
+
],
|
|
12157
|
+
"access": "public",
|
|
12158
|
+
"file": {
|
|
12159
|
+
"path": "core/color-system/_swatch.scss",
|
|
12160
|
+
"name": "_swatch.scss"
|
|
12161
|
+
},
|
|
12162
|
+
"resolvedValue": "#272727",
|
|
12163
|
+
"resolvedType": "Color"
|
|
12164
|
+
},
|
|
12165
|
+
{
|
|
12166
|
+
"description": "Border color of the component header.\n",
|
|
12167
|
+
"commentRange": {
|
|
12168
|
+
"start": 366,
|
|
12169
|
+
"end": 367
|
|
12170
|
+
},
|
|
12171
|
+
"context": {
|
|
12172
|
+
"type": "variable",
|
|
12173
|
+
"name": "kendo-component-header-border",
|
|
12174
|
+
"value": "$kendo-base-border",
|
|
12175
|
+
"scope": "default",
|
|
12176
|
+
"line": {
|
|
12177
|
+
"start": 368,
|
|
12178
|
+
"end": 368
|
|
12179
|
+
}
|
|
12180
|
+
},
|
|
12181
|
+
"group": [
|
|
12182
|
+
"component"
|
|
12183
|
+
],
|
|
12184
|
+
"access": "public",
|
|
12185
|
+
"file": {
|
|
12186
|
+
"path": "core/color-system/_swatch.scss",
|
|
12187
|
+
"name": "_swatch.scss"
|
|
12001
12188
|
},
|
|
12002
12189
|
"resolvedValue": "#cacaca",
|
|
12003
12190
|
"resolvedType": "Color"
|
|
12004
12191
|
},
|
|
12192
|
+
{
|
|
12193
|
+
"description": "Gradient of the component header.\n",
|
|
12194
|
+
"commentRange": {
|
|
12195
|
+
"start": 369,
|
|
12196
|
+
"end": 370
|
|
12197
|
+
},
|
|
12198
|
+
"context": {
|
|
12199
|
+
"type": "variable",
|
|
12200
|
+
"name": "kendo-component-header-gradient",
|
|
12201
|
+
"value": "$kendo-base-gradient",
|
|
12202
|
+
"scope": "default",
|
|
12203
|
+
"line": {
|
|
12204
|
+
"start": 371,
|
|
12205
|
+
"end": 371
|
|
12206
|
+
}
|
|
12207
|
+
},
|
|
12208
|
+
"group": [
|
|
12209
|
+
"component"
|
|
12210
|
+
],
|
|
12211
|
+
"access": "public",
|
|
12212
|
+
"file": {
|
|
12213
|
+
"path": "core/color-system/_swatch.scss",
|
|
12214
|
+
"name": "_swatch.scss"
|
|
12215
|
+
},
|
|
12216
|
+
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
12217
|
+
"resolvedType": "List"
|
|
12218
|
+
},
|
|
12219
|
+
{
|
|
12220
|
+
"description": "Background color of the invalid items.\n",
|
|
12221
|
+
"commentRange": {
|
|
12222
|
+
"start": 373,
|
|
12223
|
+
"end": 374
|
|
12224
|
+
},
|
|
12225
|
+
"context": {
|
|
12226
|
+
"type": "variable",
|
|
12227
|
+
"name": "kendo-invalid-bg",
|
|
12228
|
+
"value": "null",
|
|
12229
|
+
"scope": "default",
|
|
12230
|
+
"line": {
|
|
12231
|
+
"start": 375,
|
|
12232
|
+
"end": 375
|
|
12233
|
+
}
|
|
12234
|
+
},
|
|
12235
|
+
"group": [
|
|
12236
|
+
"component"
|
|
12237
|
+
],
|
|
12238
|
+
"access": "public",
|
|
12239
|
+
"file": {
|
|
12240
|
+
"path": "core/color-system/_swatch.scss",
|
|
12241
|
+
"name": "_swatch.scss"
|
|
12242
|
+
},
|
|
12243
|
+
"resolvedValue": "null",
|
|
12244
|
+
"resolvedType": "Null"
|
|
12245
|
+
},
|
|
12246
|
+
{
|
|
12247
|
+
"description": "Text color of the invalid items.\n",
|
|
12248
|
+
"commentRange": {
|
|
12249
|
+
"start": 376,
|
|
12250
|
+
"end": 377
|
|
12251
|
+
},
|
|
12252
|
+
"context": {
|
|
12253
|
+
"type": "variable",
|
|
12254
|
+
"name": "kendo-invalid-text",
|
|
12255
|
+
"value": "$kendo-color-error",
|
|
12256
|
+
"scope": "default",
|
|
12257
|
+
"line": {
|
|
12258
|
+
"start": 378,
|
|
12259
|
+
"end": 378
|
|
12260
|
+
}
|
|
12261
|
+
},
|
|
12262
|
+
"group": [
|
|
12263
|
+
"component"
|
|
12264
|
+
],
|
|
12265
|
+
"access": "public",
|
|
12266
|
+
"file": {
|
|
12267
|
+
"path": "core/color-system/_swatch.scss",
|
|
12268
|
+
"name": "_swatch.scss"
|
|
12269
|
+
},
|
|
12270
|
+
"resolvedValue": "#d92800",
|
|
12271
|
+
"resolvedType": "Color"
|
|
12272
|
+
},
|
|
12273
|
+
{
|
|
12274
|
+
"description": "Border color of the invalid items.\n",
|
|
12275
|
+
"commentRange": {
|
|
12276
|
+
"start": 379,
|
|
12277
|
+
"end": 380
|
|
12278
|
+
},
|
|
12279
|
+
"context": {
|
|
12280
|
+
"type": "variable",
|
|
12281
|
+
"name": "kendo-invalid-border",
|
|
12282
|
+
"value": "$kendo-color-error",
|
|
12283
|
+
"scope": "default",
|
|
12284
|
+
"line": {
|
|
12285
|
+
"start": 381,
|
|
12286
|
+
"end": 381
|
|
12287
|
+
}
|
|
12288
|
+
},
|
|
12289
|
+
"group": [
|
|
12290
|
+
"component"
|
|
12291
|
+
],
|
|
12292
|
+
"access": "public",
|
|
12293
|
+
"file": {
|
|
12294
|
+
"path": "core/color-system/_swatch.scss",
|
|
12295
|
+
"name": "_swatch.scss"
|
|
12296
|
+
},
|
|
12297
|
+
"resolvedValue": "#d92800",
|
|
12298
|
+
"resolvedType": "Color"
|
|
12299
|
+
},
|
|
12300
|
+
{
|
|
12301
|
+
"description": "Shadow of the invalid items.\n",
|
|
12302
|
+
"commentRange": {
|
|
12303
|
+
"start": 382,
|
|
12304
|
+
"end": 383
|
|
12305
|
+
},
|
|
12306
|
+
"context": {
|
|
12307
|
+
"type": "variable",
|
|
12308
|
+
"name": "kendo-invalid-shadow",
|
|
12309
|
+
"value": "null",
|
|
12310
|
+
"scope": "default",
|
|
12311
|
+
"line": {
|
|
12312
|
+
"start": 384,
|
|
12313
|
+
"end": 384
|
|
12314
|
+
}
|
|
12315
|
+
},
|
|
12316
|
+
"group": [
|
|
12317
|
+
"component"
|
|
12318
|
+
],
|
|
12319
|
+
"access": "public",
|
|
12320
|
+
"file": {
|
|
12321
|
+
"path": "core/color-system/_swatch.scss",
|
|
12322
|
+
"name": "_swatch.scss"
|
|
12323
|
+
},
|
|
12324
|
+
"resolvedValue": "null",
|
|
12325
|
+
"resolvedType": "Null"
|
|
12326
|
+
},
|
|
12327
|
+
{
|
|
12328
|
+
"description": "Background color of the valid items.\n",
|
|
12329
|
+
"commentRange": {
|
|
12330
|
+
"start": 386,
|
|
12331
|
+
"end": 387
|
|
12332
|
+
},
|
|
12333
|
+
"context": {
|
|
12334
|
+
"type": "variable",
|
|
12335
|
+
"name": "kendo-valid-bg",
|
|
12336
|
+
"value": "null",
|
|
12337
|
+
"scope": "default",
|
|
12338
|
+
"line": {
|
|
12339
|
+
"start": 388,
|
|
12340
|
+
"end": 388
|
|
12341
|
+
}
|
|
12342
|
+
},
|
|
12343
|
+
"group": [
|
|
12344
|
+
"component"
|
|
12345
|
+
],
|
|
12346
|
+
"access": "public",
|
|
12347
|
+
"file": {
|
|
12348
|
+
"path": "core/color-system/_swatch.scss",
|
|
12349
|
+
"name": "_swatch.scss"
|
|
12350
|
+
},
|
|
12351
|
+
"resolvedValue": "null",
|
|
12352
|
+
"resolvedType": "Null"
|
|
12353
|
+
},
|
|
12354
|
+
{
|
|
12355
|
+
"description": "Text color of the valid items.\n",
|
|
12356
|
+
"commentRange": {
|
|
12357
|
+
"start": 389,
|
|
12358
|
+
"end": 390
|
|
12359
|
+
},
|
|
12360
|
+
"context": {
|
|
12361
|
+
"type": "variable",
|
|
12362
|
+
"name": "kendo-valid-text",
|
|
12363
|
+
"value": "$kendo-color-success",
|
|
12364
|
+
"scope": "default",
|
|
12365
|
+
"line": {
|
|
12366
|
+
"start": 391,
|
|
12367
|
+
"end": 391
|
|
12368
|
+
}
|
|
12369
|
+
},
|
|
12370
|
+
"group": [
|
|
12371
|
+
"component"
|
|
12372
|
+
],
|
|
12373
|
+
"access": "public",
|
|
12374
|
+
"file": {
|
|
12375
|
+
"path": "core/color-system/_swatch.scss",
|
|
12376
|
+
"name": "_swatch.scss"
|
|
12377
|
+
},
|
|
12378
|
+
"resolvedValue": "#3ea44e",
|
|
12379
|
+
"resolvedType": "Color"
|
|
12380
|
+
},
|
|
12381
|
+
{
|
|
12382
|
+
"description": "Border color of the valid items.\n",
|
|
12383
|
+
"commentRange": {
|
|
12384
|
+
"start": 392,
|
|
12385
|
+
"end": 393
|
|
12386
|
+
},
|
|
12387
|
+
"context": {
|
|
12388
|
+
"type": "variable",
|
|
12389
|
+
"name": "kendo-valid-border",
|
|
12390
|
+
"value": "$kendo-color-success",
|
|
12391
|
+
"scope": "default",
|
|
12392
|
+
"line": {
|
|
12393
|
+
"start": 394,
|
|
12394
|
+
"end": 394
|
|
12395
|
+
}
|
|
12396
|
+
},
|
|
12397
|
+
"group": [
|
|
12398
|
+
"component"
|
|
12399
|
+
],
|
|
12400
|
+
"access": "public",
|
|
12401
|
+
"file": {
|
|
12402
|
+
"path": "core/color-system/_swatch.scss",
|
|
12403
|
+
"name": "_swatch.scss"
|
|
12404
|
+
},
|
|
12405
|
+
"resolvedValue": "#3ea44e",
|
|
12406
|
+
"resolvedType": "Color"
|
|
12407
|
+
},
|
|
12408
|
+
{
|
|
12409
|
+
"description": "Shadow of the valid items.\n",
|
|
12410
|
+
"commentRange": {
|
|
12411
|
+
"start": 395,
|
|
12412
|
+
"end": 396
|
|
12413
|
+
},
|
|
12414
|
+
"context": {
|
|
12415
|
+
"type": "variable",
|
|
12416
|
+
"name": "kendo-valid-shadow",
|
|
12417
|
+
"value": "null",
|
|
12418
|
+
"scope": "default",
|
|
12419
|
+
"line": {
|
|
12420
|
+
"start": 397,
|
|
12421
|
+
"end": 397
|
|
12422
|
+
}
|
|
12423
|
+
},
|
|
12424
|
+
"group": [
|
|
12425
|
+
"component"
|
|
12426
|
+
],
|
|
12427
|
+
"access": "public",
|
|
12428
|
+
"file": {
|
|
12429
|
+
"path": "core/color-system/_swatch.scss",
|
|
12430
|
+
"name": "_swatch.scss"
|
|
12431
|
+
},
|
|
12432
|
+
"resolvedValue": "null",
|
|
12433
|
+
"resolvedType": "Null"
|
|
12434
|
+
},
|
|
12005
12435
|
{
|
|
12006
12436
|
"description": "The background color of the Dialog titlebar.\n",
|
|
12007
12437
|
"commentRange": {
|
|
@@ -13118,7 +13548,7 @@
|
|
|
13118
13548
|
"context": {
|
|
13119
13549
|
"type": "variable",
|
|
13120
13550
|
"name": "kendo-dock-manager-dock-preview-bg",
|
|
13121
|
-
"value": "rgba( $kendo-color-primary, .16 )",
|
|
13551
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 ))",
|
|
13122
13552
|
"scope": "default",
|
|
13123
13553
|
"line": {
|
|
13124
13554
|
"start": 110,
|
|
@@ -13523,7 +13953,7 @@
|
|
|
13523
13953
|
"context": {
|
|
13524
13954
|
"type": "variable",
|
|
13525
13955
|
"name": "kendo-dropzone-icon-text",
|
|
13526
|
-
"value": "k-try-tint( $kendo-dropzone-text, 4 )",
|
|
13956
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 ))",
|
|
13527
13957
|
"scope": "default",
|
|
13528
13958
|
"line": {
|
|
13529
13959
|
"start": 41,
|
|
@@ -13955,7 +14385,7 @@
|
|
|
13955
14385
|
"context": {
|
|
13956
14386
|
"type": "variable",
|
|
13957
14387
|
"name": "kendo-editor-highlighted-bg",
|
|
13958
|
-
"value": "k-color-mix( $kendo-color-primary, #ffffff, 20% )",
|
|
14388
|
+
"value": "if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% ))",
|
|
13959
14389
|
"scope": "default",
|
|
13960
14390
|
"line": {
|
|
13961
14391
|
"start": 32,
|
|
@@ -14543,17 +14973,17 @@
|
|
|
14543
14973
|
{
|
|
14544
14974
|
"description": "The background color of the hovered ExpansionPanel header.\n",
|
|
14545
14975
|
"commentRange": {
|
|
14546
|
-
"start":
|
|
14547
|
-
"end":
|
|
14976
|
+
"start": 50,
|
|
14977
|
+
"end": 51
|
|
14548
14978
|
},
|
|
14549
14979
|
"context": {
|
|
14550
14980
|
"type": "variable",
|
|
14551
14981
|
"name": "kendo-expander-header-hover-bg",
|
|
14552
|
-
"value": "k-color-shade( $kendo-expander-bg, 1 )",
|
|
14982
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 ))",
|
|
14553
14983
|
"scope": "default",
|
|
14554
14984
|
"line": {
|
|
14555
|
-
"start":
|
|
14556
|
-
"end":
|
|
14985
|
+
"start": 52,
|
|
14986
|
+
"end": 52
|
|
14557
14987
|
}
|
|
14558
14988
|
},
|
|
14559
14989
|
"group": [
|
|
@@ -14570,8 +15000,8 @@
|
|
|
14570
15000
|
{
|
|
14571
15001
|
"description": "The background color of the focused ExpansionPanel header.\n",
|
|
14572
15002
|
"commentRange": {
|
|
14573
|
-
"start":
|
|
14574
|
-
"end":
|
|
15003
|
+
"start": 53,
|
|
15004
|
+
"end": 54
|
|
14575
15005
|
},
|
|
14576
15006
|
"context": {
|
|
14577
15007
|
"type": "variable",
|
|
@@ -14579,8 +15009,8 @@
|
|
|
14579
15009
|
"value": "null",
|
|
14580
15010
|
"scope": "default",
|
|
14581
15011
|
"line": {
|
|
14582
|
-
"start":
|
|
14583
|
-
"end":
|
|
15012
|
+
"start": 55,
|
|
15013
|
+
"end": 55
|
|
14584
15014
|
}
|
|
14585
15015
|
},
|
|
14586
15016
|
"group": [
|
|
@@ -14597,8 +15027,8 @@
|
|
|
14597
15027
|
{
|
|
14598
15028
|
"description": "The box shadow of the focused ExpansionPanel header.\n",
|
|
14599
15029
|
"commentRange": {
|
|
14600
|
-
"start":
|
|
14601
|
-
"end":
|
|
15030
|
+
"start": 56,
|
|
15031
|
+
"end": 57
|
|
14602
15032
|
},
|
|
14603
15033
|
"context": {
|
|
14604
15034
|
"type": "variable",
|
|
@@ -14606,8 +15036,8 @@
|
|
|
14606
15036
|
"value": "$kendo-list-item-focus-shadow",
|
|
14607
15037
|
"scope": "default",
|
|
14608
15038
|
"line": {
|
|
14609
|
-
"start":
|
|
14610
|
-
"end":
|
|
15039
|
+
"start": 58,
|
|
15040
|
+
"end": 58
|
|
14611
15041
|
}
|
|
14612
15042
|
},
|
|
14613
15043
|
"group": [
|
|
@@ -14624,8 +15054,8 @@
|
|
|
14624
15054
|
{
|
|
14625
15055
|
"description": "The text color of the ExpansionPanel title.\n",
|
|
14626
15056
|
"commentRange": {
|
|
14627
|
-
"start":
|
|
14628
|
-
"end":
|
|
15057
|
+
"start": 60,
|
|
15058
|
+
"end": 61
|
|
14629
15059
|
},
|
|
14630
15060
|
"context": {
|
|
14631
15061
|
"type": "variable",
|
|
@@ -14633,8 +15063,8 @@
|
|
|
14633
15063
|
"value": "$kendo-color-primary",
|
|
14634
15064
|
"scope": "default",
|
|
14635
15065
|
"line": {
|
|
14636
|
-
"start":
|
|
14637
|
-
"end":
|
|
15066
|
+
"start": 62,
|
|
15067
|
+
"end": 62
|
|
14638
15068
|
}
|
|
14639
15069
|
},
|
|
14640
15070
|
"group": [
|
|
@@ -14651,8 +15081,8 @@
|
|
|
14651
15081
|
{
|
|
14652
15082
|
"description": "The text color of the ExpansionPanel sub-title.\n",
|
|
14653
15083
|
"commentRange": {
|
|
14654
|
-
"start":
|
|
14655
|
-
"end":
|
|
15084
|
+
"start": 64,
|
|
15085
|
+
"end": 65
|
|
14656
15086
|
},
|
|
14657
15087
|
"context": {
|
|
14658
15088
|
"type": "variable",
|
|
@@ -14660,8 +15090,8 @@
|
|
|
14660
15090
|
"value": "$kendo-subtle-text",
|
|
14661
15091
|
"scope": "default",
|
|
14662
15092
|
"line": {
|
|
14663
|
-
"start":
|
|
14664
|
-
"end":
|
|
15093
|
+
"start": 66,
|
|
15094
|
+
"end": 66
|
|
14665
15095
|
}
|
|
14666
15096
|
},
|
|
14667
15097
|
"group": [
|
|
@@ -14678,8 +15108,8 @@
|
|
|
14678
15108
|
{
|
|
14679
15109
|
"description": "The horizontal margin of the ExpansionPanel indicator.\n",
|
|
14680
15110
|
"commentRange": {
|
|
14681
|
-
"start":
|
|
14682
|
-
"end":
|
|
15111
|
+
"start": 68,
|
|
15112
|
+
"end": 69
|
|
14683
15113
|
},
|
|
14684
15114
|
"context": {
|
|
14685
15115
|
"type": "variable",
|
|
@@ -14687,8 +15117,8 @@
|
|
|
14687
15117
|
"value": "k-map-get( $kendo-spacing, 3 )",
|
|
14688
15118
|
"scope": "default",
|
|
14689
15119
|
"line": {
|
|
14690
|
-
"start":
|
|
14691
|
-
"end":
|
|
15120
|
+
"start": 70,
|
|
15121
|
+
"end": 70
|
|
14692
15122
|
}
|
|
14693
15123
|
},
|
|
14694
15124
|
"group": [
|
|
@@ -14705,8 +15135,8 @@
|
|
|
14705
15135
|
{
|
|
14706
15136
|
"description": "The horizontal padding of the ExpansionPanel content.\n",
|
|
14707
15137
|
"commentRange": {
|
|
14708
|
-
"start":
|
|
14709
|
-
"end":
|
|
15138
|
+
"start": 72,
|
|
15139
|
+
"end": 73
|
|
14710
15140
|
},
|
|
14711
15141
|
"context": {
|
|
14712
15142
|
"type": "variable",
|
|
@@ -14714,8 +15144,8 @@
|
|
|
14714
15144
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
14715
15145
|
"scope": "default",
|
|
14716
15146
|
"line": {
|
|
14717
|
-
"start":
|
|
14718
|
-
"end":
|
|
15147
|
+
"start": 74,
|
|
15148
|
+
"end": 74
|
|
14719
15149
|
}
|
|
14720
15150
|
},
|
|
14721
15151
|
"group": [
|
|
@@ -14732,8 +15162,8 @@
|
|
|
14732
15162
|
{
|
|
14733
15163
|
"description": "The vertical padding of the ExpansionPanel content.\n",
|
|
14734
15164
|
"commentRange": {
|
|
14735
|
-
"start":
|
|
14736
|
-
"end":
|
|
15165
|
+
"start": 75,
|
|
15166
|
+
"end": 76
|
|
14737
15167
|
},
|
|
14738
15168
|
"context": {
|
|
14739
15169
|
"type": "variable",
|
|
@@ -14741,8 +15171,8 @@
|
|
|
14741
15171
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
14742
15172
|
"scope": "default",
|
|
14743
15173
|
"line": {
|
|
14744
|
-
"start":
|
|
14745
|
-
"end":
|
|
15174
|
+
"start": 77,
|
|
15175
|
+
"end": 77
|
|
14746
15176
|
}
|
|
14747
15177
|
},
|
|
14748
15178
|
"group": [
|
|
@@ -15764,7 +16194,7 @@
|
|
|
15764
16194
|
"context": {
|
|
15765
16195
|
"type": "variable",
|
|
15766
16196
|
"name": "kendo-file-manager-listview-item-icon-text",
|
|
15767
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
16197
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
15768
16198
|
"scope": "default",
|
|
15769
16199
|
"line": {
|
|
15770
16200
|
"start": 122,
|
|
@@ -16250,7 +16680,7 @@
|
|
|
16250
16680
|
"context": {
|
|
16251
16681
|
"type": "variable",
|
|
16252
16682
|
"name": "kendo-file-manager-preview-icon-text",
|
|
16253
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
16683
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
16254
16684
|
"scope": "default",
|
|
16255
16685
|
"line": {
|
|
16256
16686
|
"start": 179,
|
|
@@ -19301,7 +19731,7 @@
|
|
|
19301
19731
|
"context": {
|
|
19302
19732
|
"type": "variable",
|
|
19303
19733
|
"name": "kendo-fieldset-legend-text",
|
|
19304
|
-
"value": "k-try-shade( $kendo-body-text, 2 )",
|
|
19734
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 ))",
|
|
19305
19735
|
"scope": "default",
|
|
19306
19736
|
"line": {
|
|
19307
19737
|
"start": 154,
|
|
@@ -20456,17 +20886,17 @@
|
|
|
20456
20886
|
{
|
|
20457
20887
|
"description": "Background color of the grid row resize indicator\n",
|
|
20458
20888
|
"commentRange": {
|
|
20459
|
-
"start":
|
|
20460
|
-
"end":
|
|
20889
|
+
"start": 315,
|
|
20890
|
+
"end": 316
|
|
20461
20891
|
},
|
|
20462
20892
|
"context": {
|
|
20463
20893
|
"type": "variable",
|
|
20464
20894
|
"name": "kendo-grid-row-resizer-hover-bg",
|
|
20465
|
-
"value": "rgba( k-contrast-color( $kendo-grid-bg ), .12 )",
|
|
20895
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 ))",
|
|
20466
20896
|
"scope": "default",
|
|
20467
20897
|
"line": {
|
|
20468
|
-
"start":
|
|
20469
|
-
"end":
|
|
20898
|
+
"start": 317,
|
|
20899
|
+
"end": 317
|
|
20470
20900
|
}
|
|
20471
20901
|
},
|
|
20472
20902
|
"group": [
|
|
@@ -20483,8 +20913,8 @@
|
|
|
20483
20913
|
{
|
|
20484
20914
|
"description": "Active background color of the grid row resize indicator\n",
|
|
20485
20915
|
"commentRange": {
|
|
20486
|
-
"start":
|
|
20487
|
-
"end":
|
|
20916
|
+
"start": 318,
|
|
20917
|
+
"end": 319
|
|
20488
20918
|
},
|
|
20489
20919
|
"context": {
|
|
20490
20920
|
"type": "variable",
|
|
@@ -20492,8 +20922,8 @@
|
|
|
20492
20922
|
"value": "$kendo-color-primary",
|
|
20493
20923
|
"scope": "default",
|
|
20494
20924
|
"line": {
|
|
20495
|
-
"start":
|
|
20496
|
-
"end":
|
|
20925
|
+
"start": 320,
|
|
20926
|
+
"end": 320
|
|
20497
20927
|
}
|
|
20498
20928
|
},
|
|
20499
20929
|
"group": [
|
|
@@ -20510,8 +20940,8 @@
|
|
|
20510
20940
|
{
|
|
20511
20941
|
"description": "Height of the grid row resize indicator\n",
|
|
20512
20942
|
"commentRange": {
|
|
20513
|
-
"start":
|
|
20514
|
-
"end":
|
|
20943
|
+
"start": 321,
|
|
20944
|
+
"end": 322
|
|
20515
20945
|
},
|
|
20516
20946
|
"context": {
|
|
20517
20947
|
"type": "variable",
|
|
@@ -20519,8 +20949,8 @@
|
|
|
20519
20949
|
"value": "k-map-get( $kendo-spacing, .5 )",
|
|
20520
20950
|
"scope": "default",
|
|
20521
20951
|
"line": {
|
|
20522
|
-
"start":
|
|
20523
|
-
"end":
|
|
20952
|
+
"start": 323,
|
|
20953
|
+
"end": 323
|
|
20524
20954
|
}
|
|
20525
20955
|
},
|
|
20526
20956
|
"group": [
|
|
@@ -21677,7 +22107,7 @@
|
|
|
21677
22107
|
"context": {
|
|
21678
22108
|
"type": "variable",
|
|
21679
22109
|
"name": "kendo-input-outline-border",
|
|
21680
|
-
"value": "rgba( $kendo-button-text, .5)",
|
|
22110
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5))",
|
|
21681
22111
|
"scope": "default",
|
|
21682
22112
|
"line": {
|
|
21683
22113
|
"start": 171,
|
|
@@ -21758,7 +22188,7 @@
|
|
|
21758
22188
|
"context": {
|
|
21759
22189
|
"type": "variable",
|
|
21760
22190
|
"name": "kendo-input-outline-hover-border",
|
|
21761
|
-
"value": "rgba( $kendo-button-text, .8)",
|
|
22191
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8))",
|
|
21762
22192
|
"scope": "default",
|
|
21763
22193
|
"line": {
|
|
21764
22194
|
"start": 181,
|
|
@@ -24566,7 +24996,7 @@
|
|
|
24566
24996
|
"context": {
|
|
24567
24997
|
"type": "variable",
|
|
24568
24998
|
"name": "kendo-listview-item-selected-bg",
|
|
24569
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
24999
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
24570
25000
|
"scope": "default",
|
|
24571
25001
|
"line": {
|
|
24572
25002
|
"start": 44,
|
|
@@ -29615,7 +30045,7 @@
|
|
|
29615
30045
|
"context": {
|
|
29616
30046
|
"type": "variable",
|
|
29617
30047
|
"name": "kendo-picker-outline-border",
|
|
29618
|
-
"value": "rgba( $kendo-picker-outline-text, .5)",
|
|
30048
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5))",
|
|
29619
30049
|
"scope": "default",
|
|
29620
30050
|
"line": {
|
|
29621
30051
|
"start": 372,
|
|
@@ -29669,7 +30099,7 @@
|
|
|
29669
30099
|
"context": {
|
|
29670
30100
|
"type": "variable",
|
|
29671
30101
|
"name": "kendo-picker-outline-hover-text",
|
|
29672
|
-
"value": "k-contrast-color( $kendo-picker-outline-hover-bg )",
|
|
30102
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg ))",
|
|
29673
30103
|
"scope": "default",
|
|
29674
30104
|
"line": {
|
|
29675
30105
|
"start": 379,
|
|
@@ -29993,7 +30423,7 @@
|
|
|
29993
30423
|
"context": {
|
|
29994
30424
|
"type": "variable",
|
|
29995
30425
|
"name": "kendo-picker-flat-hover-bg",
|
|
29996
|
-
"value": "rgba( $kendo-button-text, .04 )",
|
|
30426
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 ))",
|
|
29997
30427
|
"scope": "default",
|
|
29998
30428
|
"line": {
|
|
29999
30429
|
"start": 419,
|
|
@@ -30047,7 +30477,7 @@
|
|
|
30047
30477
|
"context": {
|
|
30048
30478
|
"type": "variable",
|
|
30049
30479
|
"name": "kendo-picker-flat-hover-border",
|
|
30050
|
-
"value": "rgba( $kendo-button-border, .16 )",
|
|
30480
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 ))",
|
|
30051
30481
|
"scope": "default",
|
|
30052
30482
|
"line": {
|
|
30053
30483
|
"start": 425,
|
|
@@ -31478,7 +31908,7 @@
|
|
|
31478
31908
|
"context": {
|
|
31479
31909
|
"type": "variable",
|
|
31480
31910
|
"name": "kendo-progressbar-bg",
|
|
31481
|
-
"value": "k-try-shade( $kendo-component-bg, 1 )",
|
|
31911
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 ))",
|
|
31482
31912
|
"scope": "default",
|
|
31483
31913
|
"line": {
|
|
31484
31914
|
"start": 27,
|
|
@@ -31613,7 +32043,7 @@
|
|
|
31613
32043
|
"context": {
|
|
31614
32044
|
"type": "variable",
|
|
31615
32045
|
"name": "kendo-progressbar-value-text",
|
|
31616
|
-
"value": "k-contrast-legacy( $kendo-progressbar-value-bg )",
|
|
32046
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg ))",
|
|
31617
32047
|
"scope": "default",
|
|
31618
32048
|
"line": {
|
|
31619
32049
|
"start": 43,
|
|
@@ -31640,7 +32070,7 @@
|
|
|
31640
32070
|
"context": {
|
|
31641
32071
|
"type": "variable",
|
|
31642
32072
|
"name": "kendo-progressbar-value-border",
|
|
31643
|
-
"value": "k-try-shade( $kendo-progressbar-value-bg )",
|
|
32073
|
+
"value": "if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg ))",
|
|
31644
32074
|
"scope": "default",
|
|
31645
32075
|
"line": {
|
|
31646
32076
|
"start": 46,
|
|
@@ -34340,7 +34770,7 @@
|
|
|
34340
34770
|
"context": {
|
|
34341
34771
|
"type": "variable",
|
|
34342
34772
|
"name": "kendo-scrollview-pagebutton-primary-border",
|
|
34343
|
-
"value": "k-try-shade( $kendo-color-primary, 2 )",
|
|
34773
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 ))",
|
|
34344
34774
|
"scope": "default",
|
|
34345
34775
|
"line": {
|
|
34346
34776
|
"start": 40,
|
|
@@ -34907,7 +35337,7 @@
|
|
|
34907
35337
|
"context": {
|
|
34908
35338
|
"type": "variable",
|
|
34909
35339
|
"name": "kendo-skeleton-item-bg",
|
|
34910
|
-
"value": "rgba( $kendo-color-inverse, .2 )",
|
|
35340
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 ))",
|
|
34911
35341
|
"scope": "default",
|
|
34912
35342
|
"line": {
|
|
34913
35343
|
"start": 20,
|
|
@@ -35690,7 +36120,7 @@
|
|
|
35690
36120
|
"context": {
|
|
35691
36121
|
"type": "variable",
|
|
35692
36122
|
"name": "kendo-switch-off-track-focus-ring",
|
|
35693
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
36123
|
+
"value": "0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 )",
|
|
35694
36124
|
"scope": "default",
|
|
35695
36125
|
"line": {
|
|
35696
36126
|
"start": 71,
|
|
@@ -35825,7 +36255,7 @@
|
|
|
35825
36255
|
"context": {
|
|
35826
36256
|
"type": "variable",
|
|
35827
36257
|
"name": "kendo-switch-off-thumb-bg",
|
|
35828
|
-
"value": "k-try-shade( $kendo-switch-off-track-bg )",
|
|
36258
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg ))",
|
|
35829
36259
|
"scope": "default",
|
|
35830
36260
|
"line": {
|
|
35831
36261
|
"start": 88,
|
|
@@ -35933,7 +36363,7 @@
|
|
|
35933
36363
|
"context": {
|
|
35934
36364
|
"type": "variable",
|
|
35935
36365
|
"name": "kendo-switch-off-thumb-hover-bg",
|
|
35936
|
-
"value": "k-try-shade( $kendo-switch-off-thumb-bg )",
|
|
36366
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg ))",
|
|
35937
36367
|
"scope": "default",
|
|
35938
36368
|
"line": {
|
|
35939
36369
|
"start": 101,
|
|
@@ -36365,7 +36795,7 @@
|
|
|
36365
36795
|
"context": {
|
|
36366
36796
|
"type": "variable",
|
|
36367
36797
|
"name": "kendo-switch-on-track-focus-ring",
|
|
36368
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
36798
|
+
"value": "0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 )",
|
|
36369
36799
|
"scope": "default",
|
|
36370
36800
|
"line": {
|
|
36371
36801
|
"start": 153,
|
|
@@ -36554,7 +36984,7 @@
|
|
|
36554
36984
|
"context": {
|
|
36555
36985
|
"type": "variable",
|
|
36556
36986
|
"name": "kendo-switch-on-thumb-border",
|
|
36557
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
36987
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
36558
36988
|
"scope": "default",
|
|
36559
36989
|
"line": {
|
|
36560
36990
|
"start": 176,
|
|
@@ -36608,7 +37038,7 @@
|
|
|
36608
37038
|
"context": {
|
|
36609
37039
|
"type": "variable",
|
|
36610
37040
|
"name": "kendo-switch-on-thumb-hover-bg",
|
|
36611
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
37041
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
36612
37042
|
"scope": "default",
|
|
36613
37043
|
"line": {
|
|
36614
37044
|
"start": 183,
|
|
@@ -36662,7 +37092,7 @@
|
|
|
36662
37092
|
"context": {
|
|
36663
37093
|
"type": "variable",
|
|
36664
37094
|
"name": "kendo-switch-on-thumb-hover-border",
|
|
36665
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-hover-bg )",
|
|
37095
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg ))",
|
|
36666
37096
|
"scope": "default",
|
|
36667
37097
|
"line": {
|
|
36668
37098
|
"start": 189,
|
|
@@ -37283,7 +37713,7 @@
|
|
|
37283
37713
|
"context": {
|
|
37284
37714
|
"type": "variable",
|
|
37285
37715
|
"name": "kendo-table-alt-row-bg",
|
|
37286
|
-
"value": "k-try-shade( $kendo-table-bg, .5 )",
|
|
37716
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 ))",
|
|
37287
37717
|
"scope": "default",
|
|
37288
37718
|
"line": {
|
|
37289
37719
|
"start": 114,
|
|
@@ -37364,7 +37794,7 @@
|
|
|
37364
37794
|
"context": {
|
|
37365
37795
|
"type": "variable",
|
|
37366
37796
|
"name": "kendo-table-hover-bg",
|
|
37367
|
-
"value": "k-try-shade( $kendo-table-bg, 1 )",
|
|
37797
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 ))",
|
|
37368
37798
|
"scope": "default",
|
|
37369
37799
|
"line": {
|
|
37370
37800
|
"start": 125,
|
|
@@ -37553,7 +37983,7 @@
|
|
|
37553
37983
|
"context": {
|
|
37554
37984
|
"type": "variable",
|
|
37555
37985
|
"name": "kendo-table-selected-bg",
|
|
37556
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
37986
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
37557
37987
|
"scope": "default",
|
|
37558
37988
|
"line": {
|
|
37559
37989
|
"start": 150,
|
|
@@ -39632,7 +40062,7 @@
|
|
|
39632
40062
|
"context": {
|
|
39633
40063
|
"type": "variable",
|
|
39634
40064
|
"name": "kendo-tooltip-bg",
|
|
39635
|
-
"value": "rgba( k-contrast-color( $kendo-body-bg ), .75 )",
|
|
40065
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 ))",
|
|
39636
40066
|
"scope": "default",
|
|
39637
40067
|
"line": {
|
|
39638
40068
|
"start": 39,
|
|
@@ -39659,7 +40089,7 @@
|
|
|
39659
40089
|
"context": {
|
|
39660
40090
|
"type": "variable",
|
|
39661
40091
|
"name": "kendo-tooltip-text",
|
|
39662
|
-
"value": "k-contrast-color( $kendo-tooltip-bg )",
|
|
40092
|
+
"value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg ))",
|
|
39663
40093
|
"scope": "default",
|
|
39664
40094
|
"line": {
|
|
39665
40095
|
"start": 42,
|
|
@@ -41111,8 +41541,8 @@
|
|
|
41111
41541
|
{
|
|
41112
41542
|
"description": "Base font size across all components.\n",
|
|
41113
41543
|
"commentRange": {
|
|
41114
|
-
"start":
|
|
41115
|
-
"end":
|
|
41544
|
+
"start": 109,
|
|
41545
|
+
"end": 110
|
|
41116
41546
|
},
|
|
41117
41547
|
"context": {
|
|
41118
41548
|
"type": "variable",
|
|
@@ -41120,8 +41550,8 @@
|
|
|
41120
41550
|
"value": "14px",
|
|
41121
41551
|
"scope": "default",
|
|
41122
41552
|
"line": {
|
|
41123
|
-
"start":
|
|
41124
|
-
"end":
|
|
41553
|
+
"start": 111,
|
|
41554
|
+
"end": 111
|
|
41125
41555
|
}
|
|
41126
41556
|
},
|
|
41127
41557
|
"group": [
|
|
@@ -41138,8 +41568,8 @@
|
|
|
41138
41568
|
{
|
|
41139
41569
|
"description": "Font family for text.\n",
|
|
41140
41570
|
"commentRange": {
|
|
41141
|
-
"start":
|
|
41142
|
-
"end":
|
|
41571
|
+
"start": 126,
|
|
41572
|
+
"end": 127
|
|
41143
41573
|
},
|
|
41144
41574
|
"context": {
|
|
41145
41575
|
"type": "variable",
|
|
@@ -41147,8 +41577,8 @@
|
|
|
41147
41577
|
"value": "system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"",
|
|
41148
41578
|
"scope": "default",
|
|
41149
41579
|
"line": {
|
|
41150
|
-
"start":
|
|
41151
|
-
"end":
|
|
41580
|
+
"start": 128,
|
|
41581
|
+
"end": 128
|
|
41152
41582
|
}
|
|
41153
41583
|
},
|
|
41154
41584
|
"group": [
|
|
@@ -41165,8 +41595,8 @@
|
|
|
41165
41595
|
{
|
|
41166
41596
|
"description": "Font family for monospaced text. Used for styling the code.\n",
|
|
41167
41597
|
"commentRange": {
|
|
41168
|
-
"start":
|
|
41169
|
-
"end":
|
|
41598
|
+
"start": 130,
|
|
41599
|
+
"end": 131
|
|
41170
41600
|
},
|
|
41171
41601
|
"context": {
|
|
41172
41602
|
"type": "variable",
|
|
@@ -41174,8 +41604,8 @@
|
|
|
41174
41604
|
"value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
|
|
41175
41605
|
"scope": "default",
|
|
41176
41606
|
"line": {
|
|
41177
|
-
"start":
|
|
41178
|
-
"end":
|
|
41607
|
+
"start": 132,
|
|
41608
|
+
"end": 132
|
|
41179
41609
|
}
|
|
41180
41610
|
},
|
|
41181
41611
|
"group": [
|
|
@@ -41192,8 +41622,8 @@
|
|
|
41192
41622
|
{
|
|
41193
41623
|
"description": "Font family across all components.\n",
|
|
41194
41624
|
"commentRange": {
|
|
41195
|
-
"start":
|
|
41196
|
-
"end":
|
|
41625
|
+
"start": 134,
|
|
41626
|
+
"end": 135
|
|
41197
41627
|
},
|
|
41198
41628
|
"context": {
|
|
41199
41629
|
"type": "variable",
|
|
@@ -41201,8 +41631,8 @@
|
|
|
41201
41631
|
"value": "inherit",
|
|
41202
41632
|
"scope": "default",
|
|
41203
41633
|
"line": {
|
|
41204
|
-
"start":
|
|
41205
|
-
"end":
|
|
41634
|
+
"start": 136,
|
|
41635
|
+
"end": 136
|
|
41206
41636
|
}
|
|
41207
41637
|
},
|
|
41208
41638
|
"group": [
|
|
@@ -41219,8 +41649,8 @@
|
|
|
41219
41649
|
{
|
|
41220
41650
|
"description": "Line height used along with $kendo-font-size.\n",
|
|
41221
41651
|
"commentRange": {
|
|
41222
|
-
"start":
|
|
41223
|
-
"end":
|
|
41652
|
+
"start": 138,
|
|
41653
|
+
"end": 139
|
|
41224
41654
|
},
|
|
41225
41655
|
"context": {
|
|
41226
41656
|
"type": "variable",
|
|
@@ -41228,8 +41658,8 @@
|
|
|
41228
41658
|
"value": "k-math-div( 20, 14 )",
|
|
41229
41659
|
"scope": "default",
|
|
41230
41660
|
"line": {
|
|
41231
|
-
"start":
|
|
41232
|
-
"end":
|
|
41661
|
+
"start": 140,
|
|
41662
|
+
"end": 140
|
|
41233
41663
|
}
|
|
41234
41664
|
},
|
|
41235
41665
|
"group": [
|
|
@@ -41246,8 +41676,8 @@
|
|
|
41246
41676
|
{
|
|
41247
41677
|
"description": "Border radius for all components.\n",
|
|
41248
41678
|
"commentRange": {
|
|
41249
|
-
"start":
|
|
41250
|
-
"end":
|
|
41679
|
+
"start": 82,
|
|
41680
|
+
"end": 82
|
|
41251
41681
|
},
|
|
41252
41682
|
"context": {
|
|
41253
41683
|
"type": "variable",
|
|
@@ -41255,8 +41685,8 @@
|
|
|
41255
41685
|
"value": "k-map-get( $kendo-spacing, 1 )",
|
|
41256
41686
|
"scope": "default",
|
|
41257
41687
|
"line": {
|
|
41258
|
-
"start":
|
|
41259
|
-
"end":
|
|
41688
|
+
"start": 83,
|
|
41689
|
+
"end": 83
|
|
41260
41690
|
}
|
|
41261
41691
|
},
|
|
41262
41692
|
"access": "public",
|
|
@@ -41273,8 +41703,8 @@
|
|
|
41273
41703
|
{
|
|
41274
41704
|
"description": "The background of the components' chrome area.\n",
|
|
41275
41705
|
"commentRange": {
|
|
41276
|
-
"start":
|
|
41277
|
-
"end":
|
|
41706
|
+
"start": 306,
|
|
41707
|
+
"end": 306
|
|
41278
41708
|
},
|
|
41279
41709
|
"context": {
|
|
41280
41710
|
"type": "variable",
|
|
@@ -41282,8 +41712,8 @@
|
|
|
41282
41712
|
"value": "#f0f0f0",
|
|
41283
41713
|
"scope": "default",
|
|
41284
41714
|
"line": {
|
|
41285
|
-
"start":
|
|
41286
|
-
"end":
|
|
41715
|
+
"start": 307,
|
|
41716
|
+
"end": 307
|
|
41287
41717
|
}
|
|
41288
41718
|
},
|
|
41289
41719
|
"access": "public",
|
|
@@ -41291,8 +41721,8 @@
|
|
|
41291
41721
|
"undefined"
|
|
41292
41722
|
],
|
|
41293
41723
|
"file": {
|
|
41294
|
-
"path": "
|
|
41295
|
-
"name": "
|
|
41724
|
+
"path": "core/color-system/_swatch.scss",
|
|
41725
|
+
"name": "_swatch.scss"
|
|
41296
41726
|
},
|
|
41297
41727
|
"resolvedValue": "#f0f0f0",
|
|
41298
41728
|
"resolvedType": "Color"
|
|
@@ -41300,8 +41730,8 @@
|
|
|
41300
41730
|
{
|
|
41301
41731
|
"description": "The text color of the components' chrome area.\n",
|
|
41302
41732
|
"commentRange": {
|
|
41303
|
-
"start":
|
|
41304
|
-
"end":
|
|
41733
|
+
"start": 308,
|
|
41734
|
+
"end": 308
|
|
41305
41735
|
},
|
|
41306
41736
|
"context": {
|
|
41307
41737
|
"type": "variable",
|
|
@@ -41309,8 +41739,8 @@
|
|
|
41309
41739
|
"value": "$kendo-body-text",
|
|
41310
41740
|
"scope": "default",
|
|
41311
41741
|
"line": {
|
|
41312
|
-
"start":
|
|
41313
|
-
"end":
|
|
41742
|
+
"start": 309,
|
|
41743
|
+
"end": 309
|
|
41314
41744
|
}
|
|
41315
41745
|
},
|
|
41316
41746
|
"access": "public",
|
|
@@ -41318,8 +41748,8 @@
|
|
|
41318
41748
|
"undefined"
|
|
41319
41749
|
],
|
|
41320
41750
|
"file": {
|
|
41321
|
-
"path": "
|
|
41322
|
-
"name": "
|
|
41751
|
+
"path": "core/color-system/_swatch.scss",
|
|
41752
|
+
"name": "_swatch.scss"
|
|
41323
41753
|
},
|
|
41324
41754
|
"resolvedValue": "#272727",
|
|
41325
41755
|
"resolvedType": "Color"
|
|
@@ -41327,8 +41757,8 @@
|
|
|
41327
41757
|
{
|
|
41328
41758
|
"description": "The border color of the components' chrome area.\n",
|
|
41329
41759
|
"commentRange": {
|
|
41330
|
-
"start":
|
|
41331
|
-
"end":
|
|
41760
|
+
"start": 310,
|
|
41761
|
+
"end": 310
|
|
41332
41762
|
},
|
|
41333
41763
|
"context": {
|
|
41334
41764
|
"type": "variable",
|
|
@@ -41336,8 +41766,8 @@
|
|
|
41336
41766
|
"value": "k-try-shade( $kendo-base-bg, 2 )",
|
|
41337
41767
|
"scope": "default",
|
|
41338
41768
|
"line": {
|
|
41339
|
-
"start":
|
|
41340
|
-
"end":
|
|
41769
|
+
"start": 311,
|
|
41770
|
+
"end": 311
|
|
41341
41771
|
}
|
|
41342
41772
|
},
|
|
41343
41773
|
"access": "public",
|
|
@@ -41345,8 +41775,8 @@
|
|
|
41345
41775
|
"undefined"
|
|
41346
41776
|
],
|
|
41347
41777
|
"file": {
|
|
41348
|
-
"path": "
|
|
41349
|
-
"name": "
|
|
41778
|
+
"path": "core/color-system/_swatch.scss",
|
|
41779
|
+
"name": "_swatch.scss"
|
|
41350
41780
|
},
|
|
41351
41781
|
"resolvedValue": "#cacaca",
|
|
41352
41782
|
"resolvedType": "Color"
|
|
@@ -41354,8 +41784,8 @@
|
|
|
41354
41784
|
{
|
|
41355
41785
|
"description": "The gradient background of the components' chrome area.\n",
|
|
41356
41786
|
"commentRange": {
|
|
41357
|
-
"start":
|
|
41358
|
-
"end":
|
|
41787
|
+
"start": 312,
|
|
41788
|
+
"end": 312
|
|
41359
41789
|
},
|
|
41360
41790
|
"context": {
|
|
41361
41791
|
"type": "variable",
|
|
@@ -41363,8 +41793,8 @@
|
|
|
41363
41793
|
"value": "rgba( white, .1 ), rgba( white, 0 )",
|
|
41364
41794
|
"scope": "default",
|
|
41365
41795
|
"line": {
|
|
41366
|
-
"start":
|
|
41367
|
-
"end":
|
|
41796
|
+
"start": 313,
|
|
41797
|
+
"end": 313
|
|
41368
41798
|
}
|
|
41369
41799
|
},
|
|
41370
41800
|
"access": "public",
|
|
@@ -41372,8 +41802,8 @@
|
|
|
41372
41802
|
"undefined"
|
|
41373
41803
|
],
|
|
41374
41804
|
"file": {
|
|
41375
|
-
"path": "
|
|
41376
|
-
"name": "
|
|
41805
|
+
"path": "core/color-system/_swatch.scss",
|
|
41806
|
+
"name": "_swatch.scss"
|
|
41377
41807
|
},
|
|
41378
41808
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
41379
41809
|
"resolvedType": "List"
|
|
@@ -41381,8 +41811,8 @@
|
|
|
41381
41811
|
{
|
|
41382
41812
|
"description": "The background of hovered items.\n",
|
|
41383
41813
|
"commentRange": {
|
|
41384
|
-
"start":
|
|
41385
|
-
"end":
|
|
41814
|
+
"start": 328,
|
|
41815
|
+
"end": 328
|
|
41386
41816
|
},
|
|
41387
41817
|
"context": {
|
|
41388
41818
|
"type": "variable",
|
|
@@ -41390,8 +41820,8 @@
|
|
|
41390
41820
|
"value": "k-try-shade( $kendo-base-bg, 1 )",
|
|
41391
41821
|
"scope": "default",
|
|
41392
41822
|
"line": {
|
|
41393
|
-
"start":
|
|
41394
|
-
"end":
|
|
41823
|
+
"start": 329,
|
|
41824
|
+
"end": 329
|
|
41395
41825
|
}
|
|
41396
41826
|
},
|
|
41397
41827
|
"access": "public",
|
|
@@ -41399,8 +41829,8 @@
|
|
|
41399
41829
|
"undefined"
|
|
41400
41830
|
],
|
|
41401
41831
|
"file": {
|
|
41402
|
-
"path": "
|
|
41403
|
-
"name": "
|
|
41832
|
+
"path": "core/color-system/_swatch.scss",
|
|
41833
|
+
"name": "_swatch.scss"
|
|
41404
41834
|
},
|
|
41405
41835
|
"resolvedValue": "#dddddd",
|
|
41406
41836
|
"resolvedType": "Color"
|
|
@@ -41408,8 +41838,8 @@
|
|
|
41408
41838
|
{
|
|
41409
41839
|
"description": "The text color of hovered items.\n",
|
|
41410
41840
|
"commentRange": {
|
|
41411
|
-
"start":
|
|
41412
|
-
"end":
|
|
41841
|
+
"start": 330,
|
|
41842
|
+
"end": 330
|
|
41413
41843
|
},
|
|
41414
41844
|
"context": {
|
|
41415
41845
|
"type": "variable",
|
|
@@ -41417,8 +41847,8 @@
|
|
|
41417
41847
|
"value": "$kendo-base-text",
|
|
41418
41848
|
"scope": "default",
|
|
41419
41849
|
"line": {
|
|
41420
|
-
"start":
|
|
41421
|
-
"end":
|
|
41850
|
+
"start": 331,
|
|
41851
|
+
"end": 331
|
|
41422
41852
|
}
|
|
41423
41853
|
},
|
|
41424
41854
|
"access": "public",
|
|
@@ -41426,8 +41856,8 @@
|
|
|
41426
41856
|
"undefined"
|
|
41427
41857
|
],
|
|
41428
41858
|
"file": {
|
|
41429
|
-
"path": "
|
|
41430
|
-
"name": "
|
|
41859
|
+
"path": "core/color-system/_swatch.scss",
|
|
41860
|
+
"name": "_swatch.scss"
|
|
41431
41861
|
},
|
|
41432
41862
|
"resolvedValue": "#272727",
|
|
41433
41863
|
"resolvedType": "Color"
|
|
@@ -41435,8 +41865,8 @@
|
|
|
41435
41865
|
{
|
|
41436
41866
|
"description": "The border color of hovered items.\n",
|
|
41437
41867
|
"commentRange": {
|
|
41438
|
-
"start":
|
|
41439
|
-
"end":
|
|
41868
|
+
"start": 332,
|
|
41869
|
+
"end": 332
|
|
41440
41870
|
},
|
|
41441
41871
|
"context": {
|
|
41442
41872
|
"type": "variable",
|
|
@@ -41444,8 +41874,8 @@
|
|
|
41444
41874
|
"value": "k-try-shade( $kendo-hover-bg, 2 )",
|
|
41445
41875
|
"scope": "default",
|
|
41446
41876
|
"line": {
|
|
41447
|
-
"start":
|
|
41448
|
-
"end":
|
|
41877
|
+
"start": 333,
|
|
41878
|
+
"end": 333
|
|
41449
41879
|
}
|
|
41450
41880
|
},
|
|
41451
41881
|
"access": "public",
|
|
@@ -41453,8 +41883,8 @@
|
|
|
41453
41883
|
"undefined"
|
|
41454
41884
|
],
|
|
41455
41885
|
"file": {
|
|
41456
|
-
"path": "
|
|
41457
|
-
"name": "
|
|
41886
|
+
"path": "core/color-system/_swatch.scss",
|
|
41887
|
+
"name": "_swatch.scss"
|
|
41458
41888
|
},
|
|
41459
41889
|
"resolvedValue": "#bababa",
|
|
41460
41890
|
"resolvedType": "Color"
|
|
@@ -41462,8 +41892,8 @@
|
|
|
41462
41892
|
{
|
|
41463
41893
|
"description": "The gradient background of hovered items.\n",
|
|
41464
41894
|
"commentRange": {
|
|
41465
|
-
"start":
|
|
41466
|
-
"end":
|
|
41895
|
+
"start": 334,
|
|
41896
|
+
"end": 334
|
|
41467
41897
|
},
|
|
41468
41898
|
"context": {
|
|
41469
41899
|
"type": "variable",
|
|
@@ -41471,8 +41901,8 @@
|
|
|
41471
41901
|
"value": "$kendo-base-gradient",
|
|
41472
41902
|
"scope": "default",
|
|
41473
41903
|
"line": {
|
|
41474
|
-
"start":
|
|
41475
|
-
"end":
|
|
41904
|
+
"start": 335,
|
|
41905
|
+
"end": 335
|
|
41476
41906
|
}
|
|
41477
41907
|
},
|
|
41478
41908
|
"access": "public",
|
|
@@ -41480,8 +41910,8 @@
|
|
|
41480
41910
|
"undefined"
|
|
41481
41911
|
],
|
|
41482
41912
|
"file": {
|
|
41483
|
-
"path": "
|
|
41484
|
-
"name": "
|
|
41913
|
+
"path": "core/color-system/_swatch.scss",
|
|
41914
|
+
"name": "_swatch.scss"
|
|
41485
41915
|
},
|
|
41486
41916
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
41487
41917
|
"resolvedType": "List"
|
|
@@ -41489,8 +41919,8 @@
|
|
|
41489
41919
|
{
|
|
41490
41920
|
"description": "The background of selected items.\n",
|
|
41491
41921
|
"commentRange": {
|
|
41492
|
-
"start":
|
|
41493
|
-
"end":
|
|
41922
|
+
"start": 337,
|
|
41923
|
+
"end": 337
|
|
41494
41924
|
},
|
|
41495
41925
|
"context": {
|
|
41496
41926
|
"type": "variable",
|
|
@@ -41498,8 +41928,8 @@
|
|
|
41498
41928
|
"value": "$kendo-color-primary",
|
|
41499
41929
|
"scope": "default",
|
|
41500
41930
|
"line": {
|
|
41501
|
-
"start":
|
|
41502
|
-
"end":
|
|
41931
|
+
"start": 338,
|
|
41932
|
+
"end": 338
|
|
41503
41933
|
}
|
|
41504
41934
|
},
|
|
41505
41935
|
"access": "public",
|
|
@@ -41507,8 +41937,8 @@
|
|
|
41507
41937
|
"undefined"
|
|
41508
41938
|
],
|
|
41509
41939
|
"file": {
|
|
41510
|
-
"path": "
|
|
41511
|
-
"name": "
|
|
41940
|
+
"path": "core/color-system/_swatch.scss",
|
|
41941
|
+
"name": "_swatch.scss"
|
|
41512
41942
|
},
|
|
41513
41943
|
"resolvedValue": "#f35800",
|
|
41514
41944
|
"resolvedType": "Color"
|
|
@@ -41516,8 +41946,8 @@
|
|
|
41516
41946
|
{
|
|
41517
41947
|
"description": "The text color of selected items.\n",
|
|
41518
41948
|
"commentRange": {
|
|
41519
|
-
"start":
|
|
41520
|
-
"end":
|
|
41949
|
+
"start": 339,
|
|
41950
|
+
"end": 339
|
|
41521
41951
|
},
|
|
41522
41952
|
"context": {
|
|
41523
41953
|
"type": "variable",
|
|
@@ -41525,8 +41955,8 @@
|
|
|
41525
41955
|
"value": "k-contrast-legacy( $kendo-selected-bg )",
|
|
41526
41956
|
"scope": "default",
|
|
41527
41957
|
"line": {
|
|
41528
|
-
"start":
|
|
41529
|
-
"end":
|
|
41958
|
+
"start": 340,
|
|
41959
|
+
"end": 340
|
|
41530
41960
|
}
|
|
41531
41961
|
},
|
|
41532
41962
|
"access": "public",
|
|
@@ -41534,8 +41964,8 @@
|
|
|
41534
41964
|
"undefined"
|
|
41535
41965
|
],
|
|
41536
41966
|
"file": {
|
|
41537
|
-
"path": "
|
|
41538
|
-
"name": "
|
|
41967
|
+
"path": "core/color-system/_swatch.scss",
|
|
41968
|
+
"name": "_swatch.scss"
|
|
41539
41969
|
},
|
|
41540
41970
|
"resolvedValue": "white",
|
|
41541
41971
|
"resolvedType": "Color"
|
|
@@ -41543,8 +41973,8 @@
|
|
|
41543
41973
|
{
|
|
41544
41974
|
"description": "The border color of selected items.\n",
|
|
41545
41975
|
"commentRange": {
|
|
41546
|
-
"start":
|
|
41547
|
-
"end":
|
|
41976
|
+
"start": 341,
|
|
41977
|
+
"end": 341
|
|
41548
41978
|
},
|
|
41549
41979
|
"context": {
|
|
41550
41980
|
"type": "variable",
|
|
@@ -41552,8 +41982,8 @@
|
|
|
41552
41982
|
"value": "k-try-shade( $kendo-selected-bg, 2 )",
|
|
41553
41983
|
"scope": "default",
|
|
41554
41984
|
"line": {
|
|
41555
|
-
"start":
|
|
41556
|
-
"end":
|
|
41985
|
+
"start": 342,
|
|
41986
|
+
"end": 342
|
|
41557
41987
|
}
|
|
41558
41988
|
},
|
|
41559
41989
|
"access": "public",
|
|
@@ -41561,8 +41991,8 @@
|
|
|
41561
41991
|
"undefined"
|
|
41562
41992
|
],
|
|
41563
41993
|
"file": {
|
|
41564
|
-
"path": "
|
|
41565
|
-
"name": "
|
|
41994
|
+
"path": "core/color-system/_swatch.scss",
|
|
41995
|
+
"name": "_swatch.scss"
|
|
41566
41996
|
},
|
|
41567
41997
|
"resolvedValue": "#cc4a00",
|
|
41568
41998
|
"resolvedType": "Color"
|
|
@@ -41570,8 +42000,8 @@
|
|
|
41570
42000
|
{
|
|
41571
42001
|
"description": "The gradient background of selected items.\n",
|
|
41572
42002
|
"commentRange": {
|
|
41573
|
-
"start":
|
|
41574
|
-
"end":
|
|
42003
|
+
"start": 343,
|
|
42004
|
+
"end": 343
|
|
41575
42005
|
},
|
|
41576
42006
|
"context": {
|
|
41577
42007
|
"type": "variable",
|
|
@@ -41579,8 +42009,8 @@
|
|
|
41579
42009
|
"value": "$kendo-base-gradient",
|
|
41580
42010
|
"scope": "default",
|
|
41581
42011
|
"line": {
|
|
41582
|
-
"start":
|
|
41583
|
-
"end":
|
|
42012
|
+
"start": 344,
|
|
42013
|
+
"end": 344
|
|
41584
42014
|
}
|
|
41585
42015
|
},
|
|
41586
42016
|
"access": "public",
|
|
@@ -41588,12 +42018,147 @@
|
|
|
41588
42018
|
"undefined"
|
|
41589
42019
|
],
|
|
41590
42020
|
"file": {
|
|
41591
|
-
"path": "
|
|
41592
|
-
"name": "
|
|
42021
|
+
"path": "core/color-system/_swatch.scss",
|
|
42022
|
+
"name": "_swatch.scss"
|
|
41593
42023
|
},
|
|
41594
42024
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
41595
42025
|
"resolvedType": "List"
|
|
41596
42026
|
},
|
|
42027
|
+
{
|
|
42028
|
+
"description": "The background of selected and hovered items.\n",
|
|
42029
|
+
"commentRange": {
|
|
42030
|
+
"start": 346,
|
|
42031
|
+
"end": 346
|
|
42032
|
+
},
|
|
42033
|
+
"context": {
|
|
42034
|
+
"type": "variable",
|
|
42035
|
+
"name": "kendo-selected-hover-bg",
|
|
42036
|
+
"value": "k-try-shade( $kendo-selected-bg, 1 )",
|
|
42037
|
+
"scope": "default",
|
|
42038
|
+
"line": {
|
|
42039
|
+
"start": 347,
|
|
42040
|
+
"end": 347
|
|
42041
|
+
}
|
|
42042
|
+
},
|
|
42043
|
+
"access": "public",
|
|
42044
|
+
"group": [
|
|
42045
|
+
"undefined"
|
|
42046
|
+
],
|
|
42047
|
+
"file": {
|
|
42048
|
+
"path": "core/color-system/_swatch.scss",
|
|
42049
|
+
"name": "_swatch.scss"
|
|
42050
|
+
},
|
|
42051
|
+
"resolvedValue": "#e05100",
|
|
42052
|
+
"resolvedType": "Color"
|
|
42053
|
+
},
|
|
42054
|
+
{
|
|
42055
|
+
"description": "The text color of selected and hovered items.\n",
|
|
42056
|
+
"commentRange": {
|
|
42057
|
+
"start": 348,
|
|
42058
|
+
"end": 348
|
|
42059
|
+
},
|
|
42060
|
+
"context": {
|
|
42061
|
+
"type": "variable",
|
|
42062
|
+
"name": "kendo-selected-hover-text",
|
|
42063
|
+
"value": "k-contrast-legacy( $kendo-selected-hover-bg )",
|
|
42064
|
+
"scope": "default",
|
|
42065
|
+
"line": {
|
|
42066
|
+
"start": 349,
|
|
42067
|
+
"end": 349
|
|
42068
|
+
}
|
|
42069
|
+
},
|
|
42070
|
+
"access": "public",
|
|
42071
|
+
"group": [
|
|
42072
|
+
"undefined"
|
|
42073
|
+
],
|
|
42074
|
+
"file": {
|
|
42075
|
+
"path": "core/color-system/_swatch.scss",
|
|
42076
|
+
"name": "_swatch.scss"
|
|
42077
|
+
},
|
|
42078
|
+
"resolvedValue": "white",
|
|
42079
|
+
"resolvedType": "Color"
|
|
42080
|
+
},
|
|
42081
|
+
{
|
|
42082
|
+
"description": "The border of selected and hovered items.\n",
|
|
42083
|
+
"commentRange": {
|
|
42084
|
+
"start": 350,
|
|
42085
|
+
"end": 350
|
|
42086
|
+
},
|
|
42087
|
+
"context": {
|
|
42088
|
+
"type": "variable",
|
|
42089
|
+
"name": "kendo-selected-hover-border",
|
|
42090
|
+
"value": "$kendo-selected-border",
|
|
42091
|
+
"scope": "default",
|
|
42092
|
+
"line": {
|
|
42093
|
+
"start": 351,
|
|
42094
|
+
"end": 351
|
|
42095
|
+
}
|
|
42096
|
+
},
|
|
42097
|
+
"access": "public",
|
|
42098
|
+
"group": [
|
|
42099
|
+
"undefined"
|
|
42100
|
+
],
|
|
42101
|
+
"file": {
|
|
42102
|
+
"path": "core/color-system/_swatch.scss",
|
|
42103
|
+
"name": "_swatch.scss"
|
|
42104
|
+
},
|
|
42105
|
+
"resolvedValue": "#cc4a00",
|
|
42106
|
+
"resolvedType": "Color"
|
|
42107
|
+
},
|
|
42108
|
+
{
|
|
42109
|
+
"description": "The gradient of selected and hovered items.\n",
|
|
42110
|
+
"commentRange": {
|
|
42111
|
+
"start": 352,
|
|
42112
|
+
"end": 352
|
|
42113
|
+
},
|
|
42114
|
+
"context": {
|
|
42115
|
+
"type": "variable",
|
|
42116
|
+
"name": "kendo-selected-hover-gradient",
|
|
42117
|
+
"value": "$kendo-selected-gradient",
|
|
42118
|
+
"scope": "default",
|
|
42119
|
+
"line": {
|
|
42120
|
+
"start": 353,
|
|
42121
|
+
"end": 353
|
|
42122
|
+
}
|
|
42123
|
+
},
|
|
42124
|
+
"access": "public",
|
|
42125
|
+
"group": [
|
|
42126
|
+
"undefined"
|
|
42127
|
+
],
|
|
42128
|
+
"file": {
|
|
42129
|
+
"path": "core/color-system/_swatch.scss",
|
|
42130
|
+
"name": "_swatch.scss"
|
|
42131
|
+
},
|
|
42132
|
+
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
42133
|
+
"resolvedType": "List"
|
|
42134
|
+
},
|
|
42135
|
+
{
|
|
42136
|
+
"description": "Text color of disabled items.\n",
|
|
42137
|
+
"commentRange": {
|
|
42138
|
+
"start": 355,
|
|
42139
|
+
"end": 355
|
|
42140
|
+
},
|
|
42141
|
+
"context": {
|
|
42142
|
+
"type": "variable",
|
|
42143
|
+
"name": "kendo-disabled-text",
|
|
42144
|
+
"value": "#8d8d8d",
|
|
42145
|
+
"scope": "default",
|
|
42146
|
+
"line": {
|
|
42147
|
+
"start": 356,
|
|
42148
|
+
"end": 356
|
|
42149
|
+
}
|
|
42150
|
+
},
|
|
42151
|
+
"access": "public",
|
|
42152
|
+
"group": [
|
|
42153
|
+
"undefined"
|
|
42154
|
+
],
|
|
42155
|
+
"file": {
|
|
42156
|
+
"path": "core/color-system/_swatch.scss",
|
|
42157
|
+
"name": "_swatch.scss"
|
|
42158
|
+
},
|
|
42159
|
+
"resolvedValue": "#8d8d8d",
|
|
42160
|
+
"resolvedType": "Color"
|
|
42161
|
+
},
|
|
41597
42162
|
{
|
|
41598
42163
|
"description": "The width of the border around the Upload.\n",
|
|
41599
42164
|
"commentRange": {
|
|
@@ -43197,11 +43762,146 @@
|
|
|
43197
43762
|
"id": "common",
|
|
43198
43763
|
"title": "Common",
|
|
43199
43764
|
"variables": [
|
|
43765
|
+
{
|
|
43766
|
+
"description": "Background color of the body.\n",
|
|
43767
|
+
"commentRange": {
|
|
43768
|
+
"start": 281,
|
|
43769
|
+
"end": 282
|
|
43770
|
+
},
|
|
43771
|
+
"context": {
|
|
43772
|
+
"type": "variable",
|
|
43773
|
+
"name": "kendo-body-bg",
|
|
43774
|
+
"value": "$kendo-color-white",
|
|
43775
|
+
"scope": "default",
|
|
43776
|
+
"line": {
|
|
43777
|
+
"start": 283,
|
|
43778
|
+
"end": 283
|
|
43779
|
+
}
|
|
43780
|
+
},
|
|
43781
|
+
"group": [
|
|
43782
|
+
"common"
|
|
43783
|
+
],
|
|
43784
|
+
"access": "public",
|
|
43785
|
+
"file": {
|
|
43786
|
+
"path": "core/color-system/_swatch.scss",
|
|
43787
|
+
"name": "_swatch.scss"
|
|
43788
|
+
},
|
|
43789
|
+
"resolvedValue": "#ffffff",
|
|
43790
|
+
"resolvedType": "Color"
|
|
43791
|
+
},
|
|
43792
|
+
{
|
|
43793
|
+
"description": "Text color of the body.\n",
|
|
43794
|
+
"commentRange": {
|
|
43795
|
+
"start": 284,
|
|
43796
|
+
"end": 285
|
|
43797
|
+
},
|
|
43798
|
+
"context": {
|
|
43799
|
+
"type": "variable",
|
|
43800
|
+
"name": "kendo-body-text",
|
|
43801
|
+
"value": "#272727",
|
|
43802
|
+
"scope": "default",
|
|
43803
|
+
"line": {
|
|
43804
|
+
"start": 286,
|
|
43805
|
+
"end": 286
|
|
43806
|
+
}
|
|
43807
|
+
},
|
|
43808
|
+
"group": [
|
|
43809
|
+
"common"
|
|
43810
|
+
],
|
|
43811
|
+
"access": "public",
|
|
43812
|
+
"file": {
|
|
43813
|
+
"path": "core/color-system/_swatch.scss",
|
|
43814
|
+
"name": "_swatch.scss"
|
|
43815
|
+
},
|
|
43816
|
+
"resolvedValue": "#272727",
|
|
43817
|
+
"resolvedType": "Color"
|
|
43818
|
+
},
|
|
43819
|
+
{
|
|
43820
|
+
"description": "Subtle text color.\n",
|
|
43821
|
+
"commentRange": {
|
|
43822
|
+
"start": 288,
|
|
43823
|
+
"end": 289
|
|
43824
|
+
},
|
|
43825
|
+
"context": {
|
|
43826
|
+
"type": "variable",
|
|
43827
|
+
"name": "kendo-subtle-text",
|
|
43828
|
+
"value": "#646464",
|
|
43829
|
+
"scope": "default",
|
|
43830
|
+
"line": {
|
|
43831
|
+
"start": 290,
|
|
43832
|
+
"end": 290
|
|
43833
|
+
}
|
|
43834
|
+
},
|
|
43835
|
+
"group": [
|
|
43836
|
+
"common"
|
|
43837
|
+
],
|
|
43838
|
+
"access": "public",
|
|
43839
|
+
"file": {
|
|
43840
|
+
"path": "core/color-system/_swatch.scss",
|
|
43841
|
+
"name": "_swatch.scss"
|
|
43842
|
+
},
|
|
43843
|
+
"resolvedValue": "#646464",
|
|
43844
|
+
"resolvedType": "Color"
|
|
43845
|
+
},
|
|
43846
|
+
{
|
|
43847
|
+
"description": "Text color of the links.\n",
|
|
43848
|
+
"commentRange": {
|
|
43849
|
+
"start": 297,
|
|
43850
|
+
"end": 298
|
|
43851
|
+
},
|
|
43852
|
+
"context": {
|
|
43853
|
+
"type": "variable",
|
|
43854
|
+
"name": "kendo-link-text",
|
|
43855
|
+
"value": "$kendo-color-primary",
|
|
43856
|
+
"scope": "default",
|
|
43857
|
+
"line": {
|
|
43858
|
+
"start": 299,
|
|
43859
|
+
"end": 299
|
|
43860
|
+
}
|
|
43861
|
+
},
|
|
43862
|
+
"group": [
|
|
43863
|
+
"common"
|
|
43864
|
+
],
|
|
43865
|
+
"access": "public",
|
|
43866
|
+
"file": {
|
|
43867
|
+
"path": "core/color-system/_swatch.scss",
|
|
43868
|
+
"name": "_swatch.scss"
|
|
43869
|
+
},
|
|
43870
|
+
"resolvedValue": "#f35800",
|
|
43871
|
+
"resolvedType": "Color"
|
|
43872
|
+
},
|
|
43873
|
+
{
|
|
43874
|
+
"description": "Text color of the links on hover.\n",
|
|
43875
|
+
"commentRange": {
|
|
43876
|
+
"start": 300,
|
|
43877
|
+
"end": 301
|
|
43878
|
+
},
|
|
43879
|
+
"context": {
|
|
43880
|
+
"type": "variable",
|
|
43881
|
+
"name": "kendo-link-hover-text",
|
|
43882
|
+
"value": "$kendo-color-primary-darker",
|
|
43883
|
+
"scope": "default",
|
|
43884
|
+
"line": {
|
|
43885
|
+
"start": 302,
|
|
43886
|
+
"end": 302
|
|
43887
|
+
}
|
|
43888
|
+
},
|
|
43889
|
+
"group": [
|
|
43890
|
+
"common"
|
|
43891
|
+
],
|
|
43892
|
+
"access": "public",
|
|
43893
|
+
"file": {
|
|
43894
|
+
"path": "core/color-system/_swatch.scss",
|
|
43895
|
+
"name": "_swatch.scss"
|
|
43896
|
+
},
|
|
43897
|
+
"resolvedValue": "#cc4a00",
|
|
43898
|
+
"resolvedType": "Color"
|
|
43899
|
+
},
|
|
43200
43900
|
{
|
|
43201
43901
|
"description": "Border radius for all components.\n",
|
|
43202
43902
|
"commentRange": {
|
|
43203
|
-
"start":
|
|
43204
|
-
"end":
|
|
43903
|
+
"start": 82,
|
|
43904
|
+
"end": 82
|
|
43205
43905
|
},
|
|
43206
43906
|
"context": {
|
|
43207
43907
|
"type": "variable",
|
|
@@ -43209,8 +43909,8 @@
|
|
|
43209
43909
|
"value": "k-map-get( $kendo-spacing, 1 )",
|
|
43210
43910
|
"scope": "default",
|
|
43211
43911
|
"line": {
|
|
43212
|
-
"start":
|
|
43213
|
-
"end":
|
|
43912
|
+
"start": 83,
|
|
43913
|
+
"end": 83
|
|
43214
43914
|
}
|
|
43215
43915
|
},
|
|
43216
43916
|
"access": "public",
|
|
@@ -43227,8 +43927,8 @@
|
|
|
43227
43927
|
{
|
|
43228
43928
|
"description": "The background of the components' chrome area.\n",
|
|
43229
43929
|
"commentRange": {
|
|
43230
|
-
"start":
|
|
43231
|
-
"end":
|
|
43930
|
+
"start": 306,
|
|
43931
|
+
"end": 306
|
|
43232
43932
|
},
|
|
43233
43933
|
"context": {
|
|
43234
43934
|
"type": "variable",
|
|
@@ -43236,8 +43936,8 @@
|
|
|
43236
43936
|
"value": "#f0f0f0",
|
|
43237
43937
|
"scope": "default",
|
|
43238
43938
|
"line": {
|
|
43239
|
-
"start":
|
|
43240
|
-
"end":
|
|
43939
|
+
"start": 307,
|
|
43940
|
+
"end": 307
|
|
43241
43941
|
}
|
|
43242
43942
|
},
|
|
43243
43943
|
"access": "public",
|
|
@@ -43245,8 +43945,8 @@
|
|
|
43245
43945
|
"undefined"
|
|
43246
43946
|
],
|
|
43247
43947
|
"file": {
|
|
43248
|
-
"path": "
|
|
43249
|
-
"name": "
|
|
43948
|
+
"path": "core/color-system/_swatch.scss",
|
|
43949
|
+
"name": "_swatch.scss"
|
|
43250
43950
|
},
|
|
43251
43951
|
"resolvedValue": "#f0f0f0",
|
|
43252
43952
|
"resolvedType": "Color"
|
|
@@ -43254,8 +43954,8 @@
|
|
|
43254
43954
|
{
|
|
43255
43955
|
"description": "The text color of the components' chrome area.\n",
|
|
43256
43956
|
"commentRange": {
|
|
43257
|
-
"start":
|
|
43258
|
-
"end":
|
|
43957
|
+
"start": 308,
|
|
43958
|
+
"end": 308
|
|
43259
43959
|
},
|
|
43260
43960
|
"context": {
|
|
43261
43961
|
"type": "variable",
|
|
@@ -43263,8 +43963,8 @@
|
|
|
43263
43963
|
"value": "$kendo-body-text",
|
|
43264
43964
|
"scope": "default",
|
|
43265
43965
|
"line": {
|
|
43266
|
-
"start":
|
|
43267
|
-
"end":
|
|
43966
|
+
"start": 309,
|
|
43967
|
+
"end": 309
|
|
43268
43968
|
}
|
|
43269
43969
|
},
|
|
43270
43970
|
"access": "public",
|
|
@@ -43272,8 +43972,8 @@
|
|
|
43272
43972
|
"undefined"
|
|
43273
43973
|
],
|
|
43274
43974
|
"file": {
|
|
43275
|
-
"path": "
|
|
43276
|
-
"name": "
|
|
43975
|
+
"path": "core/color-system/_swatch.scss",
|
|
43976
|
+
"name": "_swatch.scss"
|
|
43277
43977
|
},
|
|
43278
43978
|
"resolvedValue": "#272727",
|
|
43279
43979
|
"resolvedType": "Color"
|
|
@@ -43281,8 +43981,8 @@
|
|
|
43281
43981
|
{
|
|
43282
43982
|
"description": "The border color of the components' chrome area.\n",
|
|
43283
43983
|
"commentRange": {
|
|
43284
|
-
"start":
|
|
43285
|
-
"end":
|
|
43984
|
+
"start": 310,
|
|
43985
|
+
"end": 310
|
|
43286
43986
|
},
|
|
43287
43987
|
"context": {
|
|
43288
43988
|
"type": "variable",
|
|
@@ -43290,8 +43990,8 @@
|
|
|
43290
43990
|
"value": "k-try-shade( $kendo-base-bg, 2 )",
|
|
43291
43991
|
"scope": "default",
|
|
43292
43992
|
"line": {
|
|
43293
|
-
"start":
|
|
43294
|
-
"end":
|
|
43993
|
+
"start": 311,
|
|
43994
|
+
"end": 311
|
|
43295
43995
|
}
|
|
43296
43996
|
},
|
|
43297
43997
|
"access": "public",
|
|
@@ -43299,8 +43999,8 @@
|
|
|
43299
43999
|
"undefined"
|
|
43300
44000
|
],
|
|
43301
44001
|
"file": {
|
|
43302
|
-
"path": "
|
|
43303
|
-
"name": "
|
|
44002
|
+
"path": "core/color-system/_swatch.scss",
|
|
44003
|
+
"name": "_swatch.scss"
|
|
43304
44004
|
},
|
|
43305
44005
|
"resolvedValue": "#cacaca",
|
|
43306
44006
|
"resolvedType": "Color"
|
|
@@ -43308,8 +44008,8 @@
|
|
|
43308
44008
|
{
|
|
43309
44009
|
"description": "The gradient background of the components' chrome area.\n",
|
|
43310
44010
|
"commentRange": {
|
|
43311
|
-
"start":
|
|
43312
|
-
"end":
|
|
44011
|
+
"start": 312,
|
|
44012
|
+
"end": 312
|
|
43313
44013
|
},
|
|
43314
44014
|
"context": {
|
|
43315
44015
|
"type": "variable",
|
|
@@ -43317,8 +44017,8 @@
|
|
|
43317
44017
|
"value": "rgba( white, .1 ), rgba( white, 0 )",
|
|
43318
44018
|
"scope": "default",
|
|
43319
44019
|
"line": {
|
|
43320
|
-
"start":
|
|
43321
|
-
"end":
|
|
44020
|
+
"start": 313,
|
|
44021
|
+
"end": 313
|
|
43322
44022
|
}
|
|
43323
44023
|
},
|
|
43324
44024
|
"access": "public",
|
|
@@ -43326,8 +44026,8 @@
|
|
|
43326
44026
|
"undefined"
|
|
43327
44027
|
],
|
|
43328
44028
|
"file": {
|
|
43329
|
-
"path": "
|
|
43330
|
-
"name": "
|
|
44029
|
+
"path": "core/color-system/_swatch.scss",
|
|
44030
|
+
"name": "_swatch.scss"
|
|
43331
44031
|
},
|
|
43332
44032
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
43333
44033
|
"resolvedType": "List"
|
|
@@ -43335,8 +44035,8 @@
|
|
|
43335
44035
|
{
|
|
43336
44036
|
"description": "The background of hovered items.\n",
|
|
43337
44037
|
"commentRange": {
|
|
43338
|
-
"start":
|
|
43339
|
-
"end":
|
|
44038
|
+
"start": 328,
|
|
44039
|
+
"end": 328
|
|
43340
44040
|
},
|
|
43341
44041
|
"context": {
|
|
43342
44042
|
"type": "variable",
|
|
@@ -43344,8 +44044,8 @@
|
|
|
43344
44044
|
"value": "k-try-shade( $kendo-base-bg, 1 )",
|
|
43345
44045
|
"scope": "default",
|
|
43346
44046
|
"line": {
|
|
43347
|
-
"start":
|
|
43348
|
-
"end":
|
|
44047
|
+
"start": 329,
|
|
44048
|
+
"end": 329
|
|
43349
44049
|
}
|
|
43350
44050
|
},
|
|
43351
44051
|
"access": "public",
|
|
@@ -43353,8 +44053,8 @@
|
|
|
43353
44053
|
"undefined"
|
|
43354
44054
|
],
|
|
43355
44055
|
"file": {
|
|
43356
|
-
"path": "
|
|
43357
|
-
"name": "
|
|
44056
|
+
"path": "core/color-system/_swatch.scss",
|
|
44057
|
+
"name": "_swatch.scss"
|
|
43358
44058
|
},
|
|
43359
44059
|
"resolvedValue": "#dddddd",
|
|
43360
44060
|
"resolvedType": "Color"
|
|
@@ -43362,8 +44062,8 @@
|
|
|
43362
44062
|
{
|
|
43363
44063
|
"description": "The text color of hovered items.\n",
|
|
43364
44064
|
"commentRange": {
|
|
43365
|
-
"start":
|
|
43366
|
-
"end":
|
|
44065
|
+
"start": 330,
|
|
44066
|
+
"end": 330
|
|
43367
44067
|
},
|
|
43368
44068
|
"context": {
|
|
43369
44069
|
"type": "variable",
|
|
@@ -43371,8 +44071,8 @@
|
|
|
43371
44071
|
"value": "$kendo-base-text",
|
|
43372
44072
|
"scope": "default",
|
|
43373
44073
|
"line": {
|
|
43374
|
-
"start":
|
|
43375
|
-
"end":
|
|
44074
|
+
"start": 331,
|
|
44075
|
+
"end": 331
|
|
43376
44076
|
}
|
|
43377
44077
|
},
|
|
43378
44078
|
"access": "public",
|
|
@@ -43380,8 +44080,8 @@
|
|
|
43380
44080
|
"undefined"
|
|
43381
44081
|
],
|
|
43382
44082
|
"file": {
|
|
43383
|
-
"path": "
|
|
43384
|
-
"name": "
|
|
44083
|
+
"path": "core/color-system/_swatch.scss",
|
|
44084
|
+
"name": "_swatch.scss"
|
|
43385
44085
|
},
|
|
43386
44086
|
"resolvedValue": "#272727",
|
|
43387
44087
|
"resolvedType": "Color"
|
|
@@ -43389,8 +44089,8 @@
|
|
|
43389
44089
|
{
|
|
43390
44090
|
"description": "The border color of hovered items.\n",
|
|
43391
44091
|
"commentRange": {
|
|
43392
|
-
"start":
|
|
43393
|
-
"end":
|
|
44092
|
+
"start": 332,
|
|
44093
|
+
"end": 332
|
|
43394
44094
|
},
|
|
43395
44095
|
"context": {
|
|
43396
44096
|
"type": "variable",
|
|
@@ -43398,8 +44098,8 @@
|
|
|
43398
44098
|
"value": "k-try-shade( $kendo-hover-bg, 2 )",
|
|
43399
44099
|
"scope": "default",
|
|
43400
44100
|
"line": {
|
|
43401
|
-
"start":
|
|
43402
|
-
"end":
|
|
44101
|
+
"start": 333,
|
|
44102
|
+
"end": 333
|
|
43403
44103
|
}
|
|
43404
44104
|
},
|
|
43405
44105
|
"access": "public",
|
|
@@ -43407,8 +44107,8 @@
|
|
|
43407
44107
|
"undefined"
|
|
43408
44108
|
],
|
|
43409
44109
|
"file": {
|
|
43410
|
-
"path": "
|
|
43411
|
-
"name": "
|
|
44110
|
+
"path": "core/color-system/_swatch.scss",
|
|
44111
|
+
"name": "_swatch.scss"
|
|
43412
44112
|
},
|
|
43413
44113
|
"resolvedValue": "#bababa",
|
|
43414
44114
|
"resolvedType": "Color"
|
|
@@ -43416,8 +44116,8 @@
|
|
|
43416
44116
|
{
|
|
43417
44117
|
"description": "The gradient background of hovered items.\n",
|
|
43418
44118
|
"commentRange": {
|
|
43419
|
-
"start":
|
|
43420
|
-
"end":
|
|
44119
|
+
"start": 334,
|
|
44120
|
+
"end": 334
|
|
43421
44121
|
},
|
|
43422
44122
|
"context": {
|
|
43423
44123
|
"type": "variable",
|
|
@@ -43425,8 +44125,8 @@
|
|
|
43425
44125
|
"value": "$kendo-base-gradient",
|
|
43426
44126
|
"scope": "default",
|
|
43427
44127
|
"line": {
|
|
43428
|
-
"start":
|
|
43429
|
-
"end":
|
|
44128
|
+
"start": 335,
|
|
44129
|
+
"end": 335
|
|
43430
44130
|
}
|
|
43431
44131
|
},
|
|
43432
44132
|
"access": "public",
|
|
@@ -43434,8 +44134,8 @@
|
|
|
43434
44134
|
"undefined"
|
|
43435
44135
|
],
|
|
43436
44136
|
"file": {
|
|
43437
|
-
"path": "
|
|
43438
|
-
"name": "
|
|
44137
|
+
"path": "core/color-system/_swatch.scss",
|
|
44138
|
+
"name": "_swatch.scss"
|
|
43439
44139
|
},
|
|
43440
44140
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
43441
44141
|
"resolvedType": "List"
|
|
@@ -43443,8 +44143,8 @@
|
|
|
43443
44143
|
{
|
|
43444
44144
|
"description": "The background of selected items.\n",
|
|
43445
44145
|
"commentRange": {
|
|
43446
|
-
"start":
|
|
43447
|
-
"end":
|
|
44146
|
+
"start": 337,
|
|
44147
|
+
"end": 337
|
|
43448
44148
|
},
|
|
43449
44149
|
"context": {
|
|
43450
44150
|
"type": "variable",
|
|
@@ -43452,8 +44152,8 @@
|
|
|
43452
44152
|
"value": "$kendo-color-primary",
|
|
43453
44153
|
"scope": "default",
|
|
43454
44154
|
"line": {
|
|
43455
|
-
"start":
|
|
43456
|
-
"end":
|
|
44155
|
+
"start": 338,
|
|
44156
|
+
"end": 338
|
|
43457
44157
|
}
|
|
43458
44158
|
},
|
|
43459
44159
|
"access": "public",
|
|
@@ -43461,8 +44161,8 @@
|
|
|
43461
44161
|
"undefined"
|
|
43462
44162
|
],
|
|
43463
44163
|
"file": {
|
|
43464
|
-
"path": "
|
|
43465
|
-
"name": "
|
|
44164
|
+
"path": "core/color-system/_swatch.scss",
|
|
44165
|
+
"name": "_swatch.scss"
|
|
43466
44166
|
},
|
|
43467
44167
|
"resolvedValue": "#f35800",
|
|
43468
44168
|
"resolvedType": "Color"
|
|
@@ -43470,8 +44170,8 @@
|
|
|
43470
44170
|
{
|
|
43471
44171
|
"description": "The text color of selected items.\n",
|
|
43472
44172
|
"commentRange": {
|
|
43473
|
-
"start":
|
|
43474
|
-
"end":
|
|
44173
|
+
"start": 339,
|
|
44174
|
+
"end": 339
|
|
43475
44175
|
},
|
|
43476
44176
|
"context": {
|
|
43477
44177
|
"type": "variable",
|
|
@@ -43479,8 +44179,8 @@
|
|
|
43479
44179
|
"value": "k-contrast-legacy( $kendo-selected-bg )",
|
|
43480
44180
|
"scope": "default",
|
|
43481
44181
|
"line": {
|
|
43482
|
-
"start":
|
|
43483
|
-
"end":
|
|
44182
|
+
"start": 340,
|
|
44183
|
+
"end": 340
|
|
43484
44184
|
}
|
|
43485
44185
|
},
|
|
43486
44186
|
"access": "public",
|
|
@@ -43488,8 +44188,8 @@
|
|
|
43488
44188
|
"undefined"
|
|
43489
44189
|
],
|
|
43490
44190
|
"file": {
|
|
43491
|
-
"path": "
|
|
43492
|
-
"name": "
|
|
44191
|
+
"path": "core/color-system/_swatch.scss",
|
|
44192
|
+
"name": "_swatch.scss"
|
|
43493
44193
|
},
|
|
43494
44194
|
"resolvedValue": "white",
|
|
43495
44195
|
"resolvedType": "Color"
|
|
@@ -43497,8 +44197,8 @@
|
|
|
43497
44197
|
{
|
|
43498
44198
|
"description": "The border color of selected items.\n",
|
|
43499
44199
|
"commentRange": {
|
|
43500
|
-
"start":
|
|
43501
|
-
"end":
|
|
44200
|
+
"start": 341,
|
|
44201
|
+
"end": 341
|
|
43502
44202
|
},
|
|
43503
44203
|
"context": {
|
|
43504
44204
|
"type": "variable",
|
|
@@ -43506,8 +44206,8 @@
|
|
|
43506
44206
|
"value": "k-try-shade( $kendo-selected-bg, 2 )",
|
|
43507
44207
|
"scope": "default",
|
|
43508
44208
|
"line": {
|
|
43509
|
-
"start":
|
|
43510
|
-
"end":
|
|
44209
|
+
"start": 342,
|
|
44210
|
+
"end": 342
|
|
43511
44211
|
}
|
|
43512
44212
|
},
|
|
43513
44213
|
"access": "public",
|
|
@@ -43515,8 +44215,8 @@
|
|
|
43515
44215
|
"undefined"
|
|
43516
44216
|
],
|
|
43517
44217
|
"file": {
|
|
43518
|
-
"path": "
|
|
43519
|
-
"name": "
|
|
44218
|
+
"path": "core/color-system/_swatch.scss",
|
|
44219
|
+
"name": "_swatch.scss"
|
|
43520
44220
|
},
|
|
43521
44221
|
"resolvedValue": "#cc4a00",
|
|
43522
44222
|
"resolvedType": "Color"
|
|
@@ -43524,8 +44224,8 @@
|
|
|
43524
44224
|
{
|
|
43525
44225
|
"description": "The gradient background of selected items.\n",
|
|
43526
44226
|
"commentRange": {
|
|
43527
|
-
"start":
|
|
43528
|
-
"end":
|
|
44227
|
+
"start": 343,
|
|
44228
|
+
"end": 343
|
|
43529
44229
|
},
|
|
43530
44230
|
"context": {
|
|
43531
44231
|
"type": "variable",
|
|
@@ -43533,8 +44233,8 @@
|
|
|
43533
44233
|
"value": "$kendo-base-gradient",
|
|
43534
44234
|
"scope": "default",
|
|
43535
44235
|
"line": {
|
|
43536
|
-
"start":
|
|
43537
|
-
"end":
|
|
44236
|
+
"start": 344,
|
|
44237
|
+
"end": 344
|
|
43538
44238
|
}
|
|
43539
44239
|
},
|
|
43540
44240
|
"access": "public",
|
|
@@ -43542,11 +44242,146 @@
|
|
|
43542
44242
|
"undefined"
|
|
43543
44243
|
],
|
|
43544
44244
|
"file": {
|
|
43545
|
-
"path": "
|
|
43546
|
-
"name": "
|
|
44245
|
+
"path": "core/color-system/_swatch.scss",
|
|
44246
|
+
"name": "_swatch.scss"
|
|
43547
44247
|
},
|
|
43548
44248
|
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
43549
44249
|
"resolvedType": "List"
|
|
44250
|
+
},
|
|
44251
|
+
{
|
|
44252
|
+
"description": "The background of selected and hovered items.\n",
|
|
44253
|
+
"commentRange": {
|
|
44254
|
+
"start": 346,
|
|
44255
|
+
"end": 346
|
|
44256
|
+
},
|
|
44257
|
+
"context": {
|
|
44258
|
+
"type": "variable",
|
|
44259
|
+
"name": "kendo-selected-hover-bg",
|
|
44260
|
+
"value": "k-try-shade( $kendo-selected-bg, 1 )",
|
|
44261
|
+
"scope": "default",
|
|
44262
|
+
"line": {
|
|
44263
|
+
"start": 347,
|
|
44264
|
+
"end": 347
|
|
44265
|
+
}
|
|
44266
|
+
},
|
|
44267
|
+
"access": "public",
|
|
44268
|
+
"group": [
|
|
44269
|
+
"undefined"
|
|
44270
|
+
],
|
|
44271
|
+
"file": {
|
|
44272
|
+
"path": "core/color-system/_swatch.scss",
|
|
44273
|
+
"name": "_swatch.scss"
|
|
44274
|
+
},
|
|
44275
|
+
"resolvedValue": "#e05100",
|
|
44276
|
+
"resolvedType": "Color"
|
|
44277
|
+
},
|
|
44278
|
+
{
|
|
44279
|
+
"description": "The text color of selected and hovered items.\n",
|
|
44280
|
+
"commentRange": {
|
|
44281
|
+
"start": 348,
|
|
44282
|
+
"end": 348
|
|
44283
|
+
},
|
|
44284
|
+
"context": {
|
|
44285
|
+
"type": "variable",
|
|
44286
|
+
"name": "kendo-selected-hover-text",
|
|
44287
|
+
"value": "k-contrast-legacy( $kendo-selected-hover-bg )",
|
|
44288
|
+
"scope": "default",
|
|
44289
|
+
"line": {
|
|
44290
|
+
"start": 349,
|
|
44291
|
+
"end": 349
|
|
44292
|
+
}
|
|
44293
|
+
},
|
|
44294
|
+
"access": "public",
|
|
44295
|
+
"group": [
|
|
44296
|
+
"undefined"
|
|
44297
|
+
],
|
|
44298
|
+
"file": {
|
|
44299
|
+
"path": "core/color-system/_swatch.scss",
|
|
44300
|
+
"name": "_swatch.scss"
|
|
44301
|
+
},
|
|
44302
|
+
"resolvedValue": "white",
|
|
44303
|
+
"resolvedType": "Color"
|
|
44304
|
+
},
|
|
44305
|
+
{
|
|
44306
|
+
"description": "The border of selected and hovered items.\n",
|
|
44307
|
+
"commentRange": {
|
|
44308
|
+
"start": 350,
|
|
44309
|
+
"end": 350
|
|
44310
|
+
},
|
|
44311
|
+
"context": {
|
|
44312
|
+
"type": "variable",
|
|
44313
|
+
"name": "kendo-selected-hover-border",
|
|
44314
|
+
"value": "$kendo-selected-border",
|
|
44315
|
+
"scope": "default",
|
|
44316
|
+
"line": {
|
|
44317
|
+
"start": 351,
|
|
44318
|
+
"end": 351
|
|
44319
|
+
}
|
|
44320
|
+
},
|
|
44321
|
+
"access": "public",
|
|
44322
|
+
"group": [
|
|
44323
|
+
"undefined"
|
|
44324
|
+
],
|
|
44325
|
+
"file": {
|
|
44326
|
+
"path": "core/color-system/_swatch.scss",
|
|
44327
|
+
"name": "_swatch.scss"
|
|
44328
|
+
},
|
|
44329
|
+
"resolvedValue": "#cc4a00",
|
|
44330
|
+
"resolvedType": "Color"
|
|
44331
|
+
},
|
|
44332
|
+
{
|
|
44333
|
+
"description": "The gradient of selected and hovered items.\n",
|
|
44334
|
+
"commentRange": {
|
|
44335
|
+
"start": 352,
|
|
44336
|
+
"end": 352
|
|
44337
|
+
},
|
|
44338
|
+
"context": {
|
|
44339
|
+
"type": "variable",
|
|
44340
|
+
"name": "kendo-selected-hover-gradient",
|
|
44341
|
+
"value": "$kendo-selected-gradient",
|
|
44342
|
+
"scope": "default",
|
|
44343
|
+
"line": {
|
|
44344
|
+
"start": 353,
|
|
44345
|
+
"end": 353
|
|
44346
|
+
}
|
|
44347
|
+
},
|
|
44348
|
+
"access": "public",
|
|
44349
|
+
"group": [
|
|
44350
|
+
"undefined"
|
|
44351
|
+
],
|
|
44352
|
+
"file": {
|
|
44353
|
+
"path": "core/color-system/_swatch.scss",
|
|
44354
|
+
"name": "_swatch.scss"
|
|
44355
|
+
},
|
|
44356
|
+
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
44357
|
+
"resolvedType": "List"
|
|
44358
|
+
},
|
|
44359
|
+
{
|
|
44360
|
+
"description": "Text color of disabled items.\n",
|
|
44361
|
+
"commentRange": {
|
|
44362
|
+
"start": 355,
|
|
44363
|
+
"end": 355
|
|
44364
|
+
},
|
|
44365
|
+
"context": {
|
|
44366
|
+
"type": "variable",
|
|
44367
|
+
"name": "kendo-disabled-text",
|
|
44368
|
+
"value": "#8d8d8d",
|
|
44369
|
+
"scope": "default",
|
|
44370
|
+
"line": {
|
|
44371
|
+
"start": 356,
|
|
44372
|
+
"end": 356
|
|
44373
|
+
}
|
|
44374
|
+
},
|
|
44375
|
+
"access": "public",
|
|
44376
|
+
"group": [
|
|
44377
|
+
"undefined"
|
|
44378
|
+
],
|
|
44379
|
+
"file": {
|
|
44380
|
+
"path": "core/color-system/_swatch.scss",
|
|
44381
|
+
"name": "_swatch.scss"
|
|
44382
|
+
},
|
|
44383
|
+
"resolvedValue": "#8d8d8d",
|
|
44384
|
+
"resolvedType": "Color"
|
|
43550
44385
|
}
|
|
43551
44386
|
]
|
|
43552
44387
|
},
|
|
@@ -43860,7 +44695,7 @@
|
|
|
43860
44695
|
"context": {
|
|
43861
44696
|
"type": "variable",
|
|
43862
44697
|
"name": "kendo-appbar-light-text",
|
|
43863
|
-
"value": "k-contrast-color( $kendo-color-light )",
|
|
44698
|
+
"value": "if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light ))",
|
|
43864
44699
|
"scope": "default",
|
|
43865
44700
|
"line": {
|
|
43866
44701
|
"start": 40,
|
|
@@ -43914,7 +44749,7 @@
|
|
|
43914
44749
|
"context": {
|
|
43915
44750
|
"type": "variable",
|
|
43916
44751
|
"name": "kendo-appbar-dark-text",
|
|
43917
|
-
"value": "k-contrast-color( $kendo-color-dark )",
|
|
44752
|
+
"value": "if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark ))",
|
|
43918
44753
|
"scope": "default",
|
|
43919
44754
|
"line": {
|
|
43920
44755
|
"start": 47,
|
|
@@ -47643,7 +48478,7 @@
|
|
|
47643
48478
|
"context": {
|
|
47644
48479
|
"type": "variable",
|
|
47645
48480
|
"name": "kendo-button-border",
|
|
47646
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
48481
|
+
"value": "if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
47647
48482
|
"scope": "default",
|
|
47648
48483
|
"line": {
|
|
47649
48484
|
"start": 119,
|
|
@@ -47724,7 +48559,7 @@
|
|
|
47724
48559
|
"context": {
|
|
47725
48560
|
"type": "variable",
|
|
47726
48561
|
"name": "kendo-button-hover-bg",
|
|
47727
|
-
"value": "k-try-shade( $kendo-button-bg, 1 )",
|
|
48562
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 ))",
|
|
47728
48563
|
"scope": "default",
|
|
47729
48564
|
"line": {
|
|
47730
48565
|
"start": 129,
|
|
@@ -47778,7 +48613,7 @@
|
|
|
47778
48613
|
"context": {
|
|
47779
48614
|
"type": "variable",
|
|
47780
48615
|
"name": "kendo-button-hover-border",
|
|
47781
|
-
"value": "k-try-shade( $kendo-button-bg, 3 )",
|
|
48616
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 ))",
|
|
47782
48617
|
"scope": "default",
|
|
47783
48618
|
"line": {
|
|
47784
48619
|
"start": 135,
|
|
@@ -47859,7 +48694,7 @@
|
|
|
47859
48694
|
"context": {
|
|
47860
48695
|
"type": "variable",
|
|
47861
48696
|
"name": "kendo-button-active-bg",
|
|
47862
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
48697
|
+
"value": "if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
47863
48698
|
"scope": "default",
|
|
47864
48699
|
"line": {
|
|
47865
48700
|
"start": 145,
|
|
@@ -47913,7 +48748,7 @@
|
|
|
47913
48748
|
"context": {
|
|
47914
48749
|
"type": "variable",
|
|
47915
48750
|
"name": "kendo-button-active-border",
|
|
47916
|
-
"value": "k-try-shade( $kendo-button-bg, 4 )",
|
|
48751
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 ))",
|
|
47917
48752
|
"scope": "default",
|
|
47918
48753
|
"line": {
|
|
47919
48754
|
"start": 151,
|
|
@@ -48021,7 +48856,7 @@
|
|
|
48021
48856
|
"context": {
|
|
48022
48857
|
"type": "variable",
|
|
48023
48858
|
"name": "kendo-button-selected-text",
|
|
48024
|
-
"value": "k-contrast-legacy( $kendo-button-selected-bg )",
|
|
48859
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg ))",
|
|
48025
48860
|
"scope": "default",
|
|
48026
48861
|
"line": {
|
|
48027
48862
|
"start": 164,
|
|
@@ -48237,7 +49072,7 @@
|
|
|
48237
49072
|
"context": {
|
|
48238
49073
|
"type": "variable",
|
|
48239
49074
|
"name": "kendo-button-focus-shadow",
|
|
48240
|
-
"value": "0 0 4px 0 rgba( $kendo-button-border, .75 )",
|
|
49075
|
+
"value": "0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 ))",
|
|
48241
49076
|
"scope": "default",
|
|
48242
49077
|
"line": {
|
|
48243
49078
|
"start": 189,
|
|
@@ -50442,7 +51277,7 @@
|
|
|
50442
51277
|
"context": {
|
|
50443
51278
|
"type": "variable",
|
|
50444
51279
|
"name": "kendo-series-a",
|
|
50445
|
-
"value": "#ff6358",
|
|
51280
|
+
"value": "if($kendo-enable-color-system, k-color( series-a ), #ff6358)",
|
|
50446
51281
|
"scope": "default",
|
|
50447
51282
|
"line": {
|
|
50448
51283
|
"start": 8,
|
|
@@ -50469,7 +51304,7 @@
|
|
|
50469
51304
|
"context": {
|
|
50470
51305
|
"type": "variable",
|
|
50471
51306
|
"name": "kendo-series-b",
|
|
50472
|
-
"value": "#ffd246",
|
|
51307
|
+
"value": "if($kendo-enable-color-system, k-color( series-b ), #ffd246)",
|
|
50473
51308
|
"scope": "default",
|
|
50474
51309
|
"line": {
|
|
50475
51310
|
"start": 16,
|
|
@@ -50496,7 +51331,7 @@
|
|
|
50496
51331
|
"context": {
|
|
50497
51332
|
"type": "variable",
|
|
50498
51333
|
"name": "kendo-series-c",
|
|
50499
|
-
"value": "#78d237",
|
|
51334
|
+
"value": "if($kendo-enable-color-system, k-color( series-c ), #78d237)",
|
|
50500
51335
|
"scope": "default",
|
|
50501
51336
|
"line": {
|
|
50502
51337
|
"start": 24,
|
|
@@ -50523,7 +51358,7 @@
|
|
|
50523
51358
|
"context": {
|
|
50524
51359
|
"type": "variable",
|
|
50525
51360
|
"name": "kendo-series-d",
|
|
50526
|
-
"value": "#28b4c8",
|
|
51361
|
+
"value": "if($kendo-enable-color-system, k-color( series-d ), #28b4c8)",
|
|
50527
51362
|
"scope": "default",
|
|
50528
51363
|
"line": {
|
|
50529
51364
|
"start": 32,
|
|
@@ -50550,7 +51385,7 @@
|
|
|
50550
51385
|
"context": {
|
|
50551
51386
|
"type": "variable",
|
|
50552
51387
|
"name": "kendo-series-e",
|
|
50553
|
-
"value": "#2d73f5",
|
|
51388
|
+
"value": "if($kendo-enable-color-system, k-color( series-e ), #2d73f5)",
|
|
50554
51389
|
"scope": "default",
|
|
50555
51390
|
"line": {
|
|
50556
51391
|
"start": 40,
|
|
@@ -50577,7 +51412,7 @@
|
|
|
50577
51412
|
"context": {
|
|
50578
51413
|
"type": "variable",
|
|
50579
51414
|
"name": "kendo-series-f",
|
|
50580
|
-
"value": "#aa46be",
|
|
51415
|
+
"value": "if($kendo-enable-color-system, k-color( series-f ), #aa46be)",
|
|
50581
51416
|
"scope": "default",
|
|
50582
51417
|
"line": {
|
|
50583
51418
|
"start": 48,
|
|
@@ -50631,7 +51466,7 @@
|
|
|
50631
51466
|
"context": {
|
|
50632
51467
|
"type": "variable",
|
|
50633
51468
|
"name": "kendo-chart-major-lines",
|
|
50634
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )",
|
|
51469
|
+
"value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 )",
|
|
50635
51470
|
"scope": "default",
|
|
50636
51471
|
"line": {
|
|
50637
51472
|
"start": 103,
|
|
@@ -50658,7 +51493,7 @@
|
|
|
50658
51493
|
"context": {
|
|
50659
51494
|
"type": "variable",
|
|
50660
51495
|
"name": "kendo-chart-minor-lines",
|
|
50661
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )",
|
|
51496
|
+
"value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .04 )",
|
|
50662
51497
|
"scope": "default",
|
|
50663
51498
|
"line": {
|
|
50664
51499
|
"start": 107,
|
|
@@ -51150,7 +51985,7 @@
|
|
|
51150
51985
|
"context": {
|
|
51151
51986
|
"type": "variable",
|
|
51152
51987
|
"name": "kendo-checkbox-checked-text",
|
|
51153
|
-
"value": "k-contrast-legacy( $kendo-checkbox-checked-bg )",
|
|
51988
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg ))",
|
|
51154
51989
|
"scope": "default",
|
|
51155
51990
|
"line": {
|
|
51156
51991
|
"start": 84,
|
|
@@ -51366,7 +52201,7 @@
|
|
|
51366
52201
|
"context": {
|
|
51367
52202
|
"type": "variable",
|
|
51368
52203
|
"name": "kendo-checkbox-focus-checked-shadow",
|
|
51369
|
-
"value": "0 0 0 2px rgba( $kendo-color-primary, .3 )",
|
|
52204
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 ))",
|
|
51370
52205
|
"scope": "default",
|
|
51371
52206
|
"line": {
|
|
51372
52207
|
"start": 110,
|
|
@@ -52641,7 +53476,7 @@
|
|
|
52641
53476
|
"context": {
|
|
52642
53477
|
"type": "variable",
|
|
52643
53478
|
"name": "kendo-chip-solid-shadow",
|
|
52644
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
53479
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ))",
|
|
52645
53480
|
"scope": "default",
|
|
52646
53481
|
"line": {
|
|
52647
53482
|
"start": 118,
|
|
@@ -52938,7 +53773,7 @@
|
|
|
52938
53773
|
"context": {
|
|
52939
53774
|
"type": "variable",
|
|
52940
53775
|
"name": "kendo-chip-outline-shadow",
|
|
52941
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
53776
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ))",
|
|
52942
53777
|
"scope": "default",
|
|
52943
53778
|
"line": {
|
|
52944
53779
|
"start": 155,
|
|
@@ -52992,7 +53827,7 @@
|
|
|
52992
53827
|
"context": {
|
|
52993
53828
|
"type": "variable",
|
|
52994
53829
|
"name": "kendo-chip-outline-hover-text",
|
|
52995
|
-
"value": "k-contrast-legacy( $kendo-chip-outline-hover-bg )",
|
|
53830
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg ))",
|
|
52996
53831
|
"scope": "default",
|
|
52997
53832
|
"line": {
|
|
52998
53833
|
"start": 162,
|
|
@@ -54265,66 +55100,37 @@
|
|
|
54265
55100
|
"title": "Color System",
|
|
54266
55101
|
"variables": [
|
|
54267
55102
|
{
|
|
54268
|
-
"description": "The
|
|
54269
|
-
"commentRange": {
|
|
54270
|
-
"start": 3,
|
|
54271
|
-
"end": 6
|
|
54272
|
-
},
|
|
54273
|
-
"context": {
|
|
54274
|
-
"type": "variable",
|
|
54275
|
-
"name": "kendo-color-white",
|
|
54276
|
-
"value": "#ffffff",
|
|
54277
|
-
"scope": "private",
|
|
54278
|
-
"line": {
|
|
54279
|
-
"start": 7,
|
|
54280
|
-
"end": 7
|
|
54281
|
-
}
|
|
54282
|
-
},
|
|
54283
|
-
"type": "Color",
|
|
54284
|
-
"group": [
|
|
54285
|
-
"color-system"
|
|
54286
|
-
],
|
|
54287
|
-
"access": "public",
|
|
54288
|
-
"file": {
|
|
54289
|
-
"path": "_variables.scss",
|
|
54290
|
-
"name": "_variables.scss"
|
|
54291
|
-
},
|
|
54292
|
-
"resolvedValue": "#ffffff",
|
|
54293
|
-
"resolvedType": "Color"
|
|
54294
|
-
},
|
|
54295
|
-
{
|
|
54296
|
-
"description": "The color black.\nNote: you cannot change this value.\n",
|
|
55103
|
+
"description": "The global default Colors map.\n",
|
|
54297
55104
|
"commentRange": {
|
|
54298
|
-
"start":
|
|
54299
|
-
"end":
|
|
55105
|
+
"start": 177,
|
|
55106
|
+
"end": 178
|
|
54300
55107
|
},
|
|
54301
55108
|
"context": {
|
|
54302
55109
|
"type": "variable",
|
|
54303
|
-
"name": "kendo-
|
|
54304
|
-
"value": "
|
|
54305
|
-
"scope": "
|
|
55110
|
+
"name": "kendo-colors",
|
|
55111
|
+
"value": "$_default-colors",
|
|
55112
|
+
"scope": "default",
|
|
54306
55113
|
"line": {
|
|
54307
|
-
"start":
|
|
54308
|
-
"end":
|
|
55114
|
+
"start": 179,
|
|
55115
|
+
"end": 179
|
|
54309
55116
|
}
|
|
54310
55117
|
},
|
|
54311
|
-
"type": "Color",
|
|
54312
55118
|
"group": [
|
|
54313
55119
|
"color-system"
|
|
54314
55120
|
],
|
|
54315
55121
|
"access": "public",
|
|
54316
55122
|
"file": {
|
|
54317
|
-
"path": "
|
|
54318
|
-
"name": "
|
|
55123
|
+
"path": "core/color-system/_swatch.scss",
|
|
55124
|
+
"name": "_swatch.scss"
|
|
54319
55125
|
},
|
|
54320
|
-
"resolvedValue": "#000000",
|
|
54321
|
-
"resolvedType": "
|
|
55126
|
+
"resolvedValue": "(app-surface: #ffffff, on-app-surface: #272727, subtle: #666666, surface: #f0f0f0, surface-alt: #ffffff, border: #cacaca, border-alt: #b6b6b6, base-subtle: #f0f0f0, base-subtle-hover: #ebebeb, base-subtle-active: #dddddd, base: #ebebeb, base-hover: #dddddd, base-active: #d6d6d6, base-emphasis: #cacaca, base-on-subtle: #272727, on-base: #272727, base-on-surface: #272727, primary-subtle: #fff2eb, primary-subtle-hover: #ffe5d6, primary-subtle-active: #ffd8c2, primary: #f35800, primary-hover: #e05100, primary-active: #cc4a00, primary-emphasis: #ff8b47, primary-on-subtle: #3d1600, on-primary: #ffffff, primary-on-surface: #f35800, secondary-subtle: #cacaca, secondary-subtle-hover: #b6b6b6, secondary-subtle-active: #a3a3a3, secondary: #b6b6b6, secondary-hover: #a3a3a3, secondary-active: #8f8f8f, secondary-emphasis: #7a7a7a, secondary-on-subtle: #272727, on-secondary: #000000, secondary-on-surface: #8f8f8f, tertiary-subtle: #9cdffe, tertiary-subtle-hover: #72d1fe, tertiary-subtle-active: #49c4fd, tertiary: #03a9f4, tertiary-hover: #039be0, tertiary-active: #038ecd, tertiary-emphasis: #2cbbfd, tertiary-on-subtle: #01364e, on-tertiary: #ffffff, tertiary-on-surface: #0273a6, info-subtle: #cce5f3, info-subtle-hover: #a6d1ea, info-subtle-active: #6ab2dc, info: #007bc3, info-hover: #0071b3, info-active: #0067a4, info-emphasis: #409cd2, info-on-subtle: #002b44, on-info: #ffffff, info-on-surface: #005485, success-subtle: #bbdfc1, success-subtle-hover: #9ed1a6, success-subtle-active: #82c48c, success: #3ea44e, success-hover: #399748, success-active: #348a42, success-emphasis: #6ebb7a, success-on-subtle: #16391b, on-success: #ffffff, success-on-surface: #2a7035, warning-subtle: #ffdead, warning-subtle-hover: #ffd699, warning-subtle-active: #ffc670, warning: #ffa41f, warning-hover: #ff9800, warning-active: #eb8c00, warning-emphasis: #ffb240, warning-on-subtle: #593500, on-warning: #000000, warning-on-surface: #ffa41f, error-subtle: #f4c3b8, error-subtle-hover: #f2b4a6, error-subtle-active: #ec8e79, error: #d92800, error-hover: #c82500, error-active: #b62200, error-emphasis: #e35e40, error-on-subtle: #4c0e00, on-error: #ffffff, error-on-surface: #941b00, light-subtle: #f0f0f0, light-subtle-hover: #ebebeb, light-subtle-active: #dddddd, light: #ebebeb, light-hover: #dddddd, light-active: #d6d6d6, light-emphasis: #cacaca, light-on-subtle: #272727, on-light: #000000, light-on-surface: #ebebeb, dark-subtle: #cacaca, dark-subtle-hover: #b6b6b6, dark-subtle-active: #a3a3a3, dark: #404040, dark-hover: #333333, dark-active: #272727, dark-emphasis: #7a7a7a, dark-on-subtle: #000000, on-dark: #ffffff, dark-on-surface: #333333, inverse-subtle: #cacaca, inverse-subtle-hover: #b6b6b6, inverse-subtle-active: #a3a3a3, inverse: #404040, inverse-hover: #333333, inverse-active: #272727, inverse-emphasis: #7a7a7a, inverse-on-subtle: #000000, on-inverse: #ffffff, inverse-on-surface: #333333, series-a: #ff6358, series-a-bold: #bf4a42, series-a-bolder: #80322c, series-a-subtle: #ffb1ac, series-a-subtler: #ff8a82, series-b: #ffd246, series-b-bold: #bf9d35, series-b-bolder: #806923, series-b-subtle: #ffe9a2, series-b-subtler: #ffdd74, series-c: #78d237, series-c-bold: #5a9d29, series-c-bolder: #3c691c, series-c-subtle: #bbe99b, series-c-subtler: #9add69, series-d: #28b4c8, series-d-bold: #1e8796, series-d-bolder: #145a64, series-d-subtle: #93d9e3, series-d-subtler: #5ec7d6, series-e: #2d73f5, series-e-bold: #2256b8, series-e-bolder: #173a7b, series-e-subtle: #96b9fa, series-e-subtler: #6296f7, series-f: #9d40b0, series-f-bold: #80358e, series-f-bolder: #55235f, series-f-subtle: #d5a2df, series-f-subtler: #bf74ce)",
|
|
55127
|
+
"resolvedType": "Map"
|
|
54322
55128
|
},
|
|
54323
55129
|
{
|
|
54324
55130
|
"description": "The color that focuses the user attention.\nUsed for primary buttons and for elements of primary importance across the theme.\n",
|
|
54325
55131
|
"commentRange": {
|
|
54326
|
-
"start":
|
|
54327
|
-
"end":
|
|
55132
|
+
"start": 184,
|
|
55133
|
+
"end": 187
|
|
54328
55134
|
},
|
|
54329
55135
|
"context": {
|
|
54330
55136
|
"type": "variable",
|
|
@@ -54332,8 +55138,8 @@
|
|
|
54332
55138
|
"value": "#f35800",
|
|
54333
55139
|
"scope": "default",
|
|
54334
55140
|
"line": {
|
|
54335
|
-
"start":
|
|
54336
|
-
"end":
|
|
55141
|
+
"start": 188,
|
|
55142
|
+
"end": 188
|
|
54337
55143
|
}
|
|
54338
55144
|
},
|
|
54339
55145
|
"group": [
|
|
@@ -54342,8 +55148,8 @@
|
|
|
54342
55148
|
"type": "Color",
|
|
54343
55149
|
"access": "public",
|
|
54344
55150
|
"file": {
|
|
54345
|
-
"path": "
|
|
54346
|
-
"name": "
|
|
55151
|
+
"path": "core/color-system/_swatch.scss",
|
|
55152
|
+
"name": "_swatch.scss"
|
|
54347
55153
|
},
|
|
54348
55154
|
"resolvedValue": "#f35800",
|
|
54349
55155
|
"resolvedType": "Color"
|
|
@@ -54351,8 +55157,8 @@
|
|
|
54351
55157
|
{
|
|
54352
55158
|
"description": "The color used along with the primary color denoted by $kendo-color-primary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
54353
55159
|
"commentRange": {
|
|
54354
|
-
"start":
|
|
54355
|
-
"end":
|
|
55160
|
+
"start": 192,
|
|
55161
|
+
"end": 195
|
|
54356
55162
|
},
|
|
54357
55163
|
"context": {
|
|
54358
55164
|
"type": "variable",
|
|
@@ -54360,8 +55166,8 @@
|
|
|
54360
55166
|
"value": "k-contrast-legacy( $kendo-color-primary )",
|
|
54361
55167
|
"scope": "default",
|
|
54362
55168
|
"line": {
|
|
54363
|
-
"start":
|
|
54364
|
-
"end":
|
|
55169
|
+
"start": 196,
|
|
55170
|
+
"end": 196
|
|
54365
55171
|
}
|
|
54366
55172
|
},
|
|
54367
55173
|
"group": [
|
|
@@ -54370,8 +55176,8 @@
|
|
|
54370
55176
|
"type": "Color",
|
|
54371
55177
|
"access": "public",
|
|
54372
55178
|
"file": {
|
|
54373
|
-
"path": "
|
|
54374
|
-
"name": "
|
|
55179
|
+
"path": "core/color-system/_swatch.scss",
|
|
55180
|
+
"name": "_swatch.scss"
|
|
54375
55181
|
},
|
|
54376
55182
|
"resolvedValue": "white",
|
|
54377
55183
|
"resolvedType": "Color"
|
|
@@ -54379,8 +55185,8 @@
|
|
|
54379
55185
|
{
|
|
54380
55186
|
"description": "The secondary color of the theme.\n",
|
|
54381
55187
|
"commentRange": {
|
|
54382
|
-
"start":
|
|
54383
|
-
"end":
|
|
55188
|
+
"start": 198,
|
|
55189
|
+
"end": 200
|
|
54384
55190
|
},
|
|
54385
55191
|
"context": {
|
|
54386
55192
|
"type": "variable",
|
|
@@ -54388,8 +55194,8 @@
|
|
|
54388
55194
|
"value": "#e9e9e9",
|
|
54389
55195
|
"scope": "default",
|
|
54390
55196
|
"line": {
|
|
54391
|
-
"start":
|
|
54392
|
-
"end":
|
|
55197
|
+
"start": 201,
|
|
55198
|
+
"end": 201
|
|
54393
55199
|
}
|
|
54394
55200
|
},
|
|
54395
55201
|
"group": [
|
|
@@ -54398,8 +55204,8 @@
|
|
|
54398
55204
|
"type": "Color",
|
|
54399
55205
|
"access": "public",
|
|
54400
55206
|
"file": {
|
|
54401
|
-
"path": "
|
|
54402
|
-
"name": "
|
|
55207
|
+
"path": "core/color-system/_swatch.scss",
|
|
55208
|
+
"name": "_swatch.scss"
|
|
54403
55209
|
},
|
|
54404
55210
|
"resolvedValue": "#e9e9e9",
|
|
54405
55211
|
"resolvedType": "Color"
|
|
@@ -54407,8 +55213,8 @@
|
|
|
54407
55213
|
{
|
|
54408
55214
|
"description": "The color used along with the secondary color denoted by $kendo-color-secondary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
54409
55215
|
"commentRange": {
|
|
54410
|
-
"start":
|
|
54411
|
-
"end":
|
|
55216
|
+
"start": 205,
|
|
55217
|
+
"end": 208
|
|
54412
55218
|
},
|
|
54413
55219
|
"context": {
|
|
54414
55220
|
"type": "variable",
|
|
@@ -54416,8 +55222,8 @@
|
|
|
54416
55222
|
"value": "k-contrast-color( $kendo-color-secondary )",
|
|
54417
55223
|
"scope": "default",
|
|
54418
55224
|
"line": {
|
|
54419
|
-
"start":
|
|
54420
|
-
"end":
|
|
55225
|
+
"start": 209,
|
|
55226
|
+
"end": 209
|
|
54421
55227
|
}
|
|
54422
55228
|
},
|
|
54423
55229
|
"group": [
|
|
@@ -54426,8 +55232,8 @@
|
|
|
54426
55232
|
"type": "Color",
|
|
54427
55233
|
"access": "public",
|
|
54428
55234
|
"file": {
|
|
54429
|
-
"path": "
|
|
54430
|
-
"name": "
|
|
55235
|
+
"path": "core/color-system/_swatch.scss",
|
|
55236
|
+
"name": "_swatch.scss"
|
|
54431
55237
|
},
|
|
54432
55238
|
"resolvedValue": "black",
|
|
54433
55239
|
"resolvedType": "Color"
|
|
@@ -54435,8 +55241,8 @@
|
|
|
54435
55241
|
{
|
|
54436
55242
|
"description": "The tertiary color of the theme.\n",
|
|
54437
55243
|
"commentRange": {
|
|
54438
|
-
"start":
|
|
54439
|
-
"end":
|
|
55244
|
+
"start": 211,
|
|
55245
|
+
"end": 213
|
|
54440
55246
|
},
|
|
54441
55247
|
"context": {
|
|
54442
55248
|
"type": "variable",
|
|
@@ -54444,8 +55250,8 @@
|
|
|
54444
55250
|
"value": "#03a9f4",
|
|
54445
55251
|
"scope": "default",
|
|
54446
55252
|
"line": {
|
|
54447
|
-
"start":
|
|
54448
|
-
"end":
|
|
55253
|
+
"start": 214,
|
|
55254
|
+
"end": 214
|
|
54449
55255
|
}
|
|
54450
55256
|
},
|
|
54451
55257
|
"group": [
|
|
@@ -54454,8 +55260,8 @@
|
|
|
54454
55260
|
"type": "Color",
|
|
54455
55261
|
"access": "public",
|
|
54456
55262
|
"file": {
|
|
54457
|
-
"path": "
|
|
54458
|
-
"name": "
|
|
55263
|
+
"path": "core/color-system/_swatch.scss",
|
|
55264
|
+
"name": "_swatch.scss"
|
|
54459
55265
|
},
|
|
54460
55266
|
"resolvedValue": "#03a9f4",
|
|
54461
55267
|
"resolvedType": "Color"
|
|
@@ -54463,8 +55269,8 @@
|
|
|
54463
55269
|
{
|
|
54464
55270
|
"description": "The color used along with the tertiary color denoted by $kendo-color-tertiary.\nUsed to provide contrast between the background and foreground colors.\n",
|
|
54465
55271
|
"commentRange": {
|
|
54466
|
-
"start":
|
|
54467
|
-
"end":
|
|
55272
|
+
"start": 218,
|
|
55273
|
+
"end": 221
|
|
54468
55274
|
},
|
|
54469
55275
|
"context": {
|
|
54470
55276
|
"type": "variable",
|
|
@@ -54472,8 +55278,8 @@
|
|
|
54472
55278
|
"value": "k-contrast-color( $kendo-color-tertiary )",
|
|
54473
55279
|
"scope": "default",
|
|
54474
55280
|
"line": {
|
|
54475
|
-
"start":
|
|
54476
|
-
"end":
|
|
55281
|
+
"start": 222,
|
|
55282
|
+
"end": 222
|
|
54477
55283
|
}
|
|
54478
55284
|
},
|
|
54479
55285
|
"group": [
|
|
@@ -54482,8 +55288,8 @@
|
|
|
54482
55288
|
"type": "Color",
|
|
54483
55289
|
"access": "public",
|
|
54484
55290
|
"file": {
|
|
54485
|
-
"path": "
|
|
54486
|
-
"name": "
|
|
55291
|
+
"path": "core/color-system/_swatch.scss",
|
|
55292
|
+
"name": "_swatch.scss"
|
|
54487
55293
|
},
|
|
54488
55294
|
"resolvedValue": "black",
|
|
54489
55295
|
"resolvedType": "Color"
|
|
@@ -54491,8 +55297,8 @@
|
|
|
54491
55297
|
{
|
|
54492
55298
|
"description": "The color for informational messages and states.\n",
|
|
54493
55299
|
"commentRange": {
|
|
54494
|
-
"start":
|
|
54495
|
-
"end":
|
|
55300
|
+
"start": 224,
|
|
55301
|
+
"end": 226
|
|
54496
55302
|
},
|
|
54497
55303
|
"context": {
|
|
54498
55304
|
"type": "variable",
|
|
@@ -54500,8 +55306,8 @@
|
|
|
54500
55306
|
"value": "#2498bc",
|
|
54501
55307
|
"scope": "default",
|
|
54502
55308
|
"line": {
|
|
54503
|
-
"start":
|
|
54504
|
-
"end":
|
|
55309
|
+
"start": 227,
|
|
55310
|
+
"end": 227
|
|
54505
55311
|
}
|
|
54506
55312
|
},
|
|
54507
55313
|
"group": [
|
|
@@ -54510,8 +55316,8 @@
|
|
|
54510
55316
|
"type": "Color",
|
|
54511
55317
|
"access": "public",
|
|
54512
55318
|
"file": {
|
|
54513
|
-
"path": "
|
|
54514
|
-
"name": "
|
|
55319
|
+
"path": "core/color-system/_swatch.scss",
|
|
55320
|
+
"name": "_swatch.scss"
|
|
54515
55321
|
},
|
|
54516
55322
|
"resolvedValue": "#2498bc",
|
|
54517
55323
|
"resolvedType": "Color"
|
|
@@ -54519,8 +55325,8 @@
|
|
|
54519
55325
|
{
|
|
54520
55326
|
"description": "The color for success messages and states.\n",
|
|
54521
55327
|
"commentRange": {
|
|
54522
|
-
"start":
|
|
54523
|
-
"end":
|
|
55328
|
+
"start": 231,
|
|
55329
|
+
"end": 233
|
|
54524
55330
|
},
|
|
54525
55331
|
"context": {
|
|
54526
55332
|
"type": "variable",
|
|
@@ -54528,8 +55334,8 @@
|
|
|
54528
55334
|
"value": "#3ea44e",
|
|
54529
55335
|
"scope": "default",
|
|
54530
55336
|
"line": {
|
|
54531
|
-
"start":
|
|
54532
|
-
"end":
|
|
55337
|
+
"start": 234,
|
|
55338
|
+
"end": 234
|
|
54533
55339
|
}
|
|
54534
55340
|
},
|
|
54535
55341
|
"group": [
|
|
@@ -54538,8 +55344,8 @@
|
|
|
54538
55344
|
"type": "Color",
|
|
54539
55345
|
"access": "public",
|
|
54540
55346
|
"file": {
|
|
54541
|
-
"path": "
|
|
54542
|
-
"name": "
|
|
55347
|
+
"path": "core/color-system/_swatch.scss",
|
|
55348
|
+
"name": "_swatch.scss"
|
|
54543
55349
|
},
|
|
54544
55350
|
"resolvedValue": "#3ea44e",
|
|
54545
55351
|
"resolvedType": "Color"
|
|
@@ -54547,8 +55353,8 @@
|
|
|
54547
55353
|
{
|
|
54548
55354
|
"description": "The color for warning messages and states.\n",
|
|
54549
55355
|
"commentRange": {
|
|
54550
|
-
"start":
|
|
54551
|
-
"end":
|
|
55356
|
+
"start": 238,
|
|
55357
|
+
"end": 240
|
|
54552
55358
|
},
|
|
54553
55359
|
"context": {
|
|
54554
55360
|
"type": "variable",
|
|
@@ -54556,8 +55362,8 @@
|
|
|
54556
55362
|
"value": "#ff9800",
|
|
54557
55363
|
"scope": "default",
|
|
54558
55364
|
"line": {
|
|
54559
|
-
"start":
|
|
54560
|
-
"end":
|
|
55365
|
+
"start": 241,
|
|
55366
|
+
"end": 241
|
|
54561
55367
|
}
|
|
54562
55368
|
},
|
|
54563
55369
|
"group": [
|
|
@@ -54566,8 +55372,8 @@
|
|
|
54566
55372
|
"type": "Color",
|
|
54567
55373
|
"access": "public",
|
|
54568
55374
|
"file": {
|
|
54569
|
-
"path": "
|
|
54570
|
-
"name": "
|
|
55375
|
+
"path": "core/color-system/_swatch.scss",
|
|
55376
|
+
"name": "_swatch.scss"
|
|
54571
55377
|
},
|
|
54572
55378
|
"resolvedValue": "#ff9800",
|
|
54573
55379
|
"resolvedType": "Color"
|
|
@@ -54575,8 +55381,8 @@
|
|
|
54575
55381
|
{
|
|
54576
55382
|
"description": "The color for error messages and states.\n",
|
|
54577
55383
|
"commentRange": {
|
|
54578
|
-
"start":
|
|
54579
|
-
"end":
|
|
55384
|
+
"start": 245,
|
|
55385
|
+
"end": 247
|
|
54580
55386
|
},
|
|
54581
55387
|
"context": {
|
|
54582
55388
|
"type": "variable",
|
|
@@ -54584,8 +55390,8 @@
|
|
|
54584
55390
|
"value": "#d92800",
|
|
54585
55391
|
"scope": "default",
|
|
54586
55392
|
"line": {
|
|
54587
|
-
"start":
|
|
54588
|
-
"end":
|
|
55393
|
+
"start": 248,
|
|
55394
|
+
"end": 248
|
|
54589
55395
|
}
|
|
54590
55396
|
},
|
|
54591
55397
|
"group": [
|
|
@@ -54594,8 +55400,8 @@
|
|
|
54594
55400
|
"type": "Color",
|
|
54595
55401
|
"access": "public",
|
|
54596
55402
|
"file": {
|
|
54597
|
-
"path": "
|
|
54598
|
-
"name": "
|
|
55403
|
+
"path": "core/color-system/_swatch.scss",
|
|
55404
|
+
"name": "_swatch.scss"
|
|
54599
55405
|
},
|
|
54600
55406
|
"resolvedValue": "#d92800",
|
|
54601
55407
|
"resolvedType": "Color"
|
|
@@ -54603,8 +55409,8 @@
|
|
|
54603
55409
|
{
|
|
54604
55410
|
"description": "The dark color of the theme.\n",
|
|
54605
55411
|
"commentRange": {
|
|
54606
|
-
"start":
|
|
54607
|
-
"end":
|
|
55412
|
+
"start": 252,
|
|
55413
|
+
"end": 254
|
|
54608
55414
|
},
|
|
54609
55415
|
"context": {
|
|
54610
55416
|
"type": "variable",
|
|
@@ -54612,8 +55418,8 @@
|
|
|
54612
55418
|
"value": "#404040",
|
|
54613
55419
|
"scope": "default",
|
|
54614
55420
|
"line": {
|
|
54615
|
-
"start":
|
|
54616
|
-
"end":
|
|
55421
|
+
"start": 255,
|
|
55422
|
+
"end": 255
|
|
54617
55423
|
}
|
|
54618
55424
|
},
|
|
54619
55425
|
"group": [
|
|
@@ -54622,8 +55428,8 @@
|
|
|
54622
55428
|
"type": "Color",
|
|
54623
55429
|
"access": "public",
|
|
54624
55430
|
"file": {
|
|
54625
|
-
"path": "
|
|
54626
|
-
"name": "
|
|
55431
|
+
"path": "core/color-system/_swatch.scss",
|
|
55432
|
+
"name": "_swatch.scss"
|
|
54627
55433
|
},
|
|
54628
55434
|
"resolvedValue": "#404040",
|
|
54629
55435
|
"resolvedType": "Color"
|
|
@@ -54631,8 +55437,8 @@
|
|
|
54631
55437
|
{
|
|
54632
55438
|
"description": "The light color of the theme.\n",
|
|
54633
55439
|
"commentRange": {
|
|
54634
|
-
"start":
|
|
54635
|
-
"end":
|
|
55440
|
+
"start": 257,
|
|
55441
|
+
"end": 259
|
|
54636
55442
|
},
|
|
54637
55443
|
"context": {
|
|
54638
55444
|
"type": "variable",
|
|
@@ -54640,8 +55446,8 @@
|
|
|
54640
55446
|
"value": "#ebebeb",
|
|
54641
55447
|
"scope": "default",
|
|
54642
55448
|
"line": {
|
|
54643
|
-
"start":
|
|
54644
|
-
"end":
|
|
55449
|
+
"start": 260,
|
|
55450
|
+
"end": 260
|
|
54645
55451
|
}
|
|
54646
55452
|
},
|
|
54647
55453
|
"group": [
|
|
@@ -54650,8 +55456,8 @@
|
|
|
54650
55456
|
"type": "Color",
|
|
54651
55457
|
"access": "public",
|
|
54652
55458
|
"file": {
|
|
54653
|
-
"path": "
|
|
54654
|
-
"name": "
|
|
55459
|
+
"path": "core/color-system/_swatch.scss",
|
|
55460
|
+
"name": "_swatch.scss"
|
|
54655
55461
|
},
|
|
54656
55462
|
"resolvedValue": "#ebebeb",
|
|
54657
55463
|
"resolvedType": "Color"
|
|
@@ -54659,8 +55465,8 @@
|
|
|
54659
55465
|
{
|
|
54660
55466
|
"description": "Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark\n",
|
|
54661
55467
|
"commentRange": {
|
|
54662
|
-
"start":
|
|
54663
|
-
"end":
|
|
55468
|
+
"start": 262,
|
|
55469
|
+
"end": 263
|
|
54664
55470
|
},
|
|
54665
55471
|
"context": {
|
|
54666
55472
|
"type": "variable",
|
|
@@ -54668,8 +55474,8 @@
|
|
|
54668
55474
|
"value": "if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark )",
|
|
54669
55475
|
"scope": "default",
|
|
54670
55476
|
"line": {
|
|
54671
|
-
"start":
|
|
54672
|
-
"end":
|
|
55477
|
+
"start": 264,
|
|
55478
|
+
"end": 264
|
|
54673
55479
|
}
|
|
54674
55480
|
},
|
|
54675
55481
|
"group": [
|
|
@@ -54677,8 +55483,8 @@
|
|
|
54677
55483
|
],
|
|
54678
55484
|
"access": "public",
|
|
54679
55485
|
"file": {
|
|
54680
|
-
"path": "
|
|
54681
|
-
"name": "
|
|
55486
|
+
"path": "core/color-system/_swatch.scss",
|
|
55487
|
+
"name": "_swatch.scss"
|
|
54682
55488
|
},
|
|
54683
55489
|
"resolvedValue": "#404040",
|
|
54684
55490
|
"resolvedType": "Color"
|
|
@@ -55568,8 +56374,8 @@
|
|
|
55568
56374
|
{
|
|
55569
56375
|
"description": "Background color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.\n",
|
|
55570
56376
|
"commentRange": {
|
|
55571
|
-
"start":
|
|
55572
|
-
"end":
|
|
56377
|
+
"start": 315,
|
|
56378
|
+
"end": 317
|
|
55573
56379
|
},
|
|
55574
56380
|
"context": {
|
|
55575
56381
|
"type": "variable",
|
|
@@ -55577,8 +56383,8 @@
|
|
|
55577
56383
|
"value": "$kendo-body-bg",
|
|
55578
56384
|
"scope": "default",
|
|
55579
56385
|
"line": {
|
|
55580
|
-
"start":
|
|
55581
|
-
"end":
|
|
56386
|
+
"start": 318,
|
|
56387
|
+
"end": 318
|
|
55582
56388
|
}
|
|
55583
56389
|
},
|
|
55584
56390
|
"group": [
|
|
@@ -55586,8 +56392,8 @@
|
|
|
55586
56392
|
],
|
|
55587
56393
|
"access": "public",
|
|
55588
56394
|
"file": {
|
|
55589
|
-
"path": "
|
|
55590
|
-
"name": "
|
|
56395
|
+
"path": "core/color-system/_swatch.scss",
|
|
56396
|
+
"name": "_swatch.scss"
|
|
55591
56397
|
},
|
|
55592
56398
|
"resolvedValue": "#ffffff",
|
|
55593
56399
|
"resolvedType": "Color"
|
|
@@ -55595,8 +56401,8 @@
|
|
|
55595
56401
|
{
|
|
55596
56402
|
"description": "Text color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.\n",
|
|
55597
56403
|
"commentRange": {
|
|
55598
|
-
"start":
|
|
55599
|
-
"end":
|
|
56404
|
+
"start": 319,
|
|
56405
|
+
"end": 321
|
|
55600
56406
|
},
|
|
55601
56407
|
"context": {
|
|
55602
56408
|
"type": "variable",
|
|
@@ -55604,8 +56410,8 @@
|
|
|
55604
56410
|
"value": "$kendo-body-text",
|
|
55605
56411
|
"scope": "default",
|
|
55606
56412
|
"line": {
|
|
55607
|
-
"start":
|
|
55608
|
-
"end":
|
|
56413
|
+
"start": 322,
|
|
56414
|
+
"end": 322
|
|
55609
56415
|
}
|
|
55610
56416
|
},
|
|
55611
56417
|
"group": [
|
|
@@ -55613,8 +56419,8 @@
|
|
|
55613
56419
|
],
|
|
55614
56420
|
"access": "public",
|
|
55615
56421
|
"file": {
|
|
55616
|
-
"path": "
|
|
55617
|
-
"name": "
|
|
56422
|
+
"path": "core/color-system/_swatch.scss",
|
|
56423
|
+
"name": "_swatch.scss"
|
|
55618
56424
|
},
|
|
55619
56425
|
"resolvedValue": "#272727",
|
|
55620
56426
|
"resolvedType": "Color"
|
|
@@ -55622,8 +56428,8 @@
|
|
|
55622
56428
|
{
|
|
55623
56429
|
"description": "Border color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.\n",
|
|
55624
56430
|
"commentRange": {
|
|
55625
|
-
"start":
|
|
55626
|
-
"end":
|
|
56431
|
+
"start": 323,
|
|
56432
|
+
"end": 325
|
|
55627
56433
|
},
|
|
55628
56434
|
"context": {
|
|
55629
56435
|
"type": "variable",
|
|
@@ -55631,8 +56437,8 @@
|
|
|
55631
56437
|
"value": "$kendo-base-border",
|
|
55632
56438
|
"scope": "default",
|
|
55633
56439
|
"line": {
|
|
55634
|
-
"start":
|
|
55635
|
-
"end":
|
|
56440
|
+
"start": 326,
|
|
56441
|
+
"end": 326
|
|
55636
56442
|
}
|
|
55637
56443
|
},
|
|
55638
56444
|
"group": [
|
|
@@ -55640,11 +56446,335 @@
|
|
|
55640
56446
|
],
|
|
55641
56447
|
"access": "public",
|
|
55642
56448
|
"file": {
|
|
55643
|
-
"path": "
|
|
55644
|
-
"name": "
|
|
56449
|
+
"path": "core/color-system/_swatch.scss",
|
|
56450
|
+
"name": "_swatch.scss"
|
|
56451
|
+
},
|
|
56452
|
+
"resolvedValue": "#cacaca",
|
|
56453
|
+
"resolvedType": "Color"
|
|
56454
|
+
},
|
|
56455
|
+
{
|
|
56456
|
+
"description": "Background color of the component header.\n",
|
|
56457
|
+
"commentRange": {
|
|
56458
|
+
"start": 360,
|
|
56459
|
+
"end": 361
|
|
56460
|
+
},
|
|
56461
|
+
"context": {
|
|
56462
|
+
"type": "variable",
|
|
56463
|
+
"name": "kendo-component-header-bg",
|
|
56464
|
+
"value": "$kendo-base-bg",
|
|
56465
|
+
"scope": "default",
|
|
56466
|
+
"line": {
|
|
56467
|
+
"start": 362,
|
|
56468
|
+
"end": 362
|
|
56469
|
+
}
|
|
56470
|
+
},
|
|
56471
|
+
"group": [
|
|
56472
|
+
"component"
|
|
56473
|
+
],
|
|
56474
|
+
"access": "public",
|
|
56475
|
+
"file": {
|
|
56476
|
+
"path": "core/color-system/_swatch.scss",
|
|
56477
|
+
"name": "_swatch.scss"
|
|
56478
|
+
},
|
|
56479
|
+
"resolvedValue": "#f0f0f0",
|
|
56480
|
+
"resolvedType": "Color"
|
|
56481
|
+
},
|
|
56482
|
+
{
|
|
56483
|
+
"description": "Text color of the component header.\n",
|
|
56484
|
+
"commentRange": {
|
|
56485
|
+
"start": 363,
|
|
56486
|
+
"end": 364
|
|
56487
|
+
},
|
|
56488
|
+
"context": {
|
|
56489
|
+
"type": "variable",
|
|
56490
|
+
"name": "kendo-component-header-text",
|
|
56491
|
+
"value": "$kendo-base-text",
|
|
56492
|
+
"scope": "default",
|
|
56493
|
+
"line": {
|
|
56494
|
+
"start": 365,
|
|
56495
|
+
"end": 365
|
|
56496
|
+
}
|
|
56497
|
+
},
|
|
56498
|
+
"group": [
|
|
56499
|
+
"component"
|
|
56500
|
+
],
|
|
56501
|
+
"access": "public",
|
|
56502
|
+
"file": {
|
|
56503
|
+
"path": "core/color-system/_swatch.scss",
|
|
56504
|
+
"name": "_swatch.scss"
|
|
56505
|
+
},
|
|
56506
|
+
"resolvedValue": "#272727",
|
|
56507
|
+
"resolvedType": "Color"
|
|
56508
|
+
},
|
|
56509
|
+
{
|
|
56510
|
+
"description": "Border color of the component header.\n",
|
|
56511
|
+
"commentRange": {
|
|
56512
|
+
"start": 366,
|
|
56513
|
+
"end": 367
|
|
56514
|
+
},
|
|
56515
|
+
"context": {
|
|
56516
|
+
"type": "variable",
|
|
56517
|
+
"name": "kendo-component-header-border",
|
|
56518
|
+
"value": "$kendo-base-border",
|
|
56519
|
+
"scope": "default",
|
|
56520
|
+
"line": {
|
|
56521
|
+
"start": 368,
|
|
56522
|
+
"end": 368
|
|
56523
|
+
}
|
|
56524
|
+
},
|
|
56525
|
+
"group": [
|
|
56526
|
+
"component"
|
|
56527
|
+
],
|
|
56528
|
+
"access": "public",
|
|
56529
|
+
"file": {
|
|
56530
|
+
"path": "core/color-system/_swatch.scss",
|
|
56531
|
+
"name": "_swatch.scss"
|
|
55645
56532
|
},
|
|
55646
56533
|
"resolvedValue": "#cacaca",
|
|
55647
56534
|
"resolvedType": "Color"
|
|
56535
|
+
},
|
|
56536
|
+
{
|
|
56537
|
+
"description": "Gradient of the component header.\n",
|
|
56538
|
+
"commentRange": {
|
|
56539
|
+
"start": 369,
|
|
56540
|
+
"end": 370
|
|
56541
|
+
},
|
|
56542
|
+
"context": {
|
|
56543
|
+
"type": "variable",
|
|
56544
|
+
"name": "kendo-component-header-gradient",
|
|
56545
|
+
"value": "$kendo-base-gradient",
|
|
56546
|
+
"scope": "default",
|
|
56547
|
+
"line": {
|
|
56548
|
+
"start": 371,
|
|
56549
|
+
"end": 371
|
|
56550
|
+
}
|
|
56551
|
+
},
|
|
56552
|
+
"group": [
|
|
56553
|
+
"component"
|
|
56554
|
+
],
|
|
56555
|
+
"access": "public",
|
|
56556
|
+
"file": {
|
|
56557
|
+
"path": "core/color-system/_swatch.scss",
|
|
56558
|
+
"name": "_swatch.scss"
|
|
56559
|
+
},
|
|
56560
|
+
"resolvedValue": "rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)",
|
|
56561
|
+
"resolvedType": "List"
|
|
56562
|
+
},
|
|
56563
|
+
{
|
|
56564
|
+
"description": "Background color of the invalid items.\n",
|
|
56565
|
+
"commentRange": {
|
|
56566
|
+
"start": 373,
|
|
56567
|
+
"end": 374
|
|
56568
|
+
},
|
|
56569
|
+
"context": {
|
|
56570
|
+
"type": "variable",
|
|
56571
|
+
"name": "kendo-invalid-bg",
|
|
56572
|
+
"value": "null",
|
|
56573
|
+
"scope": "default",
|
|
56574
|
+
"line": {
|
|
56575
|
+
"start": 375,
|
|
56576
|
+
"end": 375
|
|
56577
|
+
}
|
|
56578
|
+
},
|
|
56579
|
+
"group": [
|
|
56580
|
+
"component"
|
|
56581
|
+
],
|
|
56582
|
+
"access": "public",
|
|
56583
|
+
"file": {
|
|
56584
|
+
"path": "core/color-system/_swatch.scss",
|
|
56585
|
+
"name": "_swatch.scss"
|
|
56586
|
+
},
|
|
56587
|
+
"resolvedValue": "null",
|
|
56588
|
+
"resolvedType": "Null"
|
|
56589
|
+
},
|
|
56590
|
+
{
|
|
56591
|
+
"description": "Text color of the invalid items.\n",
|
|
56592
|
+
"commentRange": {
|
|
56593
|
+
"start": 376,
|
|
56594
|
+
"end": 377
|
|
56595
|
+
},
|
|
56596
|
+
"context": {
|
|
56597
|
+
"type": "variable",
|
|
56598
|
+
"name": "kendo-invalid-text",
|
|
56599
|
+
"value": "$kendo-color-error",
|
|
56600
|
+
"scope": "default",
|
|
56601
|
+
"line": {
|
|
56602
|
+
"start": 378,
|
|
56603
|
+
"end": 378
|
|
56604
|
+
}
|
|
56605
|
+
},
|
|
56606
|
+
"group": [
|
|
56607
|
+
"component"
|
|
56608
|
+
],
|
|
56609
|
+
"access": "public",
|
|
56610
|
+
"file": {
|
|
56611
|
+
"path": "core/color-system/_swatch.scss",
|
|
56612
|
+
"name": "_swatch.scss"
|
|
56613
|
+
},
|
|
56614
|
+
"resolvedValue": "#d92800",
|
|
56615
|
+
"resolvedType": "Color"
|
|
56616
|
+
},
|
|
56617
|
+
{
|
|
56618
|
+
"description": "Border color of the invalid items.\n",
|
|
56619
|
+
"commentRange": {
|
|
56620
|
+
"start": 379,
|
|
56621
|
+
"end": 380
|
|
56622
|
+
},
|
|
56623
|
+
"context": {
|
|
56624
|
+
"type": "variable",
|
|
56625
|
+
"name": "kendo-invalid-border",
|
|
56626
|
+
"value": "$kendo-color-error",
|
|
56627
|
+
"scope": "default",
|
|
56628
|
+
"line": {
|
|
56629
|
+
"start": 381,
|
|
56630
|
+
"end": 381
|
|
56631
|
+
}
|
|
56632
|
+
},
|
|
56633
|
+
"group": [
|
|
56634
|
+
"component"
|
|
56635
|
+
],
|
|
56636
|
+
"access": "public",
|
|
56637
|
+
"file": {
|
|
56638
|
+
"path": "core/color-system/_swatch.scss",
|
|
56639
|
+
"name": "_swatch.scss"
|
|
56640
|
+
},
|
|
56641
|
+
"resolvedValue": "#d92800",
|
|
56642
|
+
"resolvedType": "Color"
|
|
56643
|
+
},
|
|
56644
|
+
{
|
|
56645
|
+
"description": "Shadow of the invalid items.\n",
|
|
56646
|
+
"commentRange": {
|
|
56647
|
+
"start": 382,
|
|
56648
|
+
"end": 383
|
|
56649
|
+
},
|
|
56650
|
+
"context": {
|
|
56651
|
+
"type": "variable",
|
|
56652
|
+
"name": "kendo-invalid-shadow",
|
|
56653
|
+
"value": "null",
|
|
56654
|
+
"scope": "default",
|
|
56655
|
+
"line": {
|
|
56656
|
+
"start": 384,
|
|
56657
|
+
"end": 384
|
|
56658
|
+
}
|
|
56659
|
+
},
|
|
56660
|
+
"group": [
|
|
56661
|
+
"component"
|
|
56662
|
+
],
|
|
56663
|
+
"access": "public",
|
|
56664
|
+
"file": {
|
|
56665
|
+
"path": "core/color-system/_swatch.scss",
|
|
56666
|
+
"name": "_swatch.scss"
|
|
56667
|
+
},
|
|
56668
|
+
"resolvedValue": "null",
|
|
56669
|
+
"resolvedType": "Null"
|
|
56670
|
+
},
|
|
56671
|
+
{
|
|
56672
|
+
"description": "Background color of the valid items.\n",
|
|
56673
|
+
"commentRange": {
|
|
56674
|
+
"start": 386,
|
|
56675
|
+
"end": 387
|
|
56676
|
+
},
|
|
56677
|
+
"context": {
|
|
56678
|
+
"type": "variable",
|
|
56679
|
+
"name": "kendo-valid-bg",
|
|
56680
|
+
"value": "null",
|
|
56681
|
+
"scope": "default",
|
|
56682
|
+
"line": {
|
|
56683
|
+
"start": 388,
|
|
56684
|
+
"end": 388
|
|
56685
|
+
}
|
|
56686
|
+
},
|
|
56687
|
+
"group": [
|
|
56688
|
+
"component"
|
|
56689
|
+
],
|
|
56690
|
+
"access": "public",
|
|
56691
|
+
"file": {
|
|
56692
|
+
"path": "core/color-system/_swatch.scss",
|
|
56693
|
+
"name": "_swatch.scss"
|
|
56694
|
+
},
|
|
56695
|
+
"resolvedValue": "null",
|
|
56696
|
+
"resolvedType": "Null"
|
|
56697
|
+
},
|
|
56698
|
+
{
|
|
56699
|
+
"description": "Text color of the valid items.\n",
|
|
56700
|
+
"commentRange": {
|
|
56701
|
+
"start": 389,
|
|
56702
|
+
"end": 390
|
|
56703
|
+
},
|
|
56704
|
+
"context": {
|
|
56705
|
+
"type": "variable",
|
|
56706
|
+
"name": "kendo-valid-text",
|
|
56707
|
+
"value": "$kendo-color-success",
|
|
56708
|
+
"scope": "default",
|
|
56709
|
+
"line": {
|
|
56710
|
+
"start": 391,
|
|
56711
|
+
"end": 391
|
|
56712
|
+
}
|
|
56713
|
+
},
|
|
56714
|
+
"group": [
|
|
56715
|
+
"component"
|
|
56716
|
+
],
|
|
56717
|
+
"access": "public",
|
|
56718
|
+
"file": {
|
|
56719
|
+
"path": "core/color-system/_swatch.scss",
|
|
56720
|
+
"name": "_swatch.scss"
|
|
56721
|
+
},
|
|
56722
|
+
"resolvedValue": "#3ea44e",
|
|
56723
|
+
"resolvedType": "Color"
|
|
56724
|
+
},
|
|
56725
|
+
{
|
|
56726
|
+
"description": "Border color of the valid items.\n",
|
|
56727
|
+
"commentRange": {
|
|
56728
|
+
"start": 392,
|
|
56729
|
+
"end": 393
|
|
56730
|
+
},
|
|
56731
|
+
"context": {
|
|
56732
|
+
"type": "variable",
|
|
56733
|
+
"name": "kendo-valid-border",
|
|
56734
|
+
"value": "$kendo-color-success",
|
|
56735
|
+
"scope": "default",
|
|
56736
|
+
"line": {
|
|
56737
|
+
"start": 394,
|
|
56738
|
+
"end": 394
|
|
56739
|
+
}
|
|
56740
|
+
},
|
|
56741
|
+
"group": [
|
|
56742
|
+
"component"
|
|
56743
|
+
],
|
|
56744
|
+
"access": "public",
|
|
56745
|
+
"file": {
|
|
56746
|
+
"path": "core/color-system/_swatch.scss",
|
|
56747
|
+
"name": "_swatch.scss"
|
|
56748
|
+
},
|
|
56749
|
+
"resolvedValue": "#3ea44e",
|
|
56750
|
+
"resolvedType": "Color"
|
|
56751
|
+
},
|
|
56752
|
+
{
|
|
56753
|
+
"description": "Shadow of the valid items.\n",
|
|
56754
|
+
"commentRange": {
|
|
56755
|
+
"start": 395,
|
|
56756
|
+
"end": 396
|
|
56757
|
+
},
|
|
56758
|
+
"context": {
|
|
56759
|
+
"type": "variable",
|
|
56760
|
+
"name": "kendo-valid-shadow",
|
|
56761
|
+
"value": "null",
|
|
56762
|
+
"scope": "default",
|
|
56763
|
+
"line": {
|
|
56764
|
+
"start": 397,
|
|
56765
|
+
"end": 397
|
|
56766
|
+
}
|
|
56767
|
+
},
|
|
56768
|
+
"group": [
|
|
56769
|
+
"component"
|
|
56770
|
+
],
|
|
56771
|
+
"access": "public",
|
|
56772
|
+
"file": {
|
|
56773
|
+
"path": "core/color-system/_swatch.scss",
|
|
56774
|
+
"name": "_swatch.scss"
|
|
56775
|
+
},
|
|
56776
|
+
"resolvedValue": "null",
|
|
56777
|
+
"resolvedType": "Null"
|
|
55648
56778
|
}
|
|
55649
56779
|
]
|
|
55650
56780
|
},
|
|
@@ -56774,7 +57904,7 @@
|
|
|
56774
57904
|
"context": {
|
|
56775
57905
|
"type": "variable",
|
|
56776
57906
|
"name": "kendo-dock-manager-dock-preview-bg",
|
|
56777
|
-
"value": "rgba( $kendo-color-primary, .16 )",
|
|
57907
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 ))",
|
|
56778
57908
|
"scope": "default",
|
|
56779
57909
|
"line": {
|
|
56780
57910
|
"start": 110,
|
|
@@ -57191,7 +58321,7 @@
|
|
|
57191
58321
|
"context": {
|
|
57192
58322
|
"type": "variable",
|
|
57193
58323
|
"name": "kendo-dropzone-icon-text",
|
|
57194
|
-
"value": "k-try-tint( $kendo-dropzone-text, 4 )",
|
|
58324
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 ))",
|
|
57195
58325
|
"scope": "default",
|
|
57196
58326
|
"line": {
|
|
57197
58327
|
"start": 41,
|
|
@@ -57629,7 +58759,7 @@
|
|
|
57629
58759
|
"context": {
|
|
57630
58760
|
"type": "variable",
|
|
57631
58761
|
"name": "kendo-editor-highlighted-bg",
|
|
57632
|
-
"value": "k-color-mix( $kendo-color-primary, #ffffff, 20% )",
|
|
58762
|
+
"value": "if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% ))",
|
|
57633
58763
|
"scope": "default",
|
|
57634
58764
|
"line": {
|
|
57635
58765
|
"start": 32,
|
|
@@ -58223,17 +59353,17 @@
|
|
|
58223
59353
|
{
|
|
58224
59354
|
"description": "The background color of the hovered ExpansionPanel header.\n",
|
|
58225
59355
|
"commentRange": {
|
|
58226
|
-
"start":
|
|
58227
|
-
"end":
|
|
59356
|
+
"start": 50,
|
|
59357
|
+
"end": 51
|
|
58228
59358
|
},
|
|
58229
59359
|
"context": {
|
|
58230
59360
|
"type": "variable",
|
|
58231
59361
|
"name": "kendo-expander-header-hover-bg",
|
|
58232
|
-
"value": "k-color-shade( $kendo-expander-bg, 1 )",
|
|
59362
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 ))",
|
|
58233
59363
|
"scope": "default",
|
|
58234
59364
|
"line": {
|
|
58235
|
-
"start":
|
|
58236
|
-
"end":
|
|
59365
|
+
"start": 52,
|
|
59366
|
+
"end": 52
|
|
58237
59367
|
}
|
|
58238
59368
|
},
|
|
58239
59369
|
"group": [
|
|
@@ -58250,8 +59380,8 @@
|
|
|
58250
59380
|
{
|
|
58251
59381
|
"description": "The background color of the focused ExpansionPanel header.\n",
|
|
58252
59382
|
"commentRange": {
|
|
58253
|
-
"start":
|
|
58254
|
-
"end":
|
|
59383
|
+
"start": 53,
|
|
59384
|
+
"end": 54
|
|
58255
59385
|
},
|
|
58256
59386
|
"context": {
|
|
58257
59387
|
"type": "variable",
|
|
@@ -58259,8 +59389,8 @@
|
|
|
58259
59389
|
"value": "null",
|
|
58260
59390
|
"scope": "default",
|
|
58261
59391
|
"line": {
|
|
58262
|
-
"start":
|
|
58263
|
-
"end":
|
|
59392
|
+
"start": 55,
|
|
59393
|
+
"end": 55
|
|
58264
59394
|
}
|
|
58265
59395
|
},
|
|
58266
59396
|
"group": [
|
|
@@ -58277,8 +59407,8 @@
|
|
|
58277
59407
|
{
|
|
58278
59408
|
"description": "The box shadow of the focused ExpansionPanel header.\n",
|
|
58279
59409
|
"commentRange": {
|
|
58280
|
-
"start":
|
|
58281
|
-
"end":
|
|
59410
|
+
"start": 56,
|
|
59411
|
+
"end": 57
|
|
58282
59412
|
},
|
|
58283
59413
|
"context": {
|
|
58284
59414
|
"type": "variable",
|
|
@@ -58286,8 +59416,8 @@
|
|
|
58286
59416
|
"value": "$kendo-list-item-focus-shadow",
|
|
58287
59417
|
"scope": "default",
|
|
58288
59418
|
"line": {
|
|
58289
|
-
"start":
|
|
58290
|
-
"end":
|
|
59419
|
+
"start": 58,
|
|
59420
|
+
"end": 58
|
|
58291
59421
|
}
|
|
58292
59422
|
},
|
|
58293
59423
|
"group": [
|
|
@@ -58304,8 +59434,8 @@
|
|
|
58304
59434
|
{
|
|
58305
59435
|
"description": "The text color of the ExpansionPanel title.\n",
|
|
58306
59436
|
"commentRange": {
|
|
58307
|
-
"start":
|
|
58308
|
-
"end":
|
|
59437
|
+
"start": 60,
|
|
59438
|
+
"end": 61
|
|
58309
59439
|
},
|
|
58310
59440
|
"context": {
|
|
58311
59441
|
"type": "variable",
|
|
@@ -58313,8 +59443,8 @@
|
|
|
58313
59443
|
"value": "$kendo-color-primary",
|
|
58314
59444
|
"scope": "default",
|
|
58315
59445
|
"line": {
|
|
58316
|
-
"start":
|
|
58317
|
-
"end":
|
|
59446
|
+
"start": 62,
|
|
59447
|
+
"end": 62
|
|
58318
59448
|
}
|
|
58319
59449
|
},
|
|
58320
59450
|
"group": [
|
|
@@ -58331,8 +59461,8 @@
|
|
|
58331
59461
|
{
|
|
58332
59462
|
"description": "The text color of the ExpansionPanel sub-title.\n",
|
|
58333
59463
|
"commentRange": {
|
|
58334
|
-
"start":
|
|
58335
|
-
"end":
|
|
59464
|
+
"start": 64,
|
|
59465
|
+
"end": 65
|
|
58336
59466
|
},
|
|
58337
59467
|
"context": {
|
|
58338
59468
|
"type": "variable",
|
|
@@ -58340,8 +59470,8 @@
|
|
|
58340
59470
|
"value": "$kendo-subtle-text",
|
|
58341
59471
|
"scope": "default",
|
|
58342
59472
|
"line": {
|
|
58343
|
-
"start":
|
|
58344
|
-
"end":
|
|
59473
|
+
"start": 66,
|
|
59474
|
+
"end": 66
|
|
58345
59475
|
}
|
|
58346
59476
|
},
|
|
58347
59477
|
"group": [
|
|
@@ -58358,8 +59488,8 @@
|
|
|
58358
59488
|
{
|
|
58359
59489
|
"description": "The horizontal margin of the ExpansionPanel indicator.\n",
|
|
58360
59490
|
"commentRange": {
|
|
58361
|
-
"start":
|
|
58362
|
-
"end":
|
|
59491
|
+
"start": 68,
|
|
59492
|
+
"end": 69
|
|
58363
59493
|
},
|
|
58364
59494
|
"context": {
|
|
58365
59495
|
"type": "variable",
|
|
@@ -58367,8 +59497,8 @@
|
|
|
58367
59497
|
"value": "k-map-get( $kendo-spacing, 3 )",
|
|
58368
59498
|
"scope": "default",
|
|
58369
59499
|
"line": {
|
|
58370
|
-
"start":
|
|
58371
|
-
"end":
|
|
59500
|
+
"start": 70,
|
|
59501
|
+
"end": 70
|
|
58372
59502
|
}
|
|
58373
59503
|
},
|
|
58374
59504
|
"group": [
|
|
@@ -58385,8 +59515,8 @@
|
|
|
58385
59515
|
{
|
|
58386
59516
|
"description": "The horizontal padding of the ExpansionPanel content.\n",
|
|
58387
59517
|
"commentRange": {
|
|
58388
|
-
"start":
|
|
58389
|
-
"end":
|
|
59518
|
+
"start": 72,
|
|
59519
|
+
"end": 73
|
|
58390
59520
|
},
|
|
58391
59521
|
"context": {
|
|
58392
59522
|
"type": "variable",
|
|
@@ -58394,8 +59524,8 @@
|
|
|
58394
59524
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
58395
59525
|
"scope": "default",
|
|
58396
59526
|
"line": {
|
|
58397
|
-
"start":
|
|
58398
|
-
"end":
|
|
59527
|
+
"start": 74,
|
|
59528
|
+
"end": 74
|
|
58399
59529
|
}
|
|
58400
59530
|
},
|
|
58401
59531
|
"group": [
|
|
@@ -58412,8 +59542,8 @@
|
|
|
58412
59542
|
{
|
|
58413
59543
|
"description": "The vertical padding of the ExpansionPanel content.\n",
|
|
58414
59544
|
"commentRange": {
|
|
58415
|
-
"start":
|
|
58416
|
-
"end":
|
|
59545
|
+
"start": 75,
|
|
59546
|
+
"end": 76
|
|
58417
59547
|
},
|
|
58418
59548
|
"context": {
|
|
58419
59549
|
"type": "variable",
|
|
@@ -58421,8 +59551,8 @@
|
|
|
58421
59551
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
58422
59552
|
"scope": "default",
|
|
58423
59553
|
"line": {
|
|
58424
|
-
"start":
|
|
58425
|
-
"end":
|
|
59554
|
+
"start": 77,
|
|
59555
|
+
"end": 77
|
|
58426
59556
|
}
|
|
58427
59557
|
},
|
|
58428
59558
|
"group": [
|
|
@@ -59450,7 +60580,7 @@
|
|
|
59450
60580
|
"context": {
|
|
59451
60581
|
"type": "variable",
|
|
59452
60582
|
"name": "kendo-file-manager-listview-item-icon-text",
|
|
59453
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
60583
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
59454
60584
|
"scope": "default",
|
|
59455
60585
|
"line": {
|
|
59456
60586
|
"start": 122,
|
|
@@ -59936,7 +61066,7 @@
|
|
|
59936
61066
|
"context": {
|
|
59937
61067
|
"type": "variable",
|
|
59938
61068
|
"name": "kendo-file-manager-preview-icon-text",
|
|
59939
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
61069
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
59940
61070
|
"scope": "default",
|
|
59941
61071
|
"line": {
|
|
59942
61072
|
"start": 179,
|
|
@@ -63011,7 +64141,7 @@
|
|
|
63011
64141
|
"context": {
|
|
63012
64142
|
"type": "variable",
|
|
63013
64143
|
"name": "kendo-fieldset-legend-text",
|
|
63014
|
-
"value": "k-try-shade( $kendo-body-text, 2 )",
|
|
64144
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 ))",
|
|
63015
64145
|
"scope": "default",
|
|
63016
64146
|
"line": {
|
|
63017
64147
|
"start": 154,
|
|
@@ -64172,17 +65302,17 @@
|
|
|
64172
65302
|
{
|
|
64173
65303
|
"description": "Background color of the grid row resize indicator\n",
|
|
64174
65304
|
"commentRange": {
|
|
64175
|
-
"start":
|
|
64176
|
-
"end":
|
|
65305
|
+
"start": 315,
|
|
65306
|
+
"end": 316
|
|
64177
65307
|
},
|
|
64178
65308
|
"context": {
|
|
64179
65309
|
"type": "variable",
|
|
64180
65310
|
"name": "kendo-grid-row-resizer-hover-bg",
|
|
64181
|
-
"value": "rgba( k-contrast-color( $kendo-grid-bg ), .12 )",
|
|
65311
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 ))",
|
|
64182
65312
|
"scope": "default",
|
|
64183
65313
|
"line": {
|
|
64184
|
-
"start":
|
|
64185
|
-
"end":
|
|
65314
|
+
"start": 317,
|
|
65315
|
+
"end": 317
|
|
64186
65316
|
}
|
|
64187
65317
|
},
|
|
64188
65318
|
"group": [
|
|
@@ -64199,8 +65329,8 @@
|
|
|
64199
65329
|
{
|
|
64200
65330
|
"description": "Active background color of the grid row resize indicator\n",
|
|
64201
65331
|
"commentRange": {
|
|
64202
|
-
"start":
|
|
64203
|
-
"end":
|
|
65332
|
+
"start": 318,
|
|
65333
|
+
"end": 319
|
|
64204
65334
|
},
|
|
64205
65335
|
"context": {
|
|
64206
65336
|
"type": "variable",
|
|
@@ -64208,8 +65338,8 @@
|
|
|
64208
65338
|
"value": "$kendo-color-primary",
|
|
64209
65339
|
"scope": "default",
|
|
64210
65340
|
"line": {
|
|
64211
|
-
"start":
|
|
64212
|
-
"end":
|
|
65341
|
+
"start": 320,
|
|
65342
|
+
"end": 320
|
|
64213
65343
|
}
|
|
64214
65344
|
},
|
|
64215
65345
|
"group": [
|
|
@@ -64226,8 +65356,8 @@
|
|
|
64226
65356
|
{
|
|
64227
65357
|
"description": "Height of the grid row resize indicator\n",
|
|
64228
65358
|
"commentRange": {
|
|
64229
|
-
"start":
|
|
64230
|
-
"end":
|
|
65359
|
+
"start": 321,
|
|
65360
|
+
"end": 322
|
|
64231
65361
|
},
|
|
64232
65362
|
"context": {
|
|
64233
65363
|
"type": "variable",
|
|
@@ -64235,8 +65365,8 @@
|
|
|
64235
65365
|
"value": "k-map-get( $kendo-spacing, .5 )",
|
|
64236
65366
|
"scope": "default",
|
|
64237
65367
|
"line": {
|
|
64238
|
-
"start":
|
|
64239
|
-
"end":
|
|
65368
|
+
"start": 323,
|
|
65369
|
+
"end": 323
|
|
64240
65370
|
}
|
|
64241
65371
|
},
|
|
64242
65372
|
"group": [
|
|
@@ -65399,7 +66529,7 @@
|
|
|
65399
66529
|
"context": {
|
|
65400
66530
|
"type": "variable",
|
|
65401
66531
|
"name": "kendo-input-outline-border",
|
|
65402
|
-
"value": "rgba( $kendo-button-text, .5)",
|
|
66532
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5))",
|
|
65403
66533
|
"scope": "default",
|
|
65404
66534
|
"line": {
|
|
65405
66535
|
"start": 171,
|
|
@@ -65480,7 +66610,7 @@
|
|
|
65480
66610
|
"context": {
|
|
65481
66611
|
"type": "variable",
|
|
65482
66612
|
"name": "kendo-input-outline-hover-border",
|
|
65483
|
-
"value": "rgba( $kendo-button-text, .8)",
|
|
66613
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8))",
|
|
65484
66614
|
"scope": "default",
|
|
65485
66615
|
"line": {
|
|
65486
66616
|
"start": 181,
|
|
@@ -68306,7 +69436,7 @@
|
|
|
68306
69436
|
"context": {
|
|
68307
69437
|
"type": "variable",
|
|
68308
69438
|
"name": "kendo-listview-item-selected-bg",
|
|
68309
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
69439
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
68310
69440
|
"scope": "default",
|
|
68311
69441
|
"line": {
|
|
68312
69442
|
"start": 44,
|
|
@@ -73403,7 +74533,7 @@
|
|
|
73403
74533
|
"context": {
|
|
73404
74534
|
"type": "variable",
|
|
73405
74535
|
"name": "kendo-picker-outline-border",
|
|
73406
|
-
"value": "rgba( $kendo-picker-outline-text, .5)",
|
|
74536
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5))",
|
|
73407
74537
|
"scope": "default",
|
|
73408
74538
|
"line": {
|
|
73409
74539
|
"start": 372,
|
|
@@ -73457,7 +74587,7 @@
|
|
|
73457
74587
|
"context": {
|
|
73458
74588
|
"type": "variable",
|
|
73459
74589
|
"name": "kendo-picker-outline-hover-text",
|
|
73460
|
-
"value": "k-contrast-color( $kendo-picker-outline-hover-bg )",
|
|
74590
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg ))",
|
|
73461
74591
|
"scope": "default",
|
|
73462
74592
|
"line": {
|
|
73463
74593
|
"start": 379,
|
|
@@ -73781,7 +74911,7 @@
|
|
|
73781
74911
|
"context": {
|
|
73782
74912
|
"type": "variable",
|
|
73783
74913
|
"name": "kendo-picker-flat-hover-bg",
|
|
73784
|
-
"value": "rgba( $kendo-button-text, .04 )",
|
|
74914
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 ))",
|
|
73785
74915
|
"scope": "default",
|
|
73786
74916
|
"line": {
|
|
73787
74917
|
"start": 419,
|
|
@@ -73835,7 +74965,7 @@
|
|
|
73835
74965
|
"context": {
|
|
73836
74966
|
"type": "variable",
|
|
73837
74967
|
"name": "kendo-picker-flat-hover-border",
|
|
73838
|
-
"value": "rgba( $kendo-button-border, .16 )",
|
|
74968
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 ))",
|
|
73839
74969
|
"scope": "default",
|
|
73840
74970
|
"line": {
|
|
73841
74971
|
"start": 425,
|
|
@@ -75284,7 +76414,7 @@
|
|
|
75284
76414
|
"context": {
|
|
75285
76415
|
"type": "variable",
|
|
75286
76416
|
"name": "kendo-progressbar-bg",
|
|
75287
|
-
"value": "k-try-shade( $kendo-component-bg, 1 )",
|
|
76417
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 ))",
|
|
75288
76418
|
"scope": "default",
|
|
75289
76419
|
"line": {
|
|
75290
76420
|
"start": 27,
|
|
@@ -75419,7 +76549,7 @@
|
|
|
75419
76549
|
"context": {
|
|
75420
76550
|
"type": "variable",
|
|
75421
76551
|
"name": "kendo-progressbar-value-text",
|
|
75422
|
-
"value": "k-contrast-legacy( $kendo-progressbar-value-bg )",
|
|
76552
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg ))",
|
|
75423
76553
|
"scope": "default",
|
|
75424
76554
|
"line": {
|
|
75425
76555
|
"start": 43,
|
|
@@ -75446,7 +76576,7 @@
|
|
|
75446
76576
|
"context": {
|
|
75447
76577
|
"type": "variable",
|
|
75448
76578
|
"name": "kendo-progressbar-value-border",
|
|
75449
|
-
"value": "k-try-shade( $kendo-progressbar-value-bg )",
|
|
76579
|
+
"value": "if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg ))",
|
|
75450
76580
|
"scope": "default",
|
|
75451
76581
|
"line": {
|
|
75452
76582
|
"start": 46,
|
|
@@ -78170,7 +79300,7 @@
|
|
|
78170
79300
|
"context": {
|
|
78171
79301
|
"type": "variable",
|
|
78172
79302
|
"name": "kendo-scrollview-pagebutton-primary-border",
|
|
78173
|
-
"value": "k-try-shade( $kendo-color-primary, 2 )",
|
|
79303
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 ))",
|
|
78174
79304
|
"scope": "default",
|
|
78175
79305
|
"line": {
|
|
78176
79306
|
"start": 40,
|
|
@@ -78743,7 +79873,7 @@
|
|
|
78743
79873
|
"context": {
|
|
78744
79874
|
"type": "variable",
|
|
78745
79875
|
"name": "kendo-skeleton-item-bg",
|
|
78746
|
-
"value": "rgba( $kendo-color-inverse, .2 )",
|
|
79876
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 ))",
|
|
78747
79877
|
"scope": "default",
|
|
78748
79878
|
"line": {
|
|
78749
79879
|
"start": 20,
|
|
@@ -79538,7 +80668,7 @@
|
|
|
79538
80668
|
"context": {
|
|
79539
80669
|
"type": "variable",
|
|
79540
80670
|
"name": "kendo-switch-off-track-focus-ring",
|
|
79541
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
80671
|
+
"value": "0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 )",
|
|
79542
80672
|
"scope": "default",
|
|
79543
80673
|
"line": {
|
|
79544
80674
|
"start": 71,
|
|
@@ -79673,7 +80803,7 @@
|
|
|
79673
80803
|
"context": {
|
|
79674
80804
|
"type": "variable",
|
|
79675
80805
|
"name": "kendo-switch-off-thumb-bg",
|
|
79676
|
-
"value": "k-try-shade( $kendo-switch-off-track-bg )",
|
|
80806
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg ))",
|
|
79677
80807
|
"scope": "default",
|
|
79678
80808
|
"line": {
|
|
79679
80809
|
"start": 88,
|
|
@@ -79781,7 +80911,7 @@
|
|
|
79781
80911
|
"context": {
|
|
79782
80912
|
"type": "variable",
|
|
79783
80913
|
"name": "kendo-switch-off-thumb-hover-bg",
|
|
79784
|
-
"value": "k-try-shade( $kendo-switch-off-thumb-bg )",
|
|
80914
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg ))",
|
|
79785
80915
|
"scope": "default",
|
|
79786
80916
|
"line": {
|
|
79787
80917
|
"start": 101,
|
|
@@ -80213,7 +81343,7 @@
|
|
|
80213
81343
|
"context": {
|
|
80214
81344
|
"type": "variable",
|
|
80215
81345
|
"name": "kendo-switch-on-track-focus-ring",
|
|
80216
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
81346
|
+
"value": "0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 )",
|
|
80217
81347
|
"scope": "default",
|
|
80218
81348
|
"line": {
|
|
80219
81349
|
"start": 153,
|
|
@@ -80402,7 +81532,7 @@
|
|
|
80402
81532
|
"context": {
|
|
80403
81533
|
"type": "variable",
|
|
80404
81534
|
"name": "kendo-switch-on-thumb-border",
|
|
80405
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
81535
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
80406
81536
|
"scope": "default",
|
|
80407
81537
|
"line": {
|
|
80408
81538
|
"start": 176,
|
|
@@ -80456,7 +81586,7 @@
|
|
|
80456
81586
|
"context": {
|
|
80457
81587
|
"type": "variable",
|
|
80458
81588
|
"name": "kendo-switch-on-thumb-hover-bg",
|
|
80459
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
81589
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
80460
81590
|
"scope": "default",
|
|
80461
81591
|
"line": {
|
|
80462
81592
|
"start": 183,
|
|
@@ -80510,7 +81640,7 @@
|
|
|
80510
81640
|
"context": {
|
|
80511
81641
|
"type": "variable",
|
|
80512
81642
|
"name": "kendo-switch-on-thumb-hover-border",
|
|
80513
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-hover-bg )",
|
|
81643
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg ))",
|
|
80514
81644
|
"scope": "default",
|
|
80515
81645
|
"line": {
|
|
80516
81646
|
"start": 189,
|
|
@@ -81137,7 +82267,7 @@
|
|
|
81137
82267
|
"context": {
|
|
81138
82268
|
"type": "variable",
|
|
81139
82269
|
"name": "kendo-table-alt-row-bg",
|
|
81140
|
-
"value": "k-try-shade( $kendo-table-bg, .5 )",
|
|
82270
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 ))",
|
|
81141
82271
|
"scope": "default",
|
|
81142
82272
|
"line": {
|
|
81143
82273
|
"start": 114,
|
|
@@ -81218,7 +82348,7 @@
|
|
|
81218
82348
|
"context": {
|
|
81219
82349
|
"type": "variable",
|
|
81220
82350
|
"name": "kendo-table-hover-bg",
|
|
81221
|
-
"value": "k-try-shade( $kendo-table-bg, 1 )",
|
|
82351
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 ))",
|
|
81222
82352
|
"scope": "default",
|
|
81223
82353
|
"line": {
|
|
81224
82354
|
"start": 125,
|
|
@@ -81407,7 +82537,7 @@
|
|
|
81407
82537
|
"context": {
|
|
81408
82538
|
"type": "variable",
|
|
81409
82539
|
"name": "kendo-table-selected-bg",
|
|
81410
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
82540
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
81411
82541
|
"scope": "default",
|
|
81412
82542
|
"line": {
|
|
81413
82543
|
"start": 150,
|
|
@@ -83510,7 +84640,7 @@
|
|
|
83510
84640
|
"context": {
|
|
83511
84641
|
"type": "variable",
|
|
83512
84642
|
"name": "kendo-tooltip-bg",
|
|
83513
|
-
"value": "rgba( k-contrast-color( $kendo-body-bg ), .75 )",
|
|
84643
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 ))",
|
|
83514
84644
|
"scope": "default",
|
|
83515
84645
|
"line": {
|
|
83516
84646
|
"start": 39,
|
|
@@ -83537,7 +84667,7 @@
|
|
|
83537
84667
|
"context": {
|
|
83538
84668
|
"type": "variable",
|
|
83539
84669
|
"name": "kendo-tooltip-text",
|
|
83540
|
-
"value": "k-contrast-color( $kendo-tooltip-bg )",
|
|
84670
|
+
"value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg ))",
|
|
83541
84671
|
"scope": "default",
|
|
83542
84672
|
"line": {
|
|
83543
84673
|
"start": 42,
|
|
@@ -85001,8 +86131,8 @@
|
|
|
85001
86131
|
{
|
|
85002
86132
|
"description": "Base font size across all components.\n",
|
|
85003
86133
|
"commentRange": {
|
|
85004
|
-
"start":
|
|
85005
|
-
"end":
|
|
86134
|
+
"start": 109,
|
|
86135
|
+
"end": 110
|
|
85006
86136
|
},
|
|
85007
86137
|
"context": {
|
|
85008
86138
|
"type": "variable",
|
|
@@ -85010,8 +86140,8 @@
|
|
|
85010
86140
|
"value": "14px",
|
|
85011
86141
|
"scope": "default",
|
|
85012
86142
|
"line": {
|
|
85013
|
-
"start":
|
|
85014
|
-
"end":
|
|
86143
|
+
"start": 111,
|
|
86144
|
+
"end": 111
|
|
85015
86145
|
}
|
|
85016
86146
|
},
|
|
85017
86147
|
"group": [
|
|
@@ -85028,8 +86158,8 @@
|
|
|
85028
86158
|
{
|
|
85029
86159
|
"description": "Font family for text.\n",
|
|
85030
86160
|
"commentRange": {
|
|
85031
|
-
"start":
|
|
85032
|
-
"end":
|
|
86161
|
+
"start": 126,
|
|
86162
|
+
"end": 127
|
|
85033
86163
|
},
|
|
85034
86164
|
"context": {
|
|
85035
86165
|
"type": "variable",
|
|
@@ -85037,8 +86167,8 @@
|
|
|
85037
86167
|
"value": "system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"",
|
|
85038
86168
|
"scope": "default",
|
|
85039
86169
|
"line": {
|
|
85040
|
-
"start":
|
|
85041
|
-
"end":
|
|
86170
|
+
"start": 128,
|
|
86171
|
+
"end": 128
|
|
85042
86172
|
}
|
|
85043
86173
|
},
|
|
85044
86174
|
"group": [
|
|
@@ -85055,8 +86185,8 @@
|
|
|
85055
86185
|
{
|
|
85056
86186
|
"description": "Font family for monospaced text. Used for styling the code.\n",
|
|
85057
86187
|
"commentRange": {
|
|
85058
|
-
"start":
|
|
85059
|
-
"end":
|
|
86188
|
+
"start": 130,
|
|
86189
|
+
"end": 131
|
|
85060
86190
|
},
|
|
85061
86191
|
"context": {
|
|
85062
86192
|
"type": "variable",
|
|
@@ -85064,8 +86194,8 @@
|
|
|
85064
86194
|
"value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
|
|
85065
86195
|
"scope": "default",
|
|
85066
86196
|
"line": {
|
|
85067
|
-
"start":
|
|
85068
|
-
"end":
|
|
86197
|
+
"start": 132,
|
|
86198
|
+
"end": 132
|
|
85069
86199
|
}
|
|
85070
86200
|
},
|
|
85071
86201
|
"group": [
|
|
@@ -85082,8 +86212,8 @@
|
|
|
85082
86212
|
{
|
|
85083
86213
|
"description": "Font family across all components.\n",
|
|
85084
86214
|
"commentRange": {
|
|
85085
|
-
"start":
|
|
85086
|
-
"end":
|
|
86215
|
+
"start": 134,
|
|
86216
|
+
"end": 135
|
|
85087
86217
|
},
|
|
85088
86218
|
"context": {
|
|
85089
86219
|
"type": "variable",
|
|
@@ -85091,8 +86221,8 @@
|
|
|
85091
86221
|
"value": "inherit",
|
|
85092
86222
|
"scope": "default",
|
|
85093
86223
|
"line": {
|
|
85094
|
-
"start":
|
|
85095
|
-
"end":
|
|
86224
|
+
"start": 136,
|
|
86225
|
+
"end": 136
|
|
85096
86226
|
}
|
|
85097
86227
|
},
|
|
85098
86228
|
"group": [
|
|
@@ -85109,8 +86239,8 @@
|
|
|
85109
86239
|
{
|
|
85110
86240
|
"description": "Line height used along with $kendo-font-size.\n",
|
|
85111
86241
|
"commentRange": {
|
|
85112
|
-
"start":
|
|
85113
|
-
"end":
|
|
86242
|
+
"start": 138,
|
|
86243
|
+
"end": 139
|
|
85114
86244
|
},
|
|
85115
86245
|
"context": {
|
|
85116
86246
|
"type": "variable",
|
|
@@ -85118,8 +86248,8 @@
|
|
|
85118
86248
|
"value": "k-math-div( 20, 14 )",
|
|
85119
86249
|
"scope": "default",
|
|
85120
86250
|
"line": {
|
|
85121
|
-
"start":
|
|
85122
|
-
"end":
|
|
86251
|
+
"start": 140,
|
|
86252
|
+
"end": 140
|
|
85123
86253
|
}
|
|
85124
86254
|
},
|
|
85125
86255
|
"group": [
|