@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
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
"context": {
|
|
284
284
|
"type": "variable",
|
|
285
285
|
"name": "kendo-appbar-light-text",
|
|
286
|
-
"value": "k-contrast-color( $kendo-color-light )",
|
|
286
|
+
"value": "if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light ))",
|
|
287
287
|
"scope": "default",
|
|
288
288
|
"line": {
|
|
289
289
|
"start": 40,
|
|
@@ -333,7 +333,7 @@
|
|
|
333
333
|
"context": {
|
|
334
334
|
"type": "variable",
|
|
335
335
|
"name": "kendo-appbar-dark-text",
|
|
336
|
-
"value": "k-contrast-color( $kendo-color-dark )",
|
|
336
|
+
"value": "if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark ))",
|
|
337
337
|
"scope": "default",
|
|
338
338
|
"line": {
|
|
339
339
|
"start": 47,
|
|
@@ -3758,7 +3758,7 @@
|
|
|
3758
3758
|
"context": {
|
|
3759
3759
|
"type": "variable",
|
|
3760
3760
|
"name": "kendo-button-border",
|
|
3761
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
3761
|
+
"value": "if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
3762
3762
|
"scope": "default",
|
|
3763
3763
|
"line": {
|
|
3764
3764
|
"start": 119,
|
|
@@ -3833,7 +3833,7 @@
|
|
|
3833
3833
|
"context": {
|
|
3834
3834
|
"type": "variable",
|
|
3835
3835
|
"name": "kendo-button-hover-bg",
|
|
3836
|
-
"value": "k-try-shade( $kendo-button-bg, 1 )",
|
|
3836
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 ))",
|
|
3837
3837
|
"scope": "default",
|
|
3838
3838
|
"line": {
|
|
3839
3839
|
"start": 129,
|
|
@@ -3883,7 +3883,7 @@
|
|
|
3883
3883
|
"context": {
|
|
3884
3884
|
"type": "variable",
|
|
3885
3885
|
"name": "kendo-button-hover-border",
|
|
3886
|
-
"value": "k-try-shade( $kendo-button-bg, 3 )",
|
|
3886
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 ))",
|
|
3887
3887
|
"scope": "default",
|
|
3888
3888
|
"line": {
|
|
3889
3889
|
"start": 135,
|
|
@@ -3958,7 +3958,7 @@
|
|
|
3958
3958
|
"context": {
|
|
3959
3959
|
"type": "variable",
|
|
3960
3960
|
"name": "kendo-button-active-bg",
|
|
3961
|
-
"value": "k-try-shade( $kendo-button-bg, 2 )",
|
|
3961
|
+
"value": "if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 ))",
|
|
3962
3962
|
"scope": "default",
|
|
3963
3963
|
"line": {
|
|
3964
3964
|
"start": 145,
|
|
@@ -4008,7 +4008,7 @@
|
|
|
4008
4008
|
"context": {
|
|
4009
4009
|
"type": "variable",
|
|
4010
4010
|
"name": "kendo-button-active-border",
|
|
4011
|
-
"value": "k-try-shade( $kendo-button-bg, 4 )",
|
|
4011
|
+
"value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 ))",
|
|
4012
4012
|
"scope": "default",
|
|
4013
4013
|
"line": {
|
|
4014
4014
|
"start": 151,
|
|
@@ -4108,7 +4108,7 @@
|
|
|
4108
4108
|
"context": {
|
|
4109
4109
|
"type": "variable",
|
|
4110
4110
|
"name": "kendo-button-selected-text",
|
|
4111
|
-
"value": "k-contrast-legacy( $kendo-button-selected-bg )",
|
|
4111
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg ))",
|
|
4112
4112
|
"scope": "default",
|
|
4113
4113
|
"line": {
|
|
4114
4114
|
"start": 164,
|
|
@@ -4308,7 +4308,7 @@
|
|
|
4308
4308
|
"context": {
|
|
4309
4309
|
"type": "variable",
|
|
4310
4310
|
"name": "kendo-button-focus-shadow",
|
|
4311
|
-
"value": "0 0 4px 0 rgba( $kendo-button-border, .75 )",
|
|
4311
|
+
"value": "0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 ))",
|
|
4312
4312
|
"scope": "default",
|
|
4313
4313
|
"line": {
|
|
4314
4314
|
"start": 189,
|
|
@@ -6333,7 +6333,7 @@
|
|
|
6333
6333
|
"context": {
|
|
6334
6334
|
"type": "variable",
|
|
6335
6335
|
"name": "kendo-series-a",
|
|
6336
|
-
"value": "#ff6358",
|
|
6336
|
+
"value": "if($kendo-enable-color-system, k-color( series-a ), #ff6358)",
|
|
6337
6337
|
"scope": "default",
|
|
6338
6338
|
"line": {
|
|
6339
6339
|
"start": 8,
|
|
@@ -6358,7 +6358,7 @@
|
|
|
6358
6358
|
"context": {
|
|
6359
6359
|
"type": "variable",
|
|
6360
6360
|
"name": "kendo-series-b",
|
|
6361
|
-
"value": "#ffd246",
|
|
6361
|
+
"value": "if($kendo-enable-color-system, k-color( series-b ), #ffd246)",
|
|
6362
6362
|
"scope": "default",
|
|
6363
6363
|
"line": {
|
|
6364
6364
|
"start": 16,
|
|
@@ -6383,7 +6383,7 @@
|
|
|
6383
6383
|
"context": {
|
|
6384
6384
|
"type": "variable",
|
|
6385
6385
|
"name": "kendo-series-c",
|
|
6386
|
-
"value": "#78d237",
|
|
6386
|
+
"value": "if($kendo-enable-color-system, k-color( series-c ), #78d237)",
|
|
6387
6387
|
"scope": "default",
|
|
6388
6388
|
"line": {
|
|
6389
6389
|
"start": 24,
|
|
@@ -6408,7 +6408,7 @@
|
|
|
6408
6408
|
"context": {
|
|
6409
6409
|
"type": "variable",
|
|
6410
6410
|
"name": "kendo-series-d",
|
|
6411
|
-
"value": "#28b4c8",
|
|
6411
|
+
"value": "if($kendo-enable-color-system, k-color( series-d ), #28b4c8)",
|
|
6412
6412
|
"scope": "default",
|
|
6413
6413
|
"line": {
|
|
6414
6414
|
"start": 32,
|
|
@@ -6433,7 +6433,7 @@
|
|
|
6433
6433
|
"context": {
|
|
6434
6434
|
"type": "variable",
|
|
6435
6435
|
"name": "kendo-series-e",
|
|
6436
|
-
"value": "#2d73f5",
|
|
6436
|
+
"value": "if($kendo-enable-color-system, k-color( series-e ), #2d73f5)",
|
|
6437
6437
|
"scope": "default",
|
|
6438
6438
|
"line": {
|
|
6439
6439
|
"start": 40,
|
|
@@ -6458,7 +6458,7 @@
|
|
|
6458
6458
|
"context": {
|
|
6459
6459
|
"type": "variable",
|
|
6460
6460
|
"name": "kendo-series-f",
|
|
6461
|
-
"value": "#aa46be",
|
|
6461
|
+
"value": "if($kendo-enable-color-system, k-color( series-f ), #aa46be)",
|
|
6462
6462
|
"scope": "default",
|
|
6463
6463
|
"line": {
|
|
6464
6464
|
"start": 48,
|
|
@@ -6508,7 +6508,7 @@
|
|
|
6508
6508
|
"context": {
|
|
6509
6509
|
"type": "variable",
|
|
6510
6510
|
"name": "kendo-chart-major-lines",
|
|
6511
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )",
|
|
6511
|
+
"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 )",
|
|
6512
6512
|
"scope": "default",
|
|
6513
6513
|
"line": {
|
|
6514
6514
|
"start": 103,
|
|
@@ -6533,7 +6533,7 @@
|
|
|
6533
6533
|
"context": {
|
|
6534
6534
|
"type": "variable",
|
|
6535
6535
|
"name": "kendo-chart-minor-lines",
|
|
6536
|
-
"value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )",
|
|
6536
|
+
"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 )",
|
|
6537
6537
|
"scope": "default",
|
|
6538
6538
|
"line": {
|
|
6539
6539
|
"start": 107,
|
|
@@ -6983,7 +6983,7 @@
|
|
|
6983
6983
|
"context": {
|
|
6984
6984
|
"type": "variable",
|
|
6985
6985
|
"name": "kendo-checkbox-checked-text",
|
|
6986
|
-
"value": "k-contrast-legacy( $kendo-checkbox-checked-bg )",
|
|
6986
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg ))",
|
|
6987
6987
|
"scope": "default",
|
|
6988
6988
|
"line": {
|
|
6989
6989
|
"start": 84,
|
|
@@ -7183,7 +7183,7 @@
|
|
|
7183
7183
|
"context": {
|
|
7184
7184
|
"type": "variable",
|
|
7185
7185
|
"name": "kendo-checkbox-focus-checked-shadow",
|
|
7186
|
-
"value": "0 0 0 2px rgba( $kendo-color-primary, .3 )",
|
|
7186
|
+
"value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 ))",
|
|
7187
7187
|
"scope": "default",
|
|
7188
7188
|
"line": {
|
|
7189
7189
|
"start": 110,
|
|
@@ -8358,7 +8358,7 @@
|
|
|
8358
8358
|
"context": {
|
|
8359
8359
|
"type": "variable",
|
|
8360
8360
|
"name": "kendo-chip-solid-shadow",
|
|
8361
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
8361
|
+
"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 ) ))",
|
|
8362
8362
|
"scope": "default",
|
|
8363
8363
|
"line": {
|
|
8364
8364
|
"start": 118,
|
|
@@ -8633,7 +8633,7 @@
|
|
|
8633
8633
|
"context": {
|
|
8634
8634
|
"type": "variable",
|
|
8635
8635
|
"name": "kendo-chip-outline-shadow",
|
|
8636
|
-
"value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
|
|
8636
|
+
"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 ) ))",
|
|
8637
8637
|
"scope": "default",
|
|
8638
8638
|
"line": {
|
|
8639
8639
|
"start": 155,
|
|
@@ -8683,7 +8683,7 @@
|
|
|
8683
8683
|
"context": {
|
|
8684
8684
|
"type": "variable",
|
|
8685
8685
|
"name": "kendo-chip-outline-hover-text",
|
|
8686
|
-
"value": "k-contrast-legacy( $kendo-chip-outline-hover-bg )",
|
|
8686
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg ))",
|
|
8687
8687
|
"scope": "default",
|
|
8688
8688
|
"line": {
|
|
8689
8689
|
"start": 162,
|
|
@@ -9850,62 +9850,35 @@
|
|
|
9850
9850
|
}
|
|
9851
9851
|
},
|
|
9852
9852
|
{
|
|
9853
|
-
"description": "The
|
|
9853
|
+
"description": "The global default Colors map.\n",
|
|
9854
9854
|
"commentRange": {
|
|
9855
|
-
"start":
|
|
9856
|
-
"end":
|
|
9857
|
-
},
|
|
9858
|
-
"context": {
|
|
9859
|
-
"type": "variable",
|
|
9860
|
-
"name": "kendo-color-white",
|
|
9861
|
-
"value": "#ffffff",
|
|
9862
|
-
"scope": "private",
|
|
9863
|
-
"line": {
|
|
9864
|
-
"start": 7,
|
|
9865
|
-
"end": 7
|
|
9866
|
-
}
|
|
9867
|
-
},
|
|
9868
|
-
"type": "Color",
|
|
9869
|
-
"group": [
|
|
9870
|
-
"color-system"
|
|
9871
|
-
],
|
|
9872
|
-
"access": "public",
|
|
9873
|
-
"file": {
|
|
9874
|
-
"path": "_variables.scss",
|
|
9875
|
-
"name": "_variables.scss"
|
|
9876
|
-
}
|
|
9877
|
-
},
|
|
9878
|
-
{
|
|
9879
|
-
"description": "The color black.\nNote: you cannot change this value.\n",
|
|
9880
|
-
"commentRange": {
|
|
9881
|
-
"start": 9,
|
|
9882
|
-
"end": 12
|
|
9855
|
+
"start": 177,
|
|
9856
|
+
"end": 178
|
|
9883
9857
|
},
|
|
9884
9858
|
"context": {
|
|
9885
9859
|
"type": "variable",
|
|
9886
|
-
"name": "kendo-
|
|
9887
|
-
"value": "
|
|
9888
|
-
"scope": "
|
|
9860
|
+
"name": "kendo-colors",
|
|
9861
|
+
"value": "$_default-colors",
|
|
9862
|
+
"scope": "default",
|
|
9889
9863
|
"line": {
|
|
9890
|
-
"start":
|
|
9891
|
-
"end":
|
|
9864
|
+
"start": 179,
|
|
9865
|
+
"end": 179
|
|
9892
9866
|
}
|
|
9893
9867
|
},
|
|
9894
|
-
"type": "Color",
|
|
9895
9868
|
"group": [
|
|
9896
9869
|
"color-system"
|
|
9897
9870
|
],
|
|
9898
9871
|
"access": "public",
|
|
9899
9872
|
"file": {
|
|
9900
|
-
"path": "
|
|
9901
|
-
"name": "
|
|
9873
|
+
"path": "core/color-system/_swatch.scss",
|
|
9874
|
+
"name": "_swatch.scss"
|
|
9902
9875
|
}
|
|
9903
9876
|
},
|
|
9904
9877
|
{
|
|
9905
9878
|
"description": "The color that focuses the user attention.\nUsed for primary buttons and for elements of primary importance across the theme.\n",
|
|
9906
9879
|
"commentRange": {
|
|
9907
|
-
"start":
|
|
9908
|
-
"end":
|
|
9880
|
+
"start": 184,
|
|
9881
|
+
"end": 187
|
|
9909
9882
|
},
|
|
9910
9883
|
"context": {
|
|
9911
9884
|
"type": "variable",
|
|
@@ -9913,8 +9886,8 @@
|
|
|
9913
9886
|
"value": "#f35800",
|
|
9914
9887
|
"scope": "default",
|
|
9915
9888
|
"line": {
|
|
9916
|
-
"start":
|
|
9917
|
-
"end":
|
|
9889
|
+
"start": 188,
|
|
9890
|
+
"end": 188
|
|
9918
9891
|
}
|
|
9919
9892
|
},
|
|
9920
9893
|
"group": [
|
|
@@ -9923,15 +9896,15 @@
|
|
|
9923
9896
|
"type": "Color",
|
|
9924
9897
|
"access": "public",
|
|
9925
9898
|
"file": {
|
|
9926
|
-
"path": "
|
|
9927
|
-
"name": "
|
|
9899
|
+
"path": "core/color-system/_swatch.scss",
|
|
9900
|
+
"name": "_swatch.scss"
|
|
9928
9901
|
}
|
|
9929
9902
|
},
|
|
9930
9903
|
{
|
|
9931
9904
|
"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",
|
|
9932
9905
|
"commentRange": {
|
|
9933
|
-
"start":
|
|
9934
|
-
"end":
|
|
9906
|
+
"start": 192,
|
|
9907
|
+
"end": 195
|
|
9935
9908
|
},
|
|
9936
9909
|
"context": {
|
|
9937
9910
|
"type": "variable",
|
|
@@ -9939,8 +9912,8 @@
|
|
|
9939
9912
|
"value": "k-contrast-legacy( $kendo-color-primary )",
|
|
9940
9913
|
"scope": "default",
|
|
9941
9914
|
"line": {
|
|
9942
|
-
"start":
|
|
9943
|
-
"end":
|
|
9915
|
+
"start": 196,
|
|
9916
|
+
"end": 196
|
|
9944
9917
|
}
|
|
9945
9918
|
},
|
|
9946
9919
|
"group": [
|
|
@@ -9949,15 +9922,15 @@
|
|
|
9949
9922
|
"type": "Color",
|
|
9950
9923
|
"access": "public",
|
|
9951
9924
|
"file": {
|
|
9952
|
-
"path": "
|
|
9953
|
-
"name": "
|
|
9925
|
+
"path": "core/color-system/_swatch.scss",
|
|
9926
|
+
"name": "_swatch.scss"
|
|
9954
9927
|
}
|
|
9955
9928
|
},
|
|
9956
9929
|
{
|
|
9957
9930
|
"description": "The secondary color of the theme.\n",
|
|
9958
9931
|
"commentRange": {
|
|
9959
|
-
"start":
|
|
9960
|
-
"end":
|
|
9932
|
+
"start": 198,
|
|
9933
|
+
"end": 200
|
|
9961
9934
|
},
|
|
9962
9935
|
"context": {
|
|
9963
9936
|
"type": "variable",
|
|
@@ -9965,8 +9938,8 @@
|
|
|
9965
9938
|
"value": "#e9e9e9",
|
|
9966
9939
|
"scope": "default",
|
|
9967
9940
|
"line": {
|
|
9968
|
-
"start":
|
|
9969
|
-
"end":
|
|
9941
|
+
"start": 201,
|
|
9942
|
+
"end": 201
|
|
9970
9943
|
}
|
|
9971
9944
|
},
|
|
9972
9945
|
"group": [
|
|
@@ -9975,15 +9948,15 @@
|
|
|
9975
9948
|
"type": "Color",
|
|
9976
9949
|
"access": "public",
|
|
9977
9950
|
"file": {
|
|
9978
|
-
"path": "
|
|
9979
|
-
"name": "
|
|
9951
|
+
"path": "core/color-system/_swatch.scss",
|
|
9952
|
+
"name": "_swatch.scss"
|
|
9980
9953
|
}
|
|
9981
9954
|
},
|
|
9982
9955
|
{
|
|
9983
9956
|
"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",
|
|
9984
9957
|
"commentRange": {
|
|
9985
|
-
"start":
|
|
9986
|
-
"end":
|
|
9958
|
+
"start": 205,
|
|
9959
|
+
"end": 208
|
|
9987
9960
|
},
|
|
9988
9961
|
"context": {
|
|
9989
9962
|
"type": "variable",
|
|
@@ -9991,8 +9964,8 @@
|
|
|
9991
9964
|
"value": "k-contrast-color( $kendo-color-secondary )",
|
|
9992
9965
|
"scope": "default",
|
|
9993
9966
|
"line": {
|
|
9994
|
-
"start":
|
|
9995
|
-
"end":
|
|
9967
|
+
"start": 209,
|
|
9968
|
+
"end": 209
|
|
9996
9969
|
}
|
|
9997
9970
|
},
|
|
9998
9971
|
"group": [
|
|
@@ -10001,15 +9974,15 @@
|
|
|
10001
9974
|
"type": "Color",
|
|
10002
9975
|
"access": "public",
|
|
10003
9976
|
"file": {
|
|
10004
|
-
"path": "
|
|
10005
|
-
"name": "
|
|
9977
|
+
"path": "core/color-system/_swatch.scss",
|
|
9978
|
+
"name": "_swatch.scss"
|
|
10006
9979
|
}
|
|
10007
9980
|
},
|
|
10008
9981
|
{
|
|
10009
9982
|
"description": "The tertiary color of the theme.\n",
|
|
10010
9983
|
"commentRange": {
|
|
10011
|
-
"start":
|
|
10012
|
-
"end":
|
|
9984
|
+
"start": 211,
|
|
9985
|
+
"end": 213
|
|
10013
9986
|
},
|
|
10014
9987
|
"context": {
|
|
10015
9988
|
"type": "variable",
|
|
@@ -10017,8 +9990,8 @@
|
|
|
10017
9990
|
"value": "#03a9f4",
|
|
10018
9991
|
"scope": "default",
|
|
10019
9992
|
"line": {
|
|
10020
|
-
"start":
|
|
10021
|
-
"end":
|
|
9993
|
+
"start": 214,
|
|
9994
|
+
"end": 214
|
|
10022
9995
|
}
|
|
10023
9996
|
},
|
|
10024
9997
|
"group": [
|
|
@@ -10027,15 +10000,15 @@
|
|
|
10027
10000
|
"type": "Color",
|
|
10028
10001
|
"access": "public",
|
|
10029
10002
|
"file": {
|
|
10030
|
-
"path": "
|
|
10031
|
-
"name": "
|
|
10003
|
+
"path": "core/color-system/_swatch.scss",
|
|
10004
|
+
"name": "_swatch.scss"
|
|
10032
10005
|
}
|
|
10033
10006
|
},
|
|
10034
10007
|
{
|
|
10035
10008
|
"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",
|
|
10036
10009
|
"commentRange": {
|
|
10037
|
-
"start":
|
|
10038
|
-
"end":
|
|
10010
|
+
"start": 218,
|
|
10011
|
+
"end": 221
|
|
10039
10012
|
},
|
|
10040
10013
|
"context": {
|
|
10041
10014
|
"type": "variable",
|
|
@@ -10043,8 +10016,8 @@
|
|
|
10043
10016
|
"value": "k-contrast-color( $kendo-color-tertiary )",
|
|
10044
10017
|
"scope": "default",
|
|
10045
10018
|
"line": {
|
|
10046
|
-
"start":
|
|
10047
|
-
"end":
|
|
10019
|
+
"start": 222,
|
|
10020
|
+
"end": 222
|
|
10048
10021
|
}
|
|
10049
10022
|
},
|
|
10050
10023
|
"group": [
|
|
@@ -10053,15 +10026,15 @@
|
|
|
10053
10026
|
"type": "Color",
|
|
10054
10027
|
"access": "public",
|
|
10055
10028
|
"file": {
|
|
10056
|
-
"path": "
|
|
10057
|
-
"name": "
|
|
10029
|
+
"path": "core/color-system/_swatch.scss",
|
|
10030
|
+
"name": "_swatch.scss"
|
|
10058
10031
|
}
|
|
10059
10032
|
},
|
|
10060
10033
|
{
|
|
10061
10034
|
"description": "The color for informational messages and states.\n",
|
|
10062
10035
|
"commentRange": {
|
|
10063
|
-
"start":
|
|
10064
|
-
"end":
|
|
10036
|
+
"start": 224,
|
|
10037
|
+
"end": 226
|
|
10065
10038
|
},
|
|
10066
10039
|
"context": {
|
|
10067
10040
|
"type": "variable",
|
|
@@ -10069,8 +10042,8 @@
|
|
|
10069
10042
|
"value": "#2498bc",
|
|
10070
10043
|
"scope": "default",
|
|
10071
10044
|
"line": {
|
|
10072
|
-
"start":
|
|
10073
|
-
"end":
|
|
10045
|
+
"start": 227,
|
|
10046
|
+
"end": 227
|
|
10074
10047
|
}
|
|
10075
10048
|
},
|
|
10076
10049
|
"group": [
|
|
@@ -10079,15 +10052,15 @@
|
|
|
10079
10052
|
"type": "Color",
|
|
10080
10053
|
"access": "public",
|
|
10081
10054
|
"file": {
|
|
10082
|
-
"path": "
|
|
10083
|
-
"name": "
|
|
10055
|
+
"path": "core/color-system/_swatch.scss",
|
|
10056
|
+
"name": "_swatch.scss"
|
|
10084
10057
|
}
|
|
10085
10058
|
},
|
|
10086
10059
|
{
|
|
10087
10060
|
"description": "The color for success messages and states.\n",
|
|
10088
10061
|
"commentRange": {
|
|
10089
|
-
"start":
|
|
10090
|
-
"end":
|
|
10062
|
+
"start": 231,
|
|
10063
|
+
"end": 233
|
|
10091
10064
|
},
|
|
10092
10065
|
"context": {
|
|
10093
10066
|
"type": "variable",
|
|
@@ -10095,8 +10068,8 @@
|
|
|
10095
10068
|
"value": "#3ea44e",
|
|
10096
10069
|
"scope": "default",
|
|
10097
10070
|
"line": {
|
|
10098
|
-
"start":
|
|
10099
|
-
"end":
|
|
10071
|
+
"start": 234,
|
|
10072
|
+
"end": 234
|
|
10100
10073
|
}
|
|
10101
10074
|
},
|
|
10102
10075
|
"group": [
|
|
@@ -10105,15 +10078,15 @@
|
|
|
10105
10078
|
"type": "Color",
|
|
10106
10079
|
"access": "public",
|
|
10107
10080
|
"file": {
|
|
10108
|
-
"path": "
|
|
10109
|
-
"name": "
|
|
10081
|
+
"path": "core/color-system/_swatch.scss",
|
|
10082
|
+
"name": "_swatch.scss"
|
|
10110
10083
|
}
|
|
10111
10084
|
},
|
|
10112
10085
|
{
|
|
10113
10086
|
"description": "The color for warning messages and states.\n",
|
|
10114
10087
|
"commentRange": {
|
|
10115
|
-
"start":
|
|
10116
|
-
"end":
|
|
10088
|
+
"start": 238,
|
|
10089
|
+
"end": 240
|
|
10117
10090
|
},
|
|
10118
10091
|
"context": {
|
|
10119
10092
|
"type": "variable",
|
|
@@ -10121,8 +10094,8 @@
|
|
|
10121
10094
|
"value": "#ff9800",
|
|
10122
10095
|
"scope": "default",
|
|
10123
10096
|
"line": {
|
|
10124
|
-
"start":
|
|
10125
|
-
"end":
|
|
10097
|
+
"start": 241,
|
|
10098
|
+
"end": 241
|
|
10126
10099
|
}
|
|
10127
10100
|
},
|
|
10128
10101
|
"group": [
|
|
@@ -10131,15 +10104,15 @@
|
|
|
10131
10104
|
"type": "Color",
|
|
10132
10105
|
"access": "public",
|
|
10133
10106
|
"file": {
|
|
10134
|
-
"path": "
|
|
10135
|
-
"name": "
|
|
10107
|
+
"path": "core/color-system/_swatch.scss",
|
|
10108
|
+
"name": "_swatch.scss"
|
|
10136
10109
|
}
|
|
10137
10110
|
},
|
|
10138
10111
|
{
|
|
10139
10112
|
"description": "The color for error messages and states.\n",
|
|
10140
10113
|
"commentRange": {
|
|
10141
|
-
"start":
|
|
10142
|
-
"end":
|
|
10114
|
+
"start": 245,
|
|
10115
|
+
"end": 247
|
|
10143
10116
|
},
|
|
10144
10117
|
"context": {
|
|
10145
10118
|
"type": "variable",
|
|
@@ -10147,8 +10120,8 @@
|
|
|
10147
10120
|
"value": "#d92800",
|
|
10148
10121
|
"scope": "default",
|
|
10149
10122
|
"line": {
|
|
10150
|
-
"start":
|
|
10151
|
-
"end":
|
|
10123
|
+
"start": 248,
|
|
10124
|
+
"end": 248
|
|
10152
10125
|
}
|
|
10153
10126
|
},
|
|
10154
10127
|
"group": [
|
|
@@ -10157,15 +10130,15 @@
|
|
|
10157
10130
|
"type": "Color",
|
|
10158
10131
|
"access": "public",
|
|
10159
10132
|
"file": {
|
|
10160
|
-
"path": "
|
|
10161
|
-
"name": "
|
|
10133
|
+
"path": "core/color-system/_swatch.scss",
|
|
10134
|
+
"name": "_swatch.scss"
|
|
10162
10135
|
}
|
|
10163
10136
|
},
|
|
10164
10137
|
{
|
|
10165
10138
|
"description": "The dark color of the theme.\n",
|
|
10166
10139
|
"commentRange": {
|
|
10167
|
-
"start":
|
|
10168
|
-
"end":
|
|
10140
|
+
"start": 252,
|
|
10141
|
+
"end": 254
|
|
10169
10142
|
},
|
|
10170
10143
|
"context": {
|
|
10171
10144
|
"type": "variable",
|
|
@@ -10173,8 +10146,8 @@
|
|
|
10173
10146
|
"value": "#404040",
|
|
10174
10147
|
"scope": "default",
|
|
10175
10148
|
"line": {
|
|
10176
|
-
"start":
|
|
10177
|
-
"end":
|
|
10149
|
+
"start": 255,
|
|
10150
|
+
"end": 255
|
|
10178
10151
|
}
|
|
10179
10152
|
},
|
|
10180
10153
|
"group": [
|
|
@@ -10183,15 +10156,15 @@
|
|
|
10183
10156
|
"type": "Color",
|
|
10184
10157
|
"access": "public",
|
|
10185
10158
|
"file": {
|
|
10186
|
-
"path": "
|
|
10187
|
-
"name": "
|
|
10159
|
+
"path": "core/color-system/_swatch.scss",
|
|
10160
|
+
"name": "_swatch.scss"
|
|
10188
10161
|
}
|
|
10189
10162
|
},
|
|
10190
10163
|
{
|
|
10191
10164
|
"description": "The light color of the theme.\n",
|
|
10192
10165
|
"commentRange": {
|
|
10193
|
-
"start":
|
|
10194
|
-
"end":
|
|
10166
|
+
"start": 257,
|
|
10167
|
+
"end": 259
|
|
10195
10168
|
},
|
|
10196
10169
|
"context": {
|
|
10197
10170
|
"type": "variable",
|
|
@@ -10199,8 +10172,8 @@
|
|
|
10199
10172
|
"value": "#ebebeb",
|
|
10200
10173
|
"scope": "default",
|
|
10201
10174
|
"line": {
|
|
10202
|
-
"start":
|
|
10203
|
-
"end":
|
|
10175
|
+
"start": 260,
|
|
10176
|
+
"end": 260
|
|
10204
10177
|
}
|
|
10205
10178
|
},
|
|
10206
10179
|
"group": [
|
|
@@ -10209,15 +10182,15 @@
|
|
|
10209
10182
|
"type": "Color",
|
|
10210
10183
|
"access": "public",
|
|
10211
10184
|
"file": {
|
|
10212
|
-
"path": "
|
|
10213
|
-
"name": "
|
|
10185
|
+
"path": "core/color-system/_swatch.scss",
|
|
10186
|
+
"name": "_swatch.scss"
|
|
10214
10187
|
}
|
|
10215
10188
|
},
|
|
10216
10189
|
{
|
|
10217
10190
|
"description": "Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark\n",
|
|
10218
10191
|
"commentRange": {
|
|
10219
|
-
"start":
|
|
10220
|
-
"end":
|
|
10192
|
+
"start": 262,
|
|
10193
|
+
"end": 263
|
|
10221
10194
|
},
|
|
10222
10195
|
"context": {
|
|
10223
10196
|
"type": "variable",
|
|
@@ -10225,8 +10198,8 @@
|
|
|
10225
10198
|
"value": "if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark )",
|
|
10226
10199
|
"scope": "default",
|
|
10227
10200
|
"line": {
|
|
10228
|
-
"start":
|
|
10229
|
-
"end":
|
|
10201
|
+
"start": 264,
|
|
10202
|
+
"end": 264
|
|
10230
10203
|
}
|
|
10231
10204
|
},
|
|
10232
10205
|
"group": [
|
|
@@ -10234,8 +10207,8 @@
|
|
|
10234
10207
|
],
|
|
10235
10208
|
"access": "public",
|
|
10236
10209
|
"file": {
|
|
10237
|
-
"path": "
|
|
10238
|
-
"name": "
|
|
10210
|
+
"path": "core/color-system/_swatch.scss",
|
|
10211
|
+
"name": "_swatch.scss"
|
|
10239
10212
|
}
|
|
10240
10213
|
},
|
|
10241
10214
|
{
|
|
@@ -11038,11 +11011,136 @@
|
|
|
11038
11011
|
"name": "_variables.scss"
|
|
11039
11012
|
}
|
|
11040
11013
|
},
|
|
11014
|
+
{
|
|
11015
|
+
"description": "Background color of the body.\n",
|
|
11016
|
+
"commentRange": {
|
|
11017
|
+
"start": 281,
|
|
11018
|
+
"end": 282
|
|
11019
|
+
},
|
|
11020
|
+
"context": {
|
|
11021
|
+
"type": "variable",
|
|
11022
|
+
"name": "kendo-body-bg",
|
|
11023
|
+
"value": "$kendo-color-white",
|
|
11024
|
+
"scope": "default",
|
|
11025
|
+
"line": {
|
|
11026
|
+
"start": 283,
|
|
11027
|
+
"end": 283
|
|
11028
|
+
}
|
|
11029
|
+
},
|
|
11030
|
+
"group": [
|
|
11031
|
+
"common"
|
|
11032
|
+
],
|
|
11033
|
+
"access": "public",
|
|
11034
|
+
"file": {
|
|
11035
|
+
"path": "core/color-system/_swatch.scss",
|
|
11036
|
+
"name": "_swatch.scss"
|
|
11037
|
+
}
|
|
11038
|
+
},
|
|
11039
|
+
{
|
|
11040
|
+
"description": "Text color of the body.\n",
|
|
11041
|
+
"commentRange": {
|
|
11042
|
+
"start": 284,
|
|
11043
|
+
"end": 285
|
|
11044
|
+
},
|
|
11045
|
+
"context": {
|
|
11046
|
+
"type": "variable",
|
|
11047
|
+
"name": "kendo-body-text",
|
|
11048
|
+
"value": "#272727",
|
|
11049
|
+
"scope": "default",
|
|
11050
|
+
"line": {
|
|
11051
|
+
"start": 286,
|
|
11052
|
+
"end": 286
|
|
11053
|
+
}
|
|
11054
|
+
},
|
|
11055
|
+
"group": [
|
|
11056
|
+
"common"
|
|
11057
|
+
],
|
|
11058
|
+
"access": "public",
|
|
11059
|
+
"file": {
|
|
11060
|
+
"path": "core/color-system/_swatch.scss",
|
|
11061
|
+
"name": "_swatch.scss"
|
|
11062
|
+
}
|
|
11063
|
+
},
|
|
11064
|
+
{
|
|
11065
|
+
"description": "Subtle text color.\n",
|
|
11066
|
+
"commentRange": {
|
|
11067
|
+
"start": 288,
|
|
11068
|
+
"end": 289
|
|
11069
|
+
},
|
|
11070
|
+
"context": {
|
|
11071
|
+
"type": "variable",
|
|
11072
|
+
"name": "kendo-subtle-text",
|
|
11073
|
+
"value": "#646464",
|
|
11074
|
+
"scope": "default",
|
|
11075
|
+
"line": {
|
|
11076
|
+
"start": 290,
|
|
11077
|
+
"end": 290
|
|
11078
|
+
}
|
|
11079
|
+
},
|
|
11080
|
+
"group": [
|
|
11081
|
+
"common"
|
|
11082
|
+
],
|
|
11083
|
+
"access": "public",
|
|
11084
|
+
"file": {
|
|
11085
|
+
"path": "core/color-system/_swatch.scss",
|
|
11086
|
+
"name": "_swatch.scss"
|
|
11087
|
+
}
|
|
11088
|
+
},
|
|
11089
|
+
{
|
|
11090
|
+
"description": "Text color of the links.\n",
|
|
11091
|
+
"commentRange": {
|
|
11092
|
+
"start": 297,
|
|
11093
|
+
"end": 298
|
|
11094
|
+
},
|
|
11095
|
+
"context": {
|
|
11096
|
+
"type": "variable",
|
|
11097
|
+
"name": "kendo-link-text",
|
|
11098
|
+
"value": "$kendo-color-primary",
|
|
11099
|
+
"scope": "default",
|
|
11100
|
+
"line": {
|
|
11101
|
+
"start": 299,
|
|
11102
|
+
"end": 299
|
|
11103
|
+
}
|
|
11104
|
+
},
|
|
11105
|
+
"group": [
|
|
11106
|
+
"common"
|
|
11107
|
+
],
|
|
11108
|
+
"access": "public",
|
|
11109
|
+
"file": {
|
|
11110
|
+
"path": "core/color-system/_swatch.scss",
|
|
11111
|
+
"name": "_swatch.scss"
|
|
11112
|
+
}
|
|
11113
|
+
},
|
|
11114
|
+
{
|
|
11115
|
+
"description": "Text color of the links on hover.\n",
|
|
11116
|
+
"commentRange": {
|
|
11117
|
+
"start": 300,
|
|
11118
|
+
"end": 301
|
|
11119
|
+
},
|
|
11120
|
+
"context": {
|
|
11121
|
+
"type": "variable",
|
|
11122
|
+
"name": "kendo-link-hover-text",
|
|
11123
|
+
"value": "$kendo-color-primary-darker",
|
|
11124
|
+
"scope": "default",
|
|
11125
|
+
"line": {
|
|
11126
|
+
"start": 302,
|
|
11127
|
+
"end": 302
|
|
11128
|
+
}
|
|
11129
|
+
},
|
|
11130
|
+
"group": [
|
|
11131
|
+
"common"
|
|
11132
|
+
],
|
|
11133
|
+
"access": "public",
|
|
11134
|
+
"file": {
|
|
11135
|
+
"path": "core/color-system/_swatch.scss",
|
|
11136
|
+
"name": "_swatch.scss"
|
|
11137
|
+
}
|
|
11138
|
+
},
|
|
11041
11139
|
{
|
|
11042
11140
|
"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",
|
|
11043
11141
|
"commentRange": {
|
|
11044
|
-
"start":
|
|
11045
|
-
"end":
|
|
11142
|
+
"start": 315,
|
|
11143
|
+
"end": 317
|
|
11046
11144
|
},
|
|
11047
11145
|
"context": {
|
|
11048
11146
|
"type": "variable",
|
|
@@ -11050,8 +11148,8 @@
|
|
|
11050
11148
|
"value": "$kendo-body-bg",
|
|
11051
11149
|
"scope": "default",
|
|
11052
11150
|
"line": {
|
|
11053
|
-
"start":
|
|
11054
|
-
"end":
|
|
11151
|
+
"start": 318,
|
|
11152
|
+
"end": 318
|
|
11055
11153
|
}
|
|
11056
11154
|
},
|
|
11057
11155
|
"group": [
|
|
@@ -11059,15 +11157,15 @@
|
|
|
11059
11157
|
],
|
|
11060
11158
|
"access": "public",
|
|
11061
11159
|
"file": {
|
|
11062
|
-
"path": "
|
|
11063
|
-
"name": "
|
|
11160
|
+
"path": "core/color-system/_swatch.scss",
|
|
11161
|
+
"name": "_swatch.scss"
|
|
11064
11162
|
}
|
|
11065
11163
|
},
|
|
11066
11164
|
{
|
|
11067
11165
|
"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",
|
|
11068
11166
|
"commentRange": {
|
|
11069
|
-
"start":
|
|
11070
|
-
"end":
|
|
11167
|
+
"start": 319,
|
|
11168
|
+
"end": 321
|
|
11071
11169
|
},
|
|
11072
11170
|
"context": {
|
|
11073
11171
|
"type": "variable",
|
|
@@ -11075,8 +11173,8 @@
|
|
|
11075
11173
|
"value": "$kendo-body-text",
|
|
11076
11174
|
"scope": "default",
|
|
11077
11175
|
"line": {
|
|
11078
|
-
"start":
|
|
11079
|
-
"end":
|
|
11176
|
+
"start": 322,
|
|
11177
|
+
"end": 322
|
|
11080
11178
|
}
|
|
11081
11179
|
},
|
|
11082
11180
|
"group": [
|
|
@@ -11084,15 +11182,15 @@
|
|
|
11084
11182
|
],
|
|
11085
11183
|
"access": "public",
|
|
11086
11184
|
"file": {
|
|
11087
|
-
"path": "
|
|
11088
|
-
"name": "
|
|
11185
|
+
"path": "core/color-system/_swatch.scss",
|
|
11186
|
+
"name": "_swatch.scss"
|
|
11089
11187
|
}
|
|
11090
11188
|
},
|
|
11091
11189
|
{
|
|
11092
11190
|
"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",
|
|
11093
11191
|
"commentRange": {
|
|
11094
|
-
"start":
|
|
11095
|
-
"end":
|
|
11192
|
+
"start": 323,
|
|
11193
|
+
"end": 325
|
|
11096
11194
|
},
|
|
11097
11195
|
"context": {
|
|
11098
11196
|
"type": "variable",
|
|
@@ -11100,8 +11198,8 @@
|
|
|
11100
11198
|
"value": "$kendo-base-border",
|
|
11101
11199
|
"scope": "default",
|
|
11102
11200
|
"line": {
|
|
11103
|
-
"start":
|
|
11104
|
-
"end":
|
|
11201
|
+
"start": 326,
|
|
11202
|
+
"end": 326
|
|
11105
11203
|
}
|
|
11106
11204
|
},
|
|
11107
11205
|
"group": [
|
|
@@ -11109,8 +11207,308 @@
|
|
|
11109
11207
|
],
|
|
11110
11208
|
"access": "public",
|
|
11111
11209
|
"file": {
|
|
11112
|
-
"path": "
|
|
11113
|
-
"name": "
|
|
11210
|
+
"path": "core/color-system/_swatch.scss",
|
|
11211
|
+
"name": "_swatch.scss"
|
|
11212
|
+
}
|
|
11213
|
+
},
|
|
11214
|
+
{
|
|
11215
|
+
"description": "Background color of the component header.\n",
|
|
11216
|
+
"commentRange": {
|
|
11217
|
+
"start": 360,
|
|
11218
|
+
"end": 361
|
|
11219
|
+
},
|
|
11220
|
+
"context": {
|
|
11221
|
+
"type": "variable",
|
|
11222
|
+
"name": "kendo-component-header-bg",
|
|
11223
|
+
"value": "$kendo-base-bg",
|
|
11224
|
+
"scope": "default",
|
|
11225
|
+
"line": {
|
|
11226
|
+
"start": 362,
|
|
11227
|
+
"end": 362
|
|
11228
|
+
}
|
|
11229
|
+
},
|
|
11230
|
+
"group": [
|
|
11231
|
+
"component"
|
|
11232
|
+
],
|
|
11233
|
+
"access": "public",
|
|
11234
|
+
"file": {
|
|
11235
|
+
"path": "core/color-system/_swatch.scss",
|
|
11236
|
+
"name": "_swatch.scss"
|
|
11237
|
+
}
|
|
11238
|
+
},
|
|
11239
|
+
{
|
|
11240
|
+
"description": "Text color of the component header.\n",
|
|
11241
|
+
"commentRange": {
|
|
11242
|
+
"start": 363,
|
|
11243
|
+
"end": 364
|
|
11244
|
+
},
|
|
11245
|
+
"context": {
|
|
11246
|
+
"type": "variable",
|
|
11247
|
+
"name": "kendo-component-header-text",
|
|
11248
|
+
"value": "$kendo-base-text",
|
|
11249
|
+
"scope": "default",
|
|
11250
|
+
"line": {
|
|
11251
|
+
"start": 365,
|
|
11252
|
+
"end": 365
|
|
11253
|
+
}
|
|
11254
|
+
},
|
|
11255
|
+
"group": [
|
|
11256
|
+
"component"
|
|
11257
|
+
],
|
|
11258
|
+
"access": "public",
|
|
11259
|
+
"file": {
|
|
11260
|
+
"path": "core/color-system/_swatch.scss",
|
|
11261
|
+
"name": "_swatch.scss"
|
|
11262
|
+
}
|
|
11263
|
+
},
|
|
11264
|
+
{
|
|
11265
|
+
"description": "Border color of the component header.\n",
|
|
11266
|
+
"commentRange": {
|
|
11267
|
+
"start": 366,
|
|
11268
|
+
"end": 367
|
|
11269
|
+
},
|
|
11270
|
+
"context": {
|
|
11271
|
+
"type": "variable",
|
|
11272
|
+
"name": "kendo-component-header-border",
|
|
11273
|
+
"value": "$kendo-base-border",
|
|
11274
|
+
"scope": "default",
|
|
11275
|
+
"line": {
|
|
11276
|
+
"start": 368,
|
|
11277
|
+
"end": 368
|
|
11278
|
+
}
|
|
11279
|
+
},
|
|
11280
|
+
"group": [
|
|
11281
|
+
"component"
|
|
11282
|
+
],
|
|
11283
|
+
"access": "public",
|
|
11284
|
+
"file": {
|
|
11285
|
+
"path": "core/color-system/_swatch.scss",
|
|
11286
|
+
"name": "_swatch.scss"
|
|
11287
|
+
}
|
|
11288
|
+
},
|
|
11289
|
+
{
|
|
11290
|
+
"description": "Gradient of the component header.\n",
|
|
11291
|
+
"commentRange": {
|
|
11292
|
+
"start": 369,
|
|
11293
|
+
"end": 370
|
|
11294
|
+
},
|
|
11295
|
+
"context": {
|
|
11296
|
+
"type": "variable",
|
|
11297
|
+
"name": "kendo-component-header-gradient",
|
|
11298
|
+
"value": "$kendo-base-gradient",
|
|
11299
|
+
"scope": "default",
|
|
11300
|
+
"line": {
|
|
11301
|
+
"start": 371,
|
|
11302
|
+
"end": 371
|
|
11303
|
+
}
|
|
11304
|
+
},
|
|
11305
|
+
"group": [
|
|
11306
|
+
"component"
|
|
11307
|
+
],
|
|
11308
|
+
"access": "public",
|
|
11309
|
+
"file": {
|
|
11310
|
+
"path": "core/color-system/_swatch.scss",
|
|
11311
|
+
"name": "_swatch.scss"
|
|
11312
|
+
}
|
|
11313
|
+
},
|
|
11314
|
+
{
|
|
11315
|
+
"description": "Background color of the invalid items.\n",
|
|
11316
|
+
"commentRange": {
|
|
11317
|
+
"start": 373,
|
|
11318
|
+
"end": 374
|
|
11319
|
+
},
|
|
11320
|
+
"context": {
|
|
11321
|
+
"type": "variable",
|
|
11322
|
+
"name": "kendo-invalid-bg",
|
|
11323
|
+
"value": "null",
|
|
11324
|
+
"scope": "default",
|
|
11325
|
+
"line": {
|
|
11326
|
+
"start": 375,
|
|
11327
|
+
"end": 375
|
|
11328
|
+
}
|
|
11329
|
+
},
|
|
11330
|
+
"group": [
|
|
11331
|
+
"component"
|
|
11332
|
+
],
|
|
11333
|
+
"access": "public",
|
|
11334
|
+
"file": {
|
|
11335
|
+
"path": "core/color-system/_swatch.scss",
|
|
11336
|
+
"name": "_swatch.scss"
|
|
11337
|
+
}
|
|
11338
|
+
},
|
|
11339
|
+
{
|
|
11340
|
+
"description": "Text color of the invalid items.\n",
|
|
11341
|
+
"commentRange": {
|
|
11342
|
+
"start": 376,
|
|
11343
|
+
"end": 377
|
|
11344
|
+
},
|
|
11345
|
+
"context": {
|
|
11346
|
+
"type": "variable",
|
|
11347
|
+
"name": "kendo-invalid-text",
|
|
11348
|
+
"value": "$kendo-color-error",
|
|
11349
|
+
"scope": "default",
|
|
11350
|
+
"line": {
|
|
11351
|
+
"start": 378,
|
|
11352
|
+
"end": 378
|
|
11353
|
+
}
|
|
11354
|
+
},
|
|
11355
|
+
"group": [
|
|
11356
|
+
"component"
|
|
11357
|
+
],
|
|
11358
|
+
"access": "public",
|
|
11359
|
+
"file": {
|
|
11360
|
+
"path": "core/color-system/_swatch.scss",
|
|
11361
|
+
"name": "_swatch.scss"
|
|
11362
|
+
}
|
|
11363
|
+
},
|
|
11364
|
+
{
|
|
11365
|
+
"description": "Border color of the invalid items.\n",
|
|
11366
|
+
"commentRange": {
|
|
11367
|
+
"start": 379,
|
|
11368
|
+
"end": 380
|
|
11369
|
+
},
|
|
11370
|
+
"context": {
|
|
11371
|
+
"type": "variable",
|
|
11372
|
+
"name": "kendo-invalid-border",
|
|
11373
|
+
"value": "$kendo-color-error",
|
|
11374
|
+
"scope": "default",
|
|
11375
|
+
"line": {
|
|
11376
|
+
"start": 381,
|
|
11377
|
+
"end": 381
|
|
11378
|
+
}
|
|
11379
|
+
},
|
|
11380
|
+
"group": [
|
|
11381
|
+
"component"
|
|
11382
|
+
],
|
|
11383
|
+
"access": "public",
|
|
11384
|
+
"file": {
|
|
11385
|
+
"path": "core/color-system/_swatch.scss",
|
|
11386
|
+
"name": "_swatch.scss"
|
|
11387
|
+
}
|
|
11388
|
+
},
|
|
11389
|
+
{
|
|
11390
|
+
"description": "Shadow of the invalid items.\n",
|
|
11391
|
+
"commentRange": {
|
|
11392
|
+
"start": 382,
|
|
11393
|
+
"end": 383
|
|
11394
|
+
},
|
|
11395
|
+
"context": {
|
|
11396
|
+
"type": "variable",
|
|
11397
|
+
"name": "kendo-invalid-shadow",
|
|
11398
|
+
"value": "null",
|
|
11399
|
+
"scope": "default",
|
|
11400
|
+
"line": {
|
|
11401
|
+
"start": 384,
|
|
11402
|
+
"end": 384
|
|
11403
|
+
}
|
|
11404
|
+
},
|
|
11405
|
+
"group": [
|
|
11406
|
+
"component"
|
|
11407
|
+
],
|
|
11408
|
+
"access": "public",
|
|
11409
|
+
"file": {
|
|
11410
|
+
"path": "core/color-system/_swatch.scss",
|
|
11411
|
+
"name": "_swatch.scss"
|
|
11412
|
+
}
|
|
11413
|
+
},
|
|
11414
|
+
{
|
|
11415
|
+
"description": "Background color of the valid items.\n",
|
|
11416
|
+
"commentRange": {
|
|
11417
|
+
"start": 386,
|
|
11418
|
+
"end": 387
|
|
11419
|
+
},
|
|
11420
|
+
"context": {
|
|
11421
|
+
"type": "variable",
|
|
11422
|
+
"name": "kendo-valid-bg",
|
|
11423
|
+
"value": "null",
|
|
11424
|
+
"scope": "default",
|
|
11425
|
+
"line": {
|
|
11426
|
+
"start": 388,
|
|
11427
|
+
"end": 388
|
|
11428
|
+
}
|
|
11429
|
+
},
|
|
11430
|
+
"group": [
|
|
11431
|
+
"component"
|
|
11432
|
+
],
|
|
11433
|
+
"access": "public",
|
|
11434
|
+
"file": {
|
|
11435
|
+
"path": "core/color-system/_swatch.scss",
|
|
11436
|
+
"name": "_swatch.scss"
|
|
11437
|
+
}
|
|
11438
|
+
},
|
|
11439
|
+
{
|
|
11440
|
+
"description": "Text color of the valid items.\n",
|
|
11441
|
+
"commentRange": {
|
|
11442
|
+
"start": 389,
|
|
11443
|
+
"end": 390
|
|
11444
|
+
},
|
|
11445
|
+
"context": {
|
|
11446
|
+
"type": "variable",
|
|
11447
|
+
"name": "kendo-valid-text",
|
|
11448
|
+
"value": "$kendo-color-success",
|
|
11449
|
+
"scope": "default",
|
|
11450
|
+
"line": {
|
|
11451
|
+
"start": 391,
|
|
11452
|
+
"end": 391
|
|
11453
|
+
}
|
|
11454
|
+
},
|
|
11455
|
+
"group": [
|
|
11456
|
+
"component"
|
|
11457
|
+
],
|
|
11458
|
+
"access": "public",
|
|
11459
|
+
"file": {
|
|
11460
|
+
"path": "core/color-system/_swatch.scss",
|
|
11461
|
+
"name": "_swatch.scss"
|
|
11462
|
+
}
|
|
11463
|
+
},
|
|
11464
|
+
{
|
|
11465
|
+
"description": "Border color of the valid items.\n",
|
|
11466
|
+
"commentRange": {
|
|
11467
|
+
"start": 392,
|
|
11468
|
+
"end": 393
|
|
11469
|
+
},
|
|
11470
|
+
"context": {
|
|
11471
|
+
"type": "variable",
|
|
11472
|
+
"name": "kendo-valid-border",
|
|
11473
|
+
"value": "$kendo-color-success",
|
|
11474
|
+
"scope": "default",
|
|
11475
|
+
"line": {
|
|
11476
|
+
"start": 394,
|
|
11477
|
+
"end": 394
|
|
11478
|
+
}
|
|
11479
|
+
},
|
|
11480
|
+
"group": [
|
|
11481
|
+
"component"
|
|
11482
|
+
],
|
|
11483
|
+
"access": "public",
|
|
11484
|
+
"file": {
|
|
11485
|
+
"path": "core/color-system/_swatch.scss",
|
|
11486
|
+
"name": "_swatch.scss"
|
|
11487
|
+
}
|
|
11488
|
+
},
|
|
11489
|
+
{
|
|
11490
|
+
"description": "Shadow of the valid items.\n",
|
|
11491
|
+
"commentRange": {
|
|
11492
|
+
"start": 395,
|
|
11493
|
+
"end": 396
|
|
11494
|
+
},
|
|
11495
|
+
"context": {
|
|
11496
|
+
"type": "variable",
|
|
11497
|
+
"name": "kendo-valid-shadow",
|
|
11498
|
+
"value": "null",
|
|
11499
|
+
"scope": "default",
|
|
11500
|
+
"line": {
|
|
11501
|
+
"start": 397,
|
|
11502
|
+
"end": 397
|
|
11503
|
+
}
|
|
11504
|
+
},
|
|
11505
|
+
"group": [
|
|
11506
|
+
"component"
|
|
11507
|
+
],
|
|
11508
|
+
"access": "public",
|
|
11509
|
+
"file": {
|
|
11510
|
+
"path": "core/color-system/_swatch.scss",
|
|
11511
|
+
"name": "_swatch.scss"
|
|
11114
11512
|
}
|
|
11115
11513
|
},
|
|
11116
11514
|
{
|
|
@@ -12147,7 +12545,7 @@
|
|
|
12147
12545
|
"context": {
|
|
12148
12546
|
"type": "variable",
|
|
12149
12547
|
"name": "kendo-dock-manager-dock-preview-bg",
|
|
12150
|
-
"value": "rgba( $kendo-color-primary, .16 )",
|
|
12548
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 ))",
|
|
12151
12549
|
"scope": "default",
|
|
12152
12550
|
"line": {
|
|
12153
12551
|
"start": 110,
|
|
@@ -12522,7 +12920,7 @@
|
|
|
12522
12920
|
"context": {
|
|
12523
12921
|
"type": "variable",
|
|
12524
12922
|
"name": "kendo-dropzone-icon-text",
|
|
12525
|
-
"value": "k-try-tint( $kendo-dropzone-text, 4 )",
|
|
12923
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 ))",
|
|
12526
12924
|
"scope": "default",
|
|
12527
12925
|
"line": {
|
|
12528
12926
|
"start": 41,
|
|
@@ -12922,7 +13320,7 @@
|
|
|
12922
13320
|
"context": {
|
|
12923
13321
|
"type": "variable",
|
|
12924
13322
|
"name": "kendo-editor-highlighted-bg",
|
|
12925
|
-
"value": "k-color-mix( $kendo-color-primary, #ffffff, 20% )",
|
|
13323
|
+
"value": "if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% ))",
|
|
12926
13324
|
"scope": "default",
|
|
12927
13325
|
"line": {
|
|
12928
13326
|
"start": 32,
|
|
@@ -13466,17 +13864,17 @@
|
|
|
13466
13864
|
{
|
|
13467
13865
|
"description": "The background color of the hovered ExpansionPanel header.\n",
|
|
13468
13866
|
"commentRange": {
|
|
13469
|
-
"start":
|
|
13470
|
-
"end":
|
|
13867
|
+
"start": 50,
|
|
13868
|
+
"end": 51
|
|
13471
13869
|
},
|
|
13472
13870
|
"context": {
|
|
13473
13871
|
"type": "variable",
|
|
13474
13872
|
"name": "kendo-expander-header-hover-bg",
|
|
13475
|
-
"value": "k-color-shade( $kendo-expander-bg, 1 )",
|
|
13873
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 ))",
|
|
13476
13874
|
"scope": "default",
|
|
13477
13875
|
"line": {
|
|
13478
|
-
"start":
|
|
13479
|
-
"end":
|
|
13876
|
+
"start": 52,
|
|
13877
|
+
"end": 52
|
|
13480
13878
|
}
|
|
13481
13879
|
},
|
|
13482
13880
|
"group": [
|
|
@@ -13491,8 +13889,8 @@
|
|
|
13491
13889
|
{
|
|
13492
13890
|
"description": "The background color of the focused ExpansionPanel header.\n",
|
|
13493
13891
|
"commentRange": {
|
|
13494
|
-
"start":
|
|
13495
|
-
"end":
|
|
13892
|
+
"start": 53,
|
|
13893
|
+
"end": 54
|
|
13496
13894
|
},
|
|
13497
13895
|
"context": {
|
|
13498
13896
|
"type": "variable",
|
|
@@ -13500,8 +13898,8 @@
|
|
|
13500
13898
|
"value": "null",
|
|
13501
13899
|
"scope": "default",
|
|
13502
13900
|
"line": {
|
|
13503
|
-
"start":
|
|
13504
|
-
"end":
|
|
13901
|
+
"start": 55,
|
|
13902
|
+
"end": 55
|
|
13505
13903
|
}
|
|
13506
13904
|
},
|
|
13507
13905
|
"group": [
|
|
@@ -13516,8 +13914,8 @@
|
|
|
13516
13914
|
{
|
|
13517
13915
|
"description": "The box shadow of the focused ExpansionPanel header.\n",
|
|
13518
13916
|
"commentRange": {
|
|
13519
|
-
"start":
|
|
13520
|
-
"end":
|
|
13917
|
+
"start": 56,
|
|
13918
|
+
"end": 57
|
|
13521
13919
|
},
|
|
13522
13920
|
"context": {
|
|
13523
13921
|
"type": "variable",
|
|
@@ -13525,8 +13923,8 @@
|
|
|
13525
13923
|
"value": "$kendo-list-item-focus-shadow",
|
|
13526
13924
|
"scope": "default",
|
|
13527
13925
|
"line": {
|
|
13528
|
-
"start":
|
|
13529
|
-
"end":
|
|
13926
|
+
"start": 58,
|
|
13927
|
+
"end": 58
|
|
13530
13928
|
}
|
|
13531
13929
|
},
|
|
13532
13930
|
"group": [
|
|
@@ -13541,8 +13939,8 @@
|
|
|
13541
13939
|
{
|
|
13542
13940
|
"description": "The text color of the ExpansionPanel title.\n",
|
|
13543
13941
|
"commentRange": {
|
|
13544
|
-
"start":
|
|
13545
|
-
"end":
|
|
13942
|
+
"start": 60,
|
|
13943
|
+
"end": 61
|
|
13546
13944
|
},
|
|
13547
13945
|
"context": {
|
|
13548
13946
|
"type": "variable",
|
|
@@ -13550,8 +13948,8 @@
|
|
|
13550
13948
|
"value": "$kendo-color-primary",
|
|
13551
13949
|
"scope": "default",
|
|
13552
13950
|
"line": {
|
|
13553
|
-
"start":
|
|
13554
|
-
"end":
|
|
13951
|
+
"start": 62,
|
|
13952
|
+
"end": 62
|
|
13555
13953
|
}
|
|
13556
13954
|
},
|
|
13557
13955
|
"group": [
|
|
@@ -13566,8 +13964,8 @@
|
|
|
13566
13964
|
{
|
|
13567
13965
|
"description": "The text color of the ExpansionPanel sub-title.\n",
|
|
13568
13966
|
"commentRange": {
|
|
13569
|
-
"start":
|
|
13570
|
-
"end":
|
|
13967
|
+
"start": 64,
|
|
13968
|
+
"end": 65
|
|
13571
13969
|
},
|
|
13572
13970
|
"context": {
|
|
13573
13971
|
"type": "variable",
|
|
@@ -13575,8 +13973,8 @@
|
|
|
13575
13973
|
"value": "$kendo-subtle-text",
|
|
13576
13974
|
"scope": "default",
|
|
13577
13975
|
"line": {
|
|
13578
|
-
"start":
|
|
13579
|
-
"end":
|
|
13976
|
+
"start": 66,
|
|
13977
|
+
"end": 66
|
|
13580
13978
|
}
|
|
13581
13979
|
},
|
|
13582
13980
|
"group": [
|
|
@@ -13591,8 +13989,8 @@
|
|
|
13591
13989
|
{
|
|
13592
13990
|
"description": "The horizontal margin of the ExpansionPanel indicator.\n",
|
|
13593
13991
|
"commentRange": {
|
|
13594
|
-
"start":
|
|
13595
|
-
"end":
|
|
13992
|
+
"start": 68,
|
|
13993
|
+
"end": 69
|
|
13596
13994
|
},
|
|
13597
13995
|
"context": {
|
|
13598
13996
|
"type": "variable",
|
|
@@ -13600,8 +13998,8 @@
|
|
|
13600
13998
|
"value": "k-map-get( $kendo-spacing, 3 )",
|
|
13601
13999
|
"scope": "default",
|
|
13602
14000
|
"line": {
|
|
13603
|
-
"start":
|
|
13604
|
-
"end":
|
|
14001
|
+
"start": 70,
|
|
14002
|
+
"end": 70
|
|
13605
14003
|
}
|
|
13606
14004
|
},
|
|
13607
14005
|
"group": [
|
|
@@ -13616,8 +14014,8 @@
|
|
|
13616
14014
|
{
|
|
13617
14015
|
"description": "The horizontal padding of the ExpansionPanel content.\n",
|
|
13618
14016
|
"commentRange": {
|
|
13619
|
-
"start":
|
|
13620
|
-
"end":
|
|
14017
|
+
"start": 72,
|
|
14018
|
+
"end": 73
|
|
13621
14019
|
},
|
|
13622
14020
|
"context": {
|
|
13623
14021
|
"type": "variable",
|
|
@@ -13625,8 +14023,8 @@
|
|
|
13625
14023
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
13626
14024
|
"scope": "default",
|
|
13627
14025
|
"line": {
|
|
13628
|
-
"start":
|
|
13629
|
-
"end":
|
|
14026
|
+
"start": 74,
|
|
14027
|
+
"end": 74
|
|
13630
14028
|
}
|
|
13631
14029
|
},
|
|
13632
14030
|
"group": [
|
|
@@ -13641,8 +14039,8 @@
|
|
|
13641
14039
|
{
|
|
13642
14040
|
"description": "The vertical padding of the ExpansionPanel content.\n",
|
|
13643
14041
|
"commentRange": {
|
|
13644
|
-
"start":
|
|
13645
|
-
"end":
|
|
14042
|
+
"start": 75,
|
|
14043
|
+
"end": 76
|
|
13646
14044
|
},
|
|
13647
14045
|
"context": {
|
|
13648
14046
|
"type": "variable",
|
|
@@ -13650,8 +14048,8 @@
|
|
|
13650
14048
|
"value": "k-map-get( $kendo-spacing, 4 )",
|
|
13651
14049
|
"scope": "default",
|
|
13652
14050
|
"line": {
|
|
13653
|
-
"start":
|
|
13654
|
-
"end":
|
|
14051
|
+
"start": 77,
|
|
14052
|
+
"end": 77
|
|
13655
14053
|
}
|
|
13656
14054
|
},
|
|
13657
14055
|
"group": [
|
|
@@ -14597,7 +14995,7 @@
|
|
|
14597
14995
|
"context": {
|
|
14598
14996
|
"type": "variable",
|
|
14599
14997
|
"name": "kendo-file-manager-listview-item-icon-text",
|
|
14600
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
14998
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
14601
14999
|
"scope": "default",
|
|
14602
15000
|
"line": {
|
|
14603
15001
|
"start": 122,
|
|
@@ -15047,7 +15445,7 @@
|
|
|
15047
15445
|
"context": {
|
|
15048
15446
|
"type": "variable",
|
|
15049
15447
|
"name": "kendo-file-manager-preview-icon-text",
|
|
15050
|
-
"value": "k-try-tint($kendo-file-manager-text, 4)",
|
|
15448
|
+
"value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
|
|
15051
15449
|
"scope": "default",
|
|
15052
15450
|
"line": {
|
|
15053
15451
|
"start": 179,
|
|
@@ -17872,7 +18270,7 @@
|
|
|
17872
18270
|
"context": {
|
|
17873
18271
|
"type": "variable",
|
|
17874
18272
|
"name": "kendo-fieldset-legend-text",
|
|
17875
|
-
"value": "k-try-shade( $kendo-body-text, 2 )",
|
|
18273
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 ))",
|
|
17876
18274
|
"scope": "default",
|
|
17877
18275
|
"line": {
|
|
17878
18276
|
"start": 154,
|
|
@@ -18941,17 +19339,17 @@
|
|
|
18941
19339
|
{
|
|
18942
19340
|
"description": "Background color of the grid row resize indicator\n",
|
|
18943
19341
|
"commentRange": {
|
|
18944
|
-
"start":
|
|
18945
|
-
"end":
|
|
19342
|
+
"start": 315,
|
|
19343
|
+
"end": 316
|
|
18946
19344
|
},
|
|
18947
19345
|
"context": {
|
|
18948
19346
|
"type": "variable",
|
|
18949
19347
|
"name": "kendo-grid-row-resizer-hover-bg",
|
|
18950
|
-
"value": "rgba( k-contrast-color( $kendo-grid-bg ), .12 )",
|
|
19348
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 ))",
|
|
18951
19349
|
"scope": "default",
|
|
18952
19350
|
"line": {
|
|
18953
|
-
"start":
|
|
18954
|
-
"end":
|
|
19351
|
+
"start": 317,
|
|
19352
|
+
"end": 317
|
|
18955
19353
|
}
|
|
18956
19354
|
},
|
|
18957
19355
|
"group": [
|
|
@@ -18966,8 +19364,8 @@
|
|
|
18966
19364
|
{
|
|
18967
19365
|
"description": "Active background color of the grid row resize indicator\n",
|
|
18968
19366
|
"commentRange": {
|
|
18969
|
-
"start":
|
|
18970
|
-
"end":
|
|
19367
|
+
"start": 318,
|
|
19368
|
+
"end": 319
|
|
18971
19369
|
},
|
|
18972
19370
|
"context": {
|
|
18973
19371
|
"type": "variable",
|
|
@@ -18975,8 +19373,8 @@
|
|
|
18975
19373
|
"value": "$kendo-color-primary",
|
|
18976
19374
|
"scope": "default",
|
|
18977
19375
|
"line": {
|
|
18978
|
-
"start":
|
|
18979
|
-
"end":
|
|
19376
|
+
"start": 320,
|
|
19377
|
+
"end": 320
|
|
18980
19378
|
}
|
|
18981
19379
|
},
|
|
18982
19380
|
"group": [
|
|
@@ -18991,8 +19389,8 @@
|
|
|
18991
19389
|
{
|
|
18992
19390
|
"description": "Height of the grid row resize indicator\n",
|
|
18993
19391
|
"commentRange": {
|
|
18994
|
-
"start":
|
|
18995
|
-
"end":
|
|
19392
|
+
"start": 321,
|
|
19393
|
+
"end": 322
|
|
18996
19394
|
},
|
|
18997
19395
|
"context": {
|
|
18998
19396
|
"type": "variable",
|
|
@@ -19000,8 +19398,8 @@
|
|
|
19000
19398
|
"value": "k-map-get( $kendo-spacing, .5 )",
|
|
19001
19399
|
"scope": "default",
|
|
19002
19400
|
"line": {
|
|
19003
|
-
"start":
|
|
19004
|
-
"end":
|
|
19401
|
+
"start": 323,
|
|
19402
|
+
"end": 323
|
|
19005
19403
|
}
|
|
19006
19404
|
},
|
|
19007
19405
|
"group": [
|
|
@@ -20072,7 +20470,7 @@
|
|
|
20072
20470
|
"context": {
|
|
20073
20471
|
"type": "variable",
|
|
20074
20472
|
"name": "kendo-input-outline-border",
|
|
20075
|
-
"value": "rgba( $kendo-button-text, .5)",
|
|
20473
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5))",
|
|
20076
20474
|
"scope": "default",
|
|
20077
20475
|
"line": {
|
|
20078
20476
|
"start": 171,
|
|
@@ -20147,7 +20545,7 @@
|
|
|
20147
20545
|
"context": {
|
|
20148
20546
|
"type": "variable",
|
|
20149
20547
|
"name": "kendo-input-outline-hover-border",
|
|
20150
|
-
"value": "rgba( $kendo-button-text, .8)",
|
|
20548
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8))",
|
|
20151
20549
|
"scope": "default",
|
|
20152
20550
|
"line": {
|
|
20153
20551
|
"start": 181,
|
|
@@ -22747,7 +23145,7 @@
|
|
|
22747
23145
|
"context": {
|
|
22748
23146
|
"type": "variable",
|
|
22749
23147
|
"name": "kendo-listview-item-selected-bg",
|
|
22750
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
23148
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
22751
23149
|
"scope": "default",
|
|
22752
23150
|
"line": {
|
|
22753
23151
|
"start": 44,
|
|
@@ -27422,7 +27820,7 @@
|
|
|
27422
27820
|
"context": {
|
|
27423
27821
|
"type": "variable",
|
|
27424
27822
|
"name": "kendo-picker-outline-border",
|
|
27425
|
-
"value": "rgba( $kendo-picker-outline-text, .5)",
|
|
27823
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5))",
|
|
27426
27824
|
"scope": "default",
|
|
27427
27825
|
"line": {
|
|
27428
27826
|
"start": 372,
|
|
@@ -27472,7 +27870,7 @@
|
|
|
27472
27870
|
"context": {
|
|
27473
27871
|
"type": "variable",
|
|
27474
27872
|
"name": "kendo-picker-outline-hover-text",
|
|
27475
|
-
"value": "k-contrast-color( $kendo-picker-outline-hover-bg )",
|
|
27873
|
+
"value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg ))",
|
|
27476
27874
|
"scope": "default",
|
|
27477
27875
|
"line": {
|
|
27478
27876
|
"start": 379,
|
|
@@ -27772,7 +28170,7 @@
|
|
|
27772
28170
|
"context": {
|
|
27773
28171
|
"type": "variable",
|
|
27774
28172
|
"name": "kendo-picker-flat-hover-bg",
|
|
27775
|
-
"value": "rgba( $kendo-button-text, .04 )",
|
|
28173
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 ))",
|
|
27776
28174
|
"scope": "default",
|
|
27777
28175
|
"line": {
|
|
27778
28176
|
"start": 419,
|
|
@@ -27822,7 +28220,7 @@
|
|
|
27822
28220
|
"context": {
|
|
27823
28221
|
"type": "variable",
|
|
27824
28222
|
"name": "kendo-picker-flat-hover-border",
|
|
27825
|
-
"value": "rgba( $kendo-button-border, .16 )",
|
|
28223
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 ))",
|
|
27826
28224
|
"scope": "default",
|
|
27827
28225
|
"line": {
|
|
27828
28226
|
"start": 425,
|
|
@@ -29147,7 +29545,7 @@
|
|
|
29147
29545
|
"context": {
|
|
29148
29546
|
"type": "variable",
|
|
29149
29547
|
"name": "kendo-progressbar-bg",
|
|
29150
|
-
"value": "k-try-shade( $kendo-component-bg, 1 )",
|
|
29548
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 ))",
|
|
29151
29549
|
"scope": "default",
|
|
29152
29550
|
"line": {
|
|
29153
29551
|
"start": 27,
|
|
@@ -29272,7 +29670,7 @@
|
|
|
29272
29670
|
"context": {
|
|
29273
29671
|
"type": "variable",
|
|
29274
29672
|
"name": "kendo-progressbar-value-text",
|
|
29275
|
-
"value": "k-contrast-legacy( $kendo-progressbar-value-bg )",
|
|
29673
|
+
"value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg ))",
|
|
29276
29674
|
"scope": "default",
|
|
29277
29675
|
"line": {
|
|
29278
29676
|
"start": 43,
|
|
@@ -29297,7 +29695,7 @@
|
|
|
29297
29695
|
"context": {
|
|
29298
29696
|
"type": "variable",
|
|
29299
29697
|
"name": "kendo-progressbar-value-border",
|
|
29300
|
-
"value": "k-try-shade( $kendo-progressbar-value-bg )",
|
|
29698
|
+
"value": "if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg ))",
|
|
29301
29699
|
"scope": "default",
|
|
29302
29700
|
"line": {
|
|
29303
29701
|
"start": 46,
|
|
@@ -31797,7 +32195,7 @@
|
|
|
31797
32195
|
"context": {
|
|
31798
32196
|
"type": "variable",
|
|
31799
32197
|
"name": "kendo-scrollview-pagebutton-primary-border",
|
|
31800
|
-
"value": "k-try-shade( $kendo-color-primary, 2 )",
|
|
32198
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 ))",
|
|
31801
32199
|
"scope": "default",
|
|
31802
32200
|
"line": {
|
|
31803
32201
|
"start": 40,
|
|
@@ -32322,7 +32720,7 @@
|
|
|
32322
32720
|
"context": {
|
|
32323
32721
|
"type": "variable",
|
|
32324
32722
|
"name": "kendo-skeleton-item-bg",
|
|
32325
|
-
"value": "rgba( $kendo-color-inverse, .2 )",
|
|
32723
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 ))",
|
|
32326
32724
|
"scope": "default",
|
|
32327
32725
|
"line": {
|
|
32328
32726
|
"start": 20,
|
|
@@ -33047,7 +33445,7 @@
|
|
|
33047
33445
|
"context": {
|
|
33048
33446
|
"type": "variable",
|
|
33049
33447
|
"name": "kendo-switch-off-track-focus-ring",
|
|
33050
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
33448
|
+
"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 )",
|
|
33051
33449
|
"scope": "default",
|
|
33052
33450
|
"line": {
|
|
33053
33451
|
"start": 71,
|
|
@@ -33172,7 +33570,7 @@
|
|
|
33172
33570
|
"context": {
|
|
33173
33571
|
"type": "variable",
|
|
33174
33572
|
"name": "kendo-switch-off-thumb-bg",
|
|
33175
|
-
"value": "k-try-shade( $kendo-switch-off-track-bg )",
|
|
33573
|
+
"value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg ))",
|
|
33176
33574
|
"scope": "default",
|
|
33177
33575
|
"line": {
|
|
33178
33576
|
"start": 88,
|
|
@@ -33272,7 +33670,7 @@
|
|
|
33272
33670
|
"context": {
|
|
33273
33671
|
"type": "variable",
|
|
33274
33672
|
"name": "kendo-switch-off-thumb-hover-bg",
|
|
33275
|
-
"value": "k-try-shade( $kendo-switch-off-thumb-bg )",
|
|
33673
|
+
"value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg ))",
|
|
33276
33674
|
"scope": "default",
|
|
33277
33675
|
"line": {
|
|
33278
33676
|
"start": 101,
|
|
@@ -33672,7 +34070,7 @@
|
|
|
33672
34070
|
"context": {
|
|
33673
34071
|
"type": "variable",
|
|
33674
34072
|
"name": "kendo-switch-on-track-focus-ring",
|
|
33675
|
-
"value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
|
|
34073
|
+
"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 )",
|
|
33676
34074
|
"scope": "default",
|
|
33677
34075
|
"line": {
|
|
33678
34076
|
"start": 153,
|
|
@@ -33847,7 +34245,7 @@
|
|
|
33847
34245
|
"context": {
|
|
33848
34246
|
"type": "variable",
|
|
33849
34247
|
"name": "kendo-switch-on-thumb-border",
|
|
33850
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
34248
|
+
"value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
33851
34249
|
"scope": "default",
|
|
33852
34250
|
"line": {
|
|
33853
34251
|
"start": 176,
|
|
@@ -33897,7 +34295,7 @@
|
|
|
33897
34295
|
"context": {
|
|
33898
34296
|
"type": "variable",
|
|
33899
34297
|
"name": "kendo-switch-on-thumb-hover-bg",
|
|
33900
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-bg )",
|
|
34298
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg ))",
|
|
33901
34299
|
"scope": "default",
|
|
33902
34300
|
"line": {
|
|
33903
34301
|
"start": 183,
|
|
@@ -33947,7 +34345,7 @@
|
|
|
33947
34345
|
"context": {
|
|
33948
34346
|
"type": "variable",
|
|
33949
34347
|
"name": "kendo-switch-on-thumb-hover-border",
|
|
33950
|
-
"value": "k-try-shade( $kendo-switch-on-thumb-hover-bg )",
|
|
34348
|
+
"value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg ))",
|
|
33951
34349
|
"scope": "default",
|
|
33952
34350
|
"line": {
|
|
33953
34351
|
"start": 189,
|
|
@@ -34522,7 +34920,7 @@
|
|
|
34522
34920
|
"context": {
|
|
34523
34921
|
"type": "variable",
|
|
34524
34922
|
"name": "kendo-table-alt-row-bg",
|
|
34525
|
-
"value": "k-try-shade( $kendo-table-bg, .5 )",
|
|
34923
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 ))",
|
|
34526
34924
|
"scope": "default",
|
|
34527
34925
|
"line": {
|
|
34528
34926
|
"start": 114,
|
|
@@ -34597,7 +34995,7 @@
|
|
|
34597
34995
|
"context": {
|
|
34598
34996
|
"type": "variable",
|
|
34599
34997
|
"name": "kendo-table-hover-bg",
|
|
34600
|
-
"value": "k-try-shade( $kendo-table-bg, 1 )",
|
|
34998
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 ))",
|
|
34601
34999
|
"scope": "default",
|
|
34602
35000
|
"line": {
|
|
34603
35001
|
"start": 125,
|
|
@@ -34772,7 +35170,7 @@
|
|
|
34772
35170
|
"context": {
|
|
34773
35171
|
"type": "variable",
|
|
34774
35172
|
"name": "kendo-table-selected-bg",
|
|
34775
|
-
"value": "rgba( $kendo-selected-bg, .25 )",
|
|
35173
|
+
"value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
|
|
34776
35174
|
"scope": "default",
|
|
34777
35175
|
"line": {
|
|
34778
35176
|
"start": 150,
|
|
@@ -36697,7 +37095,7 @@
|
|
|
36697
37095
|
"context": {
|
|
36698
37096
|
"type": "variable",
|
|
36699
37097
|
"name": "kendo-tooltip-bg",
|
|
36700
|
-
"value": "rgba( k-contrast-color( $kendo-body-bg ), .75 )",
|
|
37098
|
+
"value": "if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 ))",
|
|
36701
37099
|
"scope": "default",
|
|
36702
37100
|
"line": {
|
|
36703
37101
|
"start": 39,
|
|
@@ -36722,7 +37120,7 @@
|
|
|
36722
37120
|
"context": {
|
|
36723
37121
|
"type": "variable",
|
|
36724
37122
|
"name": "kendo-tooltip-text",
|
|
36725
|
-
"value": "k-contrast-color( $kendo-tooltip-bg )",
|
|
37123
|
+
"value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg ))",
|
|
36726
37124
|
"scope": "default",
|
|
36727
37125
|
"line": {
|
|
36728
37126
|
"start": 42,
|
|
@@ -38066,8 +38464,8 @@
|
|
|
38066
38464
|
{
|
|
38067
38465
|
"description": "Base font size across all components.\n",
|
|
38068
38466
|
"commentRange": {
|
|
38069
|
-
"start":
|
|
38070
|
-
"end":
|
|
38467
|
+
"start": 109,
|
|
38468
|
+
"end": 110
|
|
38071
38469
|
},
|
|
38072
38470
|
"context": {
|
|
38073
38471
|
"type": "variable",
|
|
@@ -38075,8 +38473,8 @@
|
|
|
38075
38473
|
"value": "14px",
|
|
38076
38474
|
"scope": "default",
|
|
38077
38475
|
"line": {
|
|
38078
|
-
"start":
|
|
38079
|
-
"end":
|
|
38476
|
+
"start": 111,
|
|
38477
|
+
"end": 111
|
|
38080
38478
|
}
|
|
38081
38479
|
},
|
|
38082
38480
|
"group": [
|
|
@@ -38091,8 +38489,8 @@
|
|
|
38091
38489
|
{
|
|
38092
38490
|
"description": "Font family for text.\n",
|
|
38093
38491
|
"commentRange": {
|
|
38094
|
-
"start":
|
|
38095
|
-
"end":
|
|
38492
|
+
"start": 126,
|
|
38493
|
+
"end": 127
|
|
38096
38494
|
},
|
|
38097
38495
|
"context": {
|
|
38098
38496
|
"type": "variable",
|
|
@@ -38100,8 +38498,8 @@
|
|
|
38100
38498
|
"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\"",
|
|
38101
38499
|
"scope": "default",
|
|
38102
38500
|
"line": {
|
|
38103
|
-
"start":
|
|
38104
|
-
"end":
|
|
38501
|
+
"start": 128,
|
|
38502
|
+
"end": 128
|
|
38105
38503
|
}
|
|
38106
38504
|
},
|
|
38107
38505
|
"group": [
|
|
@@ -38116,8 +38514,8 @@
|
|
|
38116
38514
|
{
|
|
38117
38515
|
"description": "Font family for monospaced text. Used for styling the code.\n",
|
|
38118
38516
|
"commentRange": {
|
|
38119
|
-
"start":
|
|
38120
|
-
"end":
|
|
38517
|
+
"start": 130,
|
|
38518
|
+
"end": 131
|
|
38121
38519
|
},
|
|
38122
38520
|
"context": {
|
|
38123
38521
|
"type": "variable",
|
|
@@ -38125,8 +38523,8 @@
|
|
|
38125
38523
|
"value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
|
|
38126
38524
|
"scope": "default",
|
|
38127
38525
|
"line": {
|
|
38128
|
-
"start":
|
|
38129
|
-
"end":
|
|
38526
|
+
"start": 132,
|
|
38527
|
+
"end": 132
|
|
38130
38528
|
}
|
|
38131
38529
|
},
|
|
38132
38530
|
"group": [
|
|
@@ -38141,8 +38539,8 @@
|
|
|
38141
38539
|
{
|
|
38142
38540
|
"description": "Font family across all components.\n",
|
|
38143
38541
|
"commentRange": {
|
|
38144
|
-
"start":
|
|
38145
|
-
"end":
|
|
38542
|
+
"start": 134,
|
|
38543
|
+
"end": 135
|
|
38146
38544
|
},
|
|
38147
38545
|
"context": {
|
|
38148
38546
|
"type": "variable",
|
|
@@ -38150,8 +38548,8 @@
|
|
|
38150
38548
|
"value": "inherit",
|
|
38151
38549
|
"scope": "default",
|
|
38152
38550
|
"line": {
|
|
38153
|
-
"start":
|
|
38154
|
-
"end":
|
|
38551
|
+
"start": 136,
|
|
38552
|
+
"end": 136
|
|
38155
38553
|
}
|
|
38156
38554
|
},
|
|
38157
38555
|
"group": [
|
|
@@ -38166,8 +38564,8 @@
|
|
|
38166
38564
|
{
|
|
38167
38565
|
"description": "Line height used along with $kendo-font-size.\n",
|
|
38168
38566
|
"commentRange": {
|
|
38169
|
-
"start":
|
|
38170
|
-
"end":
|
|
38567
|
+
"start": 138,
|
|
38568
|
+
"end": 139
|
|
38171
38569
|
},
|
|
38172
38570
|
"context": {
|
|
38173
38571
|
"type": "variable",
|
|
@@ -38175,8 +38573,8 @@
|
|
|
38175
38573
|
"value": "k-math-div( 20, 14 )",
|
|
38176
38574
|
"scope": "default",
|
|
38177
38575
|
"line": {
|
|
38178
|
-
"start":
|
|
38179
|
-
"end":
|
|
38576
|
+
"start": 140,
|
|
38577
|
+
"end": 140
|
|
38180
38578
|
}
|
|
38181
38579
|
},
|
|
38182
38580
|
"group": [
|
|
@@ -38191,8 +38589,8 @@
|
|
|
38191
38589
|
{
|
|
38192
38590
|
"description": "Border radius for all components.\n",
|
|
38193
38591
|
"commentRange": {
|
|
38194
|
-
"start":
|
|
38195
|
-
"end":
|
|
38592
|
+
"start": 82,
|
|
38593
|
+
"end": 82
|
|
38196
38594
|
},
|
|
38197
38595
|
"context": {
|
|
38198
38596
|
"type": "variable",
|
|
@@ -38200,8 +38598,8 @@
|
|
|
38200
38598
|
"value": "k-map-get( $kendo-spacing, 1 )",
|
|
38201
38599
|
"scope": "default",
|
|
38202
38600
|
"line": {
|
|
38203
|
-
"start":
|
|
38204
|
-
"end":
|
|
38601
|
+
"start": 83,
|
|
38602
|
+
"end": 83
|
|
38205
38603
|
}
|
|
38206
38604
|
},
|
|
38207
38605
|
"access": "public",
|
|
@@ -38216,8 +38614,8 @@
|
|
|
38216
38614
|
{
|
|
38217
38615
|
"description": "The background of the components' chrome area.\n",
|
|
38218
38616
|
"commentRange": {
|
|
38219
|
-
"start":
|
|
38220
|
-
"end":
|
|
38617
|
+
"start": 306,
|
|
38618
|
+
"end": 306
|
|
38221
38619
|
},
|
|
38222
38620
|
"context": {
|
|
38223
38621
|
"type": "variable",
|
|
@@ -38225,8 +38623,8 @@
|
|
|
38225
38623
|
"value": "#f0f0f0",
|
|
38226
38624
|
"scope": "default",
|
|
38227
38625
|
"line": {
|
|
38228
|
-
"start":
|
|
38229
|
-
"end":
|
|
38626
|
+
"start": 307,
|
|
38627
|
+
"end": 307
|
|
38230
38628
|
}
|
|
38231
38629
|
},
|
|
38232
38630
|
"access": "public",
|
|
@@ -38234,15 +38632,15 @@
|
|
|
38234
38632
|
"undefined"
|
|
38235
38633
|
],
|
|
38236
38634
|
"file": {
|
|
38237
|
-
"path": "
|
|
38238
|
-
"name": "
|
|
38635
|
+
"path": "core/color-system/_swatch.scss",
|
|
38636
|
+
"name": "_swatch.scss"
|
|
38239
38637
|
}
|
|
38240
38638
|
},
|
|
38241
38639
|
{
|
|
38242
38640
|
"description": "The text color of the components' chrome area.\n",
|
|
38243
38641
|
"commentRange": {
|
|
38244
|
-
"start":
|
|
38245
|
-
"end":
|
|
38642
|
+
"start": 308,
|
|
38643
|
+
"end": 308
|
|
38246
38644
|
},
|
|
38247
38645
|
"context": {
|
|
38248
38646
|
"type": "variable",
|
|
@@ -38250,8 +38648,8 @@
|
|
|
38250
38648
|
"value": "$kendo-body-text",
|
|
38251
38649
|
"scope": "default",
|
|
38252
38650
|
"line": {
|
|
38253
|
-
"start":
|
|
38254
|
-
"end":
|
|
38651
|
+
"start": 309,
|
|
38652
|
+
"end": 309
|
|
38255
38653
|
}
|
|
38256
38654
|
},
|
|
38257
38655
|
"access": "public",
|
|
@@ -38259,15 +38657,15 @@
|
|
|
38259
38657
|
"undefined"
|
|
38260
38658
|
],
|
|
38261
38659
|
"file": {
|
|
38262
|
-
"path": "
|
|
38263
|
-
"name": "
|
|
38660
|
+
"path": "core/color-system/_swatch.scss",
|
|
38661
|
+
"name": "_swatch.scss"
|
|
38264
38662
|
}
|
|
38265
38663
|
},
|
|
38266
38664
|
{
|
|
38267
38665
|
"description": "The border color of the components' chrome area.\n",
|
|
38268
38666
|
"commentRange": {
|
|
38269
|
-
"start":
|
|
38270
|
-
"end":
|
|
38667
|
+
"start": 310,
|
|
38668
|
+
"end": 310
|
|
38271
38669
|
},
|
|
38272
38670
|
"context": {
|
|
38273
38671
|
"type": "variable",
|
|
@@ -38275,8 +38673,8 @@
|
|
|
38275
38673
|
"value": "k-try-shade( $kendo-base-bg, 2 )",
|
|
38276
38674
|
"scope": "default",
|
|
38277
38675
|
"line": {
|
|
38278
|
-
"start":
|
|
38279
|
-
"end":
|
|
38676
|
+
"start": 311,
|
|
38677
|
+
"end": 311
|
|
38280
38678
|
}
|
|
38281
38679
|
},
|
|
38282
38680
|
"access": "public",
|
|
@@ -38284,15 +38682,15 @@
|
|
|
38284
38682
|
"undefined"
|
|
38285
38683
|
],
|
|
38286
38684
|
"file": {
|
|
38287
|
-
"path": "
|
|
38288
|
-
"name": "
|
|
38685
|
+
"path": "core/color-system/_swatch.scss",
|
|
38686
|
+
"name": "_swatch.scss"
|
|
38289
38687
|
}
|
|
38290
38688
|
},
|
|
38291
38689
|
{
|
|
38292
38690
|
"description": "The gradient background of the components' chrome area.\n",
|
|
38293
38691
|
"commentRange": {
|
|
38294
|
-
"start":
|
|
38295
|
-
"end":
|
|
38692
|
+
"start": 312,
|
|
38693
|
+
"end": 312
|
|
38296
38694
|
},
|
|
38297
38695
|
"context": {
|
|
38298
38696
|
"type": "variable",
|
|
@@ -38300,8 +38698,8 @@
|
|
|
38300
38698
|
"value": "rgba( white, .1 ), rgba( white, 0 )",
|
|
38301
38699
|
"scope": "default",
|
|
38302
38700
|
"line": {
|
|
38303
|
-
"start":
|
|
38304
|
-
"end":
|
|
38701
|
+
"start": 313,
|
|
38702
|
+
"end": 313
|
|
38305
38703
|
}
|
|
38306
38704
|
},
|
|
38307
38705
|
"access": "public",
|
|
@@ -38309,15 +38707,15 @@
|
|
|
38309
38707
|
"undefined"
|
|
38310
38708
|
],
|
|
38311
38709
|
"file": {
|
|
38312
|
-
"path": "
|
|
38313
|
-
"name": "
|
|
38710
|
+
"path": "core/color-system/_swatch.scss",
|
|
38711
|
+
"name": "_swatch.scss"
|
|
38314
38712
|
}
|
|
38315
38713
|
},
|
|
38316
38714
|
{
|
|
38317
38715
|
"description": "The background of hovered items.\n",
|
|
38318
38716
|
"commentRange": {
|
|
38319
|
-
"start":
|
|
38320
|
-
"end":
|
|
38717
|
+
"start": 328,
|
|
38718
|
+
"end": 328
|
|
38321
38719
|
},
|
|
38322
38720
|
"context": {
|
|
38323
38721
|
"type": "variable",
|
|
@@ -38325,8 +38723,8 @@
|
|
|
38325
38723
|
"value": "k-try-shade( $kendo-base-bg, 1 )",
|
|
38326
38724
|
"scope": "default",
|
|
38327
38725
|
"line": {
|
|
38328
|
-
"start":
|
|
38329
|
-
"end":
|
|
38726
|
+
"start": 329,
|
|
38727
|
+
"end": 329
|
|
38330
38728
|
}
|
|
38331
38729
|
},
|
|
38332
38730
|
"access": "public",
|
|
@@ -38334,15 +38732,15 @@
|
|
|
38334
38732
|
"undefined"
|
|
38335
38733
|
],
|
|
38336
38734
|
"file": {
|
|
38337
|
-
"path": "
|
|
38338
|
-
"name": "
|
|
38735
|
+
"path": "core/color-system/_swatch.scss",
|
|
38736
|
+
"name": "_swatch.scss"
|
|
38339
38737
|
}
|
|
38340
38738
|
},
|
|
38341
38739
|
{
|
|
38342
38740
|
"description": "The text color of hovered items.\n",
|
|
38343
38741
|
"commentRange": {
|
|
38344
|
-
"start":
|
|
38345
|
-
"end":
|
|
38742
|
+
"start": 330,
|
|
38743
|
+
"end": 330
|
|
38346
38744
|
},
|
|
38347
38745
|
"context": {
|
|
38348
38746
|
"type": "variable",
|
|
@@ -38350,8 +38748,8 @@
|
|
|
38350
38748
|
"value": "$kendo-base-text",
|
|
38351
38749
|
"scope": "default",
|
|
38352
38750
|
"line": {
|
|
38353
|
-
"start":
|
|
38354
|
-
"end":
|
|
38751
|
+
"start": 331,
|
|
38752
|
+
"end": 331
|
|
38355
38753
|
}
|
|
38356
38754
|
},
|
|
38357
38755
|
"access": "public",
|
|
@@ -38359,15 +38757,15 @@
|
|
|
38359
38757
|
"undefined"
|
|
38360
38758
|
],
|
|
38361
38759
|
"file": {
|
|
38362
|
-
"path": "
|
|
38363
|
-
"name": "
|
|
38760
|
+
"path": "core/color-system/_swatch.scss",
|
|
38761
|
+
"name": "_swatch.scss"
|
|
38364
38762
|
}
|
|
38365
38763
|
},
|
|
38366
38764
|
{
|
|
38367
38765
|
"description": "The border color of hovered items.\n",
|
|
38368
38766
|
"commentRange": {
|
|
38369
|
-
"start":
|
|
38370
|
-
"end":
|
|
38767
|
+
"start": 332,
|
|
38768
|
+
"end": 332
|
|
38371
38769
|
},
|
|
38372
38770
|
"context": {
|
|
38373
38771
|
"type": "variable",
|
|
@@ -38375,8 +38773,8 @@
|
|
|
38375
38773
|
"value": "k-try-shade( $kendo-hover-bg, 2 )",
|
|
38376
38774
|
"scope": "default",
|
|
38377
38775
|
"line": {
|
|
38378
|
-
"start":
|
|
38379
|
-
"end":
|
|
38776
|
+
"start": 333,
|
|
38777
|
+
"end": 333
|
|
38380
38778
|
}
|
|
38381
38779
|
},
|
|
38382
38780
|
"access": "public",
|
|
@@ -38384,15 +38782,15 @@
|
|
|
38384
38782
|
"undefined"
|
|
38385
38783
|
],
|
|
38386
38784
|
"file": {
|
|
38387
|
-
"path": "
|
|
38388
|
-
"name": "
|
|
38785
|
+
"path": "core/color-system/_swatch.scss",
|
|
38786
|
+
"name": "_swatch.scss"
|
|
38389
38787
|
}
|
|
38390
38788
|
},
|
|
38391
38789
|
{
|
|
38392
38790
|
"description": "The gradient background of hovered items.\n",
|
|
38393
38791
|
"commentRange": {
|
|
38394
|
-
"start":
|
|
38395
|
-
"end":
|
|
38792
|
+
"start": 334,
|
|
38793
|
+
"end": 334
|
|
38396
38794
|
},
|
|
38397
38795
|
"context": {
|
|
38398
38796
|
"type": "variable",
|
|
@@ -38400,8 +38798,8 @@
|
|
|
38400
38798
|
"value": "$kendo-base-gradient",
|
|
38401
38799
|
"scope": "default",
|
|
38402
38800
|
"line": {
|
|
38403
|
-
"start":
|
|
38404
|
-
"end":
|
|
38801
|
+
"start": 335,
|
|
38802
|
+
"end": 335
|
|
38405
38803
|
}
|
|
38406
38804
|
},
|
|
38407
38805
|
"access": "public",
|
|
@@ -38409,15 +38807,15 @@
|
|
|
38409
38807
|
"undefined"
|
|
38410
38808
|
],
|
|
38411
38809
|
"file": {
|
|
38412
|
-
"path": "
|
|
38413
|
-
"name": "
|
|
38810
|
+
"path": "core/color-system/_swatch.scss",
|
|
38811
|
+
"name": "_swatch.scss"
|
|
38414
38812
|
}
|
|
38415
38813
|
},
|
|
38416
38814
|
{
|
|
38417
38815
|
"description": "The background of selected items.\n",
|
|
38418
38816
|
"commentRange": {
|
|
38419
|
-
"start":
|
|
38420
|
-
"end":
|
|
38817
|
+
"start": 337,
|
|
38818
|
+
"end": 337
|
|
38421
38819
|
},
|
|
38422
38820
|
"context": {
|
|
38423
38821
|
"type": "variable",
|
|
@@ -38425,8 +38823,8 @@
|
|
|
38425
38823
|
"value": "$kendo-color-primary",
|
|
38426
38824
|
"scope": "default",
|
|
38427
38825
|
"line": {
|
|
38428
|
-
"start":
|
|
38429
|
-
"end":
|
|
38826
|
+
"start": 338,
|
|
38827
|
+
"end": 338
|
|
38430
38828
|
}
|
|
38431
38829
|
},
|
|
38432
38830
|
"access": "public",
|
|
@@ -38434,15 +38832,15 @@
|
|
|
38434
38832
|
"undefined"
|
|
38435
38833
|
],
|
|
38436
38834
|
"file": {
|
|
38437
|
-
"path": "
|
|
38438
|
-
"name": "
|
|
38835
|
+
"path": "core/color-system/_swatch.scss",
|
|
38836
|
+
"name": "_swatch.scss"
|
|
38439
38837
|
}
|
|
38440
38838
|
},
|
|
38441
38839
|
{
|
|
38442
38840
|
"description": "The text color of selected items.\n",
|
|
38443
38841
|
"commentRange": {
|
|
38444
|
-
"start":
|
|
38445
|
-
"end":
|
|
38842
|
+
"start": 339,
|
|
38843
|
+
"end": 339
|
|
38446
38844
|
},
|
|
38447
38845
|
"context": {
|
|
38448
38846
|
"type": "variable",
|
|
@@ -38450,8 +38848,8 @@
|
|
|
38450
38848
|
"value": "k-contrast-legacy( $kendo-selected-bg )",
|
|
38451
38849
|
"scope": "default",
|
|
38452
38850
|
"line": {
|
|
38453
|
-
"start":
|
|
38454
|
-
"end":
|
|
38851
|
+
"start": 340,
|
|
38852
|
+
"end": 340
|
|
38455
38853
|
}
|
|
38456
38854
|
},
|
|
38457
38855
|
"access": "public",
|
|
@@ -38459,15 +38857,15 @@
|
|
|
38459
38857
|
"undefined"
|
|
38460
38858
|
],
|
|
38461
38859
|
"file": {
|
|
38462
|
-
"path": "
|
|
38463
|
-
"name": "
|
|
38860
|
+
"path": "core/color-system/_swatch.scss",
|
|
38861
|
+
"name": "_swatch.scss"
|
|
38464
38862
|
}
|
|
38465
38863
|
},
|
|
38466
38864
|
{
|
|
38467
38865
|
"description": "The border color of selected items.\n",
|
|
38468
38866
|
"commentRange": {
|
|
38469
|
-
"start":
|
|
38470
|
-
"end":
|
|
38867
|
+
"start": 341,
|
|
38868
|
+
"end": 341
|
|
38471
38869
|
},
|
|
38472
38870
|
"context": {
|
|
38473
38871
|
"type": "variable",
|
|
@@ -38475,8 +38873,8 @@
|
|
|
38475
38873
|
"value": "k-try-shade( $kendo-selected-bg, 2 )",
|
|
38476
38874
|
"scope": "default",
|
|
38477
38875
|
"line": {
|
|
38478
|
-
"start":
|
|
38479
|
-
"end":
|
|
38876
|
+
"start": 342,
|
|
38877
|
+
"end": 342
|
|
38480
38878
|
}
|
|
38481
38879
|
},
|
|
38482
38880
|
"access": "public",
|
|
@@ -38484,15 +38882,15 @@
|
|
|
38484
38882
|
"undefined"
|
|
38485
38883
|
],
|
|
38486
38884
|
"file": {
|
|
38487
|
-
"path": "
|
|
38488
|
-
"name": "
|
|
38885
|
+
"path": "core/color-system/_swatch.scss",
|
|
38886
|
+
"name": "_swatch.scss"
|
|
38489
38887
|
}
|
|
38490
38888
|
},
|
|
38491
38889
|
{
|
|
38492
38890
|
"description": "The gradient background of selected items.\n",
|
|
38493
38891
|
"commentRange": {
|
|
38494
|
-
"start":
|
|
38495
|
-
"end":
|
|
38892
|
+
"start": 343,
|
|
38893
|
+
"end": 343
|
|
38496
38894
|
},
|
|
38497
38895
|
"context": {
|
|
38498
38896
|
"type": "variable",
|
|
@@ -38500,8 +38898,8 @@
|
|
|
38500
38898
|
"value": "$kendo-base-gradient",
|
|
38501
38899
|
"scope": "default",
|
|
38502
38900
|
"line": {
|
|
38503
|
-
"start":
|
|
38504
|
-
"end":
|
|
38901
|
+
"start": 344,
|
|
38902
|
+
"end": 344
|
|
38505
38903
|
}
|
|
38506
38904
|
},
|
|
38507
38905
|
"access": "public",
|
|
@@ -38509,8 +38907,133 @@
|
|
|
38509
38907
|
"undefined"
|
|
38510
38908
|
],
|
|
38511
38909
|
"file": {
|
|
38512
|
-
"path": "
|
|
38513
|
-
"name": "
|
|
38910
|
+
"path": "core/color-system/_swatch.scss",
|
|
38911
|
+
"name": "_swatch.scss"
|
|
38912
|
+
}
|
|
38913
|
+
},
|
|
38914
|
+
{
|
|
38915
|
+
"description": "The background of selected and hovered items.\n",
|
|
38916
|
+
"commentRange": {
|
|
38917
|
+
"start": 346,
|
|
38918
|
+
"end": 346
|
|
38919
|
+
},
|
|
38920
|
+
"context": {
|
|
38921
|
+
"type": "variable",
|
|
38922
|
+
"name": "kendo-selected-hover-bg",
|
|
38923
|
+
"value": "k-try-shade( $kendo-selected-bg, 1 )",
|
|
38924
|
+
"scope": "default",
|
|
38925
|
+
"line": {
|
|
38926
|
+
"start": 347,
|
|
38927
|
+
"end": 347
|
|
38928
|
+
}
|
|
38929
|
+
},
|
|
38930
|
+
"access": "public",
|
|
38931
|
+
"group": [
|
|
38932
|
+
"undefined"
|
|
38933
|
+
],
|
|
38934
|
+
"file": {
|
|
38935
|
+
"path": "core/color-system/_swatch.scss",
|
|
38936
|
+
"name": "_swatch.scss"
|
|
38937
|
+
}
|
|
38938
|
+
},
|
|
38939
|
+
{
|
|
38940
|
+
"description": "The text color of selected and hovered items.\n",
|
|
38941
|
+
"commentRange": {
|
|
38942
|
+
"start": 348,
|
|
38943
|
+
"end": 348
|
|
38944
|
+
},
|
|
38945
|
+
"context": {
|
|
38946
|
+
"type": "variable",
|
|
38947
|
+
"name": "kendo-selected-hover-text",
|
|
38948
|
+
"value": "k-contrast-legacy( $kendo-selected-hover-bg )",
|
|
38949
|
+
"scope": "default",
|
|
38950
|
+
"line": {
|
|
38951
|
+
"start": 349,
|
|
38952
|
+
"end": 349
|
|
38953
|
+
}
|
|
38954
|
+
},
|
|
38955
|
+
"access": "public",
|
|
38956
|
+
"group": [
|
|
38957
|
+
"undefined"
|
|
38958
|
+
],
|
|
38959
|
+
"file": {
|
|
38960
|
+
"path": "core/color-system/_swatch.scss",
|
|
38961
|
+
"name": "_swatch.scss"
|
|
38962
|
+
}
|
|
38963
|
+
},
|
|
38964
|
+
{
|
|
38965
|
+
"description": "The border of selected and hovered items.\n",
|
|
38966
|
+
"commentRange": {
|
|
38967
|
+
"start": 350,
|
|
38968
|
+
"end": 350
|
|
38969
|
+
},
|
|
38970
|
+
"context": {
|
|
38971
|
+
"type": "variable",
|
|
38972
|
+
"name": "kendo-selected-hover-border",
|
|
38973
|
+
"value": "$kendo-selected-border",
|
|
38974
|
+
"scope": "default",
|
|
38975
|
+
"line": {
|
|
38976
|
+
"start": 351,
|
|
38977
|
+
"end": 351
|
|
38978
|
+
}
|
|
38979
|
+
},
|
|
38980
|
+
"access": "public",
|
|
38981
|
+
"group": [
|
|
38982
|
+
"undefined"
|
|
38983
|
+
],
|
|
38984
|
+
"file": {
|
|
38985
|
+
"path": "core/color-system/_swatch.scss",
|
|
38986
|
+
"name": "_swatch.scss"
|
|
38987
|
+
}
|
|
38988
|
+
},
|
|
38989
|
+
{
|
|
38990
|
+
"description": "The gradient of selected and hovered items.\n",
|
|
38991
|
+
"commentRange": {
|
|
38992
|
+
"start": 352,
|
|
38993
|
+
"end": 352
|
|
38994
|
+
},
|
|
38995
|
+
"context": {
|
|
38996
|
+
"type": "variable",
|
|
38997
|
+
"name": "kendo-selected-hover-gradient",
|
|
38998
|
+
"value": "$kendo-selected-gradient",
|
|
38999
|
+
"scope": "default",
|
|
39000
|
+
"line": {
|
|
39001
|
+
"start": 353,
|
|
39002
|
+
"end": 353
|
|
39003
|
+
}
|
|
39004
|
+
},
|
|
39005
|
+
"access": "public",
|
|
39006
|
+
"group": [
|
|
39007
|
+
"undefined"
|
|
39008
|
+
],
|
|
39009
|
+
"file": {
|
|
39010
|
+
"path": "core/color-system/_swatch.scss",
|
|
39011
|
+
"name": "_swatch.scss"
|
|
39012
|
+
}
|
|
39013
|
+
},
|
|
39014
|
+
{
|
|
39015
|
+
"description": "Text color of disabled items.\n",
|
|
39016
|
+
"commentRange": {
|
|
39017
|
+
"start": 355,
|
|
39018
|
+
"end": 355
|
|
39019
|
+
},
|
|
39020
|
+
"context": {
|
|
39021
|
+
"type": "variable",
|
|
39022
|
+
"name": "kendo-disabled-text",
|
|
39023
|
+
"value": "#8d8d8d",
|
|
39024
|
+
"scope": "default",
|
|
39025
|
+
"line": {
|
|
39026
|
+
"start": 356,
|
|
39027
|
+
"end": 356
|
|
39028
|
+
}
|
|
39029
|
+
},
|
|
39030
|
+
"access": "public",
|
|
39031
|
+
"group": [
|
|
39032
|
+
"undefined"
|
|
39033
|
+
],
|
|
39034
|
+
"file": {
|
|
39035
|
+
"path": "core/color-system/_swatch.scss",
|
|
39036
|
+
"name": "_swatch.scss"
|
|
38514
39037
|
}
|
|
38515
39038
|
},
|
|
38516
39039
|
{
|