@progress/kendo-theme-default 4.41.2-dev.0 → 4.41.3-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +67 -95
- package/dist/all.scss +74 -109
- package/dist/default-main-dark.scss +3 -3
- package/lib/swatches/default-main-dark.json +4 -4
- package/package.json +2 -6
- package/scss/_variables.scss +1 -1
- package/scss/button/_layout.scss +2 -2
- package/scss/button/_theme.scss +1 -1
- package/scss/button/_variables.scss +2 -2
- package/scss/chat/_layout.scss +5 -0
- package/scss/chat/_theme.scss +3 -0
- package/scss/common/_selection.scss +2 -0
- package/scss/dataviz/_layout.scss +1 -15
- package/scss/dataviz/_theme.scss +2 -10
- package/scss/dataviz/_variables.scss +12 -13
- package/scss/datetime/_layout.scss +0 -17
- package/scss/input/_variables.scss +2 -2
- package/scss/maskedtextbox/_layout.scss +0 -5
- package/scss/notification/_layout.scss +2 -2
- package/scss/numerictextbox/_theme.scss +4 -0
- package/scss/pager/_theme.scss +2 -1
- package/scss/pivotgrid/_layout.scss +3 -3
- package/scss/popover/_layout.scss +1 -0
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/spreadsheet/_layout.scss +12 -15
- package/scss/tabstrip/_layout.scss +15 -18
- package/scss/textarea/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -1076,7 +1076,7 @@ $component-text: $body-text !default;
|
|
|
1076
1076
|
/// Border color of a component.
|
|
1077
1077
|
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$grid-border: component-border !default;`.
|
|
1078
1078
|
/// @group component
|
|
1079
|
-
$component-border: rgba( black, .08 ) !default;
|
|
1079
|
+
$component-border: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
1080
1080
|
|
|
1081
1081
|
|
|
1082
1082
|
/// The background of the components' chrome area.
|
|
@@ -2766,6 +2766,7 @@ $display4-letter-spacing: null !default;
|
|
|
2766
2766
|
position: absolute;
|
|
2767
2767
|
z-index: 100000;
|
|
2768
2768
|
}
|
|
2769
|
+
|
|
2769
2770
|
.k-marquee-color,
|
|
2770
2771
|
.k-marquee-text {
|
|
2771
2772
|
position: absolute;
|
|
@@ -2774,6 +2775,7 @@ $display4-letter-spacing: null !default;
|
|
|
2774
2775
|
width: 100%;
|
|
2775
2776
|
height: 100%;
|
|
2776
2777
|
}
|
|
2778
|
+
|
|
2777
2779
|
.k-marquee-color {
|
|
2778
2780
|
color: $selected-text;
|
|
2779
2781
|
background-color: $selected-bg;
|
|
@@ -7392,8 +7394,8 @@ $flat-button-focus-opacity: null !default;
|
|
|
7392
7394
|
$flat-button-active-opacity: .16 !default;
|
|
7393
7395
|
$flat-button-selected-opacity: .2 !default;
|
|
7394
7396
|
|
|
7395
|
-
$clear-button-text:
|
|
7396
|
-
$clear-button-hover-text:
|
|
7397
|
+
$clear-button-text: inherit !default;
|
|
7398
|
+
$clear-button-hover-text: inherit !default;
|
|
7397
7399
|
$clear-button-focused-opacity: .1 !default;
|
|
7398
7400
|
|
|
7399
7401
|
// #endregion
|
|
@@ -7454,8 +7456,8 @@ $input-focused-shadow: 0 0 0 2px rgba( $input-focused-border, .08 ) !default;
|
|
|
7454
7456
|
$input-placeholder-text: $subtle-text !default;
|
|
7455
7457
|
$input-placeholder-opacity: 1 !default;
|
|
7456
7458
|
|
|
7457
|
-
$input-selected-text: $primary-contrast !default;
|
|
7458
7459
|
$input-selected-bg: $primary !default;
|
|
7460
|
+
$input-selected-text: $primary-contrast !default;
|
|
7459
7461
|
|
|
7460
7462
|
$input-clear-button-focused-background: $base-text !default;
|
|
7461
7463
|
$input-clear-button-focused-opacity: .2 !default;
|
|
@@ -7493,7 +7495,7 @@ $input-icon-opacity: null !default;
|
|
|
7493
7495
|
|
|
7494
7496
|
|
|
7495
7497
|
// Input separator
|
|
7496
|
-
$input-separator-color: $
|
|
7498
|
+
$input-separator-color: $input-text !default;
|
|
7497
7499
|
$input-separator-opacity: .5 !default;
|
|
7498
7500
|
|
|
7499
7501
|
// #endregion
|
|
@@ -7852,11 +7854,11 @@ $input-separator-opacity: .5 !default;
|
|
|
7852
7854
|
|
|
7853
7855
|
// k-button
|
|
7854
7856
|
> .k-button:first-child {
|
|
7855
|
-
@include border-
|
|
7857
|
+
@include border-right-radius( $button-border-radius );
|
|
7856
7858
|
}
|
|
7857
7859
|
> .k-split-button-arrow,
|
|
7858
7860
|
> .k-button:last-child {
|
|
7859
|
-
@include border-
|
|
7861
|
+
@include border-left-radius( $button-border-radius );
|
|
7860
7862
|
}
|
|
7861
7863
|
}
|
|
7862
7864
|
}
|
|
@@ -8305,7 +8307,7 @@ $input-separator-opacity: .5 !default;
|
|
|
8305
8307
|
&.k-state-focused,
|
|
8306
8308
|
&.k-state-focused:active {
|
|
8307
8309
|
&::after {
|
|
8308
|
-
background-color:
|
|
8310
|
+
background-color: currentColor;
|
|
8309
8311
|
opacity: $clear-button-focused-opacity;
|
|
8310
8312
|
display: block;
|
|
8311
8313
|
}
|
|
@@ -13477,8 +13479,8 @@ $textarea-focus-shadow: $input-focused-shadow !default;
|
|
|
13477
13479
|
$textarea-placeholder-text: $input-placeholder-text !default;
|
|
13478
13480
|
$textarea-placeholder-opacity: $input-placeholder-opacity !default;
|
|
13479
13481
|
|
|
13480
|
-
$textarea-selected-text: $input-selected-text !default;
|
|
13481
13482
|
$textarea-selected-bg: $input-selected-bg !default;
|
|
13483
|
+
$textarea-selected-text: $input-selected-text !default;
|
|
13482
13484
|
|
|
13483
13485
|
$textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
13484
13486
|
|
|
@@ -14953,6 +14955,10 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
14953
14955
|
// Numeric
|
|
14954
14956
|
.k-numerictextbox {
|
|
14955
14957
|
|
|
14958
|
+
.k-i-warning {
|
|
14959
|
+
color: $error;
|
|
14960
|
+
}
|
|
14961
|
+
|
|
14956
14962
|
// Normal state
|
|
14957
14963
|
.k-numeric-wrap {
|
|
14958
14964
|
@include fill(
|
|
@@ -17863,17 +17869,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
17863
17869
|
|
|
17864
17870
|
// Validation icon
|
|
17865
17871
|
.k-i-warning {
|
|
17866
|
-
display: none;
|
|
17867
17872
|
position: absolute;
|
|
17868
17873
|
right: $padding-x;
|
|
17869
17874
|
top: 50%;
|
|
17870
17875
|
transform: translateY(-50%);
|
|
17871
17876
|
overflow: visible;
|
|
17872
17877
|
}
|
|
17873
|
-
&.k-invalid .k-i-warning,
|
|
17874
|
-
&.k-state-invalid .k-i-warning {
|
|
17875
|
-
display: inline-block;
|
|
17876
|
-
}
|
|
17877
17878
|
|
|
17878
17879
|
|
|
17879
17880
|
// RTL
|
|
@@ -17975,18 +17976,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
17975
17976
|
|
|
17976
17977
|
// Validation icon
|
|
17977
17978
|
.k-i-warning {
|
|
17978
|
-
display: none;
|
|
17979
17979
|
position: absolute;
|
|
17980
17980
|
top: 50%;
|
|
17981
17981
|
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
17982
17982
|
transform: translateY(-50%);
|
|
17983
17983
|
overflow: visible;
|
|
17984
17984
|
}
|
|
17985
|
-
.k-state-invalid {
|
|
17986
|
-
.k-i-warning {
|
|
17987
|
-
display: inline-block;
|
|
17988
|
-
}
|
|
17989
|
-
}
|
|
17990
17985
|
|
|
17991
17986
|
|
|
17992
17987
|
// RTL
|
|
@@ -18076,18 +18071,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18076
18071
|
|
|
18077
18072
|
// Validation icon
|
|
18078
18073
|
.k-i-warning {
|
|
18079
|
-
display: none;
|
|
18080
18074
|
position: absolute;
|
|
18081
18075
|
top: 50%;
|
|
18082
18076
|
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
18083
18077
|
transform: translateY(-50%);
|
|
18084
18078
|
overflow: visible;
|
|
18085
18079
|
}
|
|
18086
|
-
.k-state-invalid {
|
|
18087
|
-
.k-i-warning {
|
|
18088
|
-
display: inline-block;
|
|
18089
|
-
}
|
|
18090
|
-
}
|
|
18091
18080
|
|
|
18092
18081
|
|
|
18093
18082
|
// RTL
|
|
@@ -20413,15 +20402,10 @@ $dropdowntree-filter-spacer: $dropdowntree-popup-spacer-y !default;
|
|
|
20413
20402
|
|
|
20414
20403
|
&.k-state-invalid {
|
|
20415
20404
|
transition: none;
|
|
20416
|
-
|
|
20417
|
-
+ .k-i-warning {
|
|
20418
|
-
display: inline-block;
|
|
20419
|
-
}
|
|
20420
20405
|
}
|
|
20421
20406
|
}
|
|
20422
20407
|
|
|
20423
20408
|
.k-i-warning {
|
|
20424
|
-
display: none;
|
|
20425
20409
|
position: absolute;
|
|
20426
20410
|
top: 50%;
|
|
20427
20411
|
transform: translateY(-50%);
|
|
@@ -23397,13 +23381,13 @@ $notification-themes: () !default;
|
|
|
23397
23381
|
> .k-icon {
|
|
23398
23382
|
margin-top: $notification-icon-offset;
|
|
23399
23383
|
margin-right: $notification-icon-spacing;
|
|
23400
|
-
flex:
|
|
23384
|
+
flex: none;
|
|
23401
23385
|
}
|
|
23402
23386
|
|
|
23403
23387
|
> .k-i-close {
|
|
23404
23388
|
margin-right: 0;
|
|
23405
23389
|
margin-left: $notification-icon-spacing;
|
|
23406
|
-
flex:
|
|
23390
|
+
flex: none;
|
|
23407
23391
|
cursor: pointer;
|
|
23408
23392
|
}
|
|
23409
23393
|
|
|
@@ -24688,6 +24672,7 @@ $popover-callout-shadow-w: rgba( black, .03 ) 2px -1px 4px 0px !default;
|
|
|
24688
24672
|
// Popover
|
|
24689
24673
|
.k-popover {
|
|
24690
24674
|
@include border-radius( $popover-border-radius );
|
|
24675
|
+
padding: 0;
|
|
24691
24676
|
border-width: $popover-border-width;
|
|
24692
24677
|
border-style: $popover-border-style;
|
|
24693
24678
|
box-sizing: border-box;
|
|
@@ -25502,7 +25487,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
25502
25487
|
|
|
25503
25488
|
&:focus,
|
|
25504
25489
|
&.k-focus,
|
|
25505
|
-
&.k-state-focus
|
|
25490
|
+
&.k-state-focus,
|
|
25491
|
+
&.k-state-focused {
|
|
25506
25492
|
@include fill( $bg: $pager-focus-bg );
|
|
25507
25493
|
@include box-shadow( $pager-focus-shadow );
|
|
25508
25494
|
}
|
|
@@ -27172,6 +27158,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27172
27158
|
border-width: 0;
|
|
27173
27159
|
border-style: solid;
|
|
27174
27160
|
border-color: inherit;
|
|
27161
|
+
position: relative;
|
|
27162
|
+
z-index: 2;
|
|
27175
27163
|
}
|
|
27176
27164
|
|
|
27177
27165
|
.k-tabstrip-items {
|
|
@@ -27179,7 +27167,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27179
27167
|
display: flex;
|
|
27180
27168
|
flex-direction: row;
|
|
27181
27169
|
flex: 0 0 auto;
|
|
27182
|
-
position: relative;
|
|
27183
27170
|
|
|
27184
27171
|
.k-item {
|
|
27185
27172
|
margin: 0;
|
|
@@ -27223,6 +27210,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27223
27210
|
display: none;
|
|
27224
27211
|
overflow: auto;
|
|
27225
27212
|
flex: 1 1 auto;
|
|
27213
|
+
position: relative;
|
|
27214
|
+
z-index: 1;
|
|
27226
27215
|
|
|
27227
27216
|
&.k-state-active {
|
|
27228
27217
|
display: block;
|
|
@@ -27257,9 +27246,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27257
27246
|
|
|
27258
27247
|
|
|
27259
27248
|
// Scrolling
|
|
27260
|
-
.k-tabstrip
|
|
27249
|
+
.k-tabstrip-scrollable {
|
|
27261
27250
|
> .k-tabstrip-items-wrapper {
|
|
27262
|
-
border-width: 0;
|
|
27263
27251
|
|
|
27264
27252
|
> .k-tabstrip-items {
|
|
27265
27253
|
flex: 1 1 auto;
|
|
@@ -27284,11 +27272,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27284
27272
|
}
|
|
27285
27273
|
}
|
|
27286
27274
|
}
|
|
27287
|
-
|
|
27288
|
-
> .k-content,
|
|
27289
|
-
> .k-tabstrip-content {
|
|
27290
|
-
border-width: $tabstrip-content-border-width;
|
|
27291
|
-
}
|
|
27292
27275
|
}
|
|
27293
27276
|
|
|
27294
27277
|
|
|
@@ -27296,6 +27279,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27296
27279
|
.k-tabstrip-top {
|
|
27297
27280
|
> .k-tabstrip-items-wrapper {
|
|
27298
27281
|
border-bottom-width: $tabstrip-border-width;
|
|
27282
|
+
margin-bottom: -$tabstrip-content-border-width;
|
|
27299
27283
|
|
|
27300
27284
|
.k-item {
|
|
27301
27285
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
@@ -27314,12 +27298,13 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27314
27298
|
> .k-content,
|
|
27315
27299
|
> .k-tabstrip-content {
|
|
27316
27300
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
27317
|
-
border-top-
|
|
27301
|
+
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
27318
27302
|
}
|
|
27319
27303
|
}
|
|
27320
27304
|
.k-tabstrip-bottom {
|
|
27321
27305
|
> .k-tabstrip-items-wrapper {
|
|
27322
27306
|
border-top-width: $tabstrip-border-width;
|
|
27307
|
+
margin-top: -$tabstrip-content-border-width;
|
|
27323
27308
|
|
|
27324
27309
|
.k-item {
|
|
27325
27310
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
@@ -27338,7 +27323,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27338
27323
|
> .k-content,
|
|
27339
27324
|
> .k-tabstrip-content {
|
|
27340
27325
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
27341
|
-
border-bottom-
|
|
27326
|
+
border-bottom-color: transparent !important; // sass-lint:disable-line no-important
|
|
27342
27327
|
}
|
|
27343
27328
|
}
|
|
27344
27329
|
.k-tabstrip-left {
|
|
@@ -27346,6 +27331,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27346
27331
|
|
|
27347
27332
|
> .k-tabstrip-items-wrapper {
|
|
27348
27333
|
border-right-width: $tabstrip-border-width;
|
|
27334
|
+
margin-right: -$tabstrip-content-border-width;
|
|
27349
27335
|
|
|
27350
27336
|
> .k-tabstrip-items {
|
|
27351
27337
|
display: inline-flex;
|
|
@@ -27369,10 +27355,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27369
27355
|
> .k-content,
|
|
27370
27356
|
> .k-tabstrip-content {
|
|
27371
27357
|
@include border-right-radius( $tabstrip-item-border-radius );
|
|
27372
|
-
// sass-lint:disable no-important
|
|
27373
|
-
|
|
27374
|
-
// sass-lint:enable no-important
|
|
27375
|
-
border-left-width: 0;
|
|
27358
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
27359
|
+
border-left-color: transparent !important; // sass-lint:disable-line no-important
|
|
27376
27360
|
}
|
|
27377
27361
|
|
|
27378
27362
|
}
|
|
@@ -27381,6 +27365,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27381
27365
|
|
|
27382
27366
|
> .k-tabstrip-items-wrapper {
|
|
27383
27367
|
border-left-width: $tabstrip-border-width;
|
|
27368
|
+
margin-left: -$tabstrip-content-border-width;
|
|
27384
27369
|
|
|
27385
27370
|
> .k-tabstrip-items {
|
|
27386
27371
|
display: inline-flex;
|
|
@@ -27404,10 +27389,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
27404
27389
|
> .k-content,
|
|
27405
27390
|
> .k-tabstrip-content {
|
|
27406
27391
|
@include border-left-radius( $tabstrip-item-border-radius );
|
|
27407
|
-
// sass-lint:disable no-important
|
|
27408
|
-
|
|
27409
|
-
// sass-lint:enable no-important
|
|
27410
|
-
border-right-width: 0;
|
|
27392
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
27393
|
+
border-right-color: transparent !important; // sass-lint:disable-line no-important
|
|
27411
27394
|
}
|
|
27412
27395
|
}
|
|
27413
27396
|
|
|
@@ -28534,7 +28517,7 @@ $skeleton-rect-border-radius: 0 !default;
|
|
|
28534
28517
|
|
|
28535
28518
|
$skeleton-circle-border-radius: 9999px !default;
|
|
28536
28519
|
|
|
28537
|
-
$skeleton-item-bg: rgba( $
|
|
28520
|
+
$skeleton-item-bg: rgba( $inverse, .2 ) !default;
|
|
28538
28521
|
|
|
28539
28522
|
$skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
28540
28523
|
|
|
@@ -31076,7 +31059,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31076
31059
|
display: inline-flex;
|
|
31077
31060
|
flex-direction: row;
|
|
31078
31061
|
position: absolute;
|
|
31079
|
-
z-index:
|
|
31062
|
+
z-index: 2;
|
|
31080
31063
|
top: 0;
|
|
31081
31064
|
left: 0;
|
|
31082
31065
|
|
|
@@ -31093,6 +31076,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31093
31076
|
// Tabstrip
|
|
31094
31077
|
.k-spreadsheet-tabstrip {
|
|
31095
31078
|
padding-top: $toolbar-padding-y;
|
|
31079
|
+
position: relative;
|
|
31080
|
+
z-index: 1;
|
|
31081
|
+
}
|
|
31082
|
+
.k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
|
|
31083
|
+
margin: 0;
|
|
31096
31084
|
}
|
|
31097
31085
|
.k-spreadsheet-tabstrip .k-loading {
|
|
31098
31086
|
display: none;
|
|
@@ -31246,17 +31234,17 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31246
31234
|
|
|
31247
31235
|
// Sheets bar
|
|
31248
31236
|
.k-spreadsheet-sheets-bar {
|
|
31249
|
-
padding: 0 $
|
|
31237
|
+
padding: 0 0 map-get( $spacing, 1 ) map-get( $spacing, 1 );
|
|
31250
31238
|
border-width: 1px 0 0;
|
|
31251
31239
|
border-style: solid;
|
|
31252
31240
|
border-color: inherit;
|
|
31253
31241
|
display: flex;
|
|
31254
31242
|
flex-direction: row;
|
|
31255
|
-
align-items:
|
|
31243
|
+
align-items: flex-start;
|
|
31256
31244
|
position: relative;
|
|
31257
31245
|
}
|
|
31258
31246
|
.k-spreadsheet-sheets-bar-add {
|
|
31259
|
-
|
|
31247
|
+
align-self: center;
|
|
31260
31248
|
|
|
31261
31249
|
&:not(:hover) {
|
|
31262
31250
|
border-color: transparent;
|
|
@@ -31265,22 +31253,13 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31265
31253
|
}
|
|
31266
31254
|
}
|
|
31267
31255
|
.k-spreadsheet-sheets-items {
|
|
31268
|
-
margin-top: -1px;
|
|
31269
31256
|
flex: 1;
|
|
31270
31257
|
overflow: hidden;
|
|
31271
31258
|
|
|
31272
|
-
|
|
31273
|
-
|
|
31274
|
-
margin: 0 $button-calc-size !important;
|
|
31259
|
+
.k-tabstrip-items-wrapper {
|
|
31260
|
+
margin: 0;
|
|
31275
31261
|
border-width: 0;
|
|
31276
31262
|
}
|
|
31277
|
-
.k-tabstrip-prev {
|
|
31278
|
-
left: 0 !important;
|
|
31279
|
-
}
|
|
31280
|
-
.k-tabstrip-next {
|
|
31281
|
-
right: 0 !important;
|
|
31282
|
-
}
|
|
31283
|
-
// sass-lint:enable no-important
|
|
31284
31263
|
|
|
31285
31264
|
.k-item {
|
|
31286
31265
|
.k-link {
|
|
@@ -31295,6 +31274,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31295
31274
|
display: inline-flex;
|
|
31296
31275
|
flex-direction: row;
|
|
31297
31276
|
vertical-align: middle;
|
|
31277
|
+
align-self: center;
|
|
31298
31278
|
}
|
|
31299
31279
|
}
|
|
31300
31280
|
}
|
|
@@ -32899,9 +32879,9 @@ $pivotgrid-remove-text: null !default;
|
|
|
32899
32879
|
}
|
|
32900
32880
|
|
|
32901
32881
|
.k-pivot-toolbar {
|
|
32902
|
-
border-
|
|
32903
|
-
border-
|
|
32904
|
-
align-items: start;
|
|
32882
|
+
border-width: 0 0 1px;
|
|
32883
|
+
border-style: solid;
|
|
32884
|
+
align-items: flex-start;
|
|
32905
32885
|
flex-wrap: wrap;
|
|
32906
32886
|
|
|
32907
32887
|
> * {
|
|
@@ -39275,6 +39255,11 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39275
39255
|
border-style: solid;
|
|
39276
39256
|
line-height: $chat-bubble-line-height;
|
|
39277
39257
|
word-wrap: break-word;
|
|
39258
|
+
|
|
39259
|
+
a {
|
|
39260
|
+
color: inherit;
|
|
39261
|
+
text-decoration: underline;
|
|
39262
|
+
}
|
|
39278
39263
|
}
|
|
39279
39264
|
|
|
39280
39265
|
|
|
@@ -39714,6 +39699,9 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39714
39699
|
@include box-shadow( $chat-bubble-shadow );
|
|
39715
39700
|
transition: $transition;
|
|
39716
39701
|
order: -1;
|
|
39702
|
+
|
|
39703
|
+
a { color: $link-text; }
|
|
39704
|
+
a:hover { color: $link-hover-text; }
|
|
39717
39705
|
}
|
|
39718
39706
|
.k-bubble:hover {
|
|
39719
39707
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
@@ -41476,12 +41464,14 @@ $chart-pane-title-font-size: $chart-label-font-size !default;
|
|
|
41476
41464
|
$chart-pane-title-font-weight: $font-weight-normal !default;
|
|
41477
41465
|
|
|
41478
41466
|
$chart-inactive: rgba( $body-text, .5 ) !default;
|
|
41467
|
+
|
|
41479
41468
|
/// The color of the Chart grid lines (major).
|
|
41480
41469
|
/// @group charts
|
|
41481
|
-
$chart-major-lines: rgba(
|
|
41470
|
+
$chart-major-lines: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
41471
|
+
|
|
41482
41472
|
/// The color of the Chart grid lines (minor).
|
|
41483
41473
|
/// @group charts
|
|
41484
|
-
$chart-minor-lines: rgba(
|
|
41474
|
+
$chart-minor-lines: rgba( if( $dark-theme, $white, $black ), .04 ) !default;
|
|
41485
41475
|
|
|
41486
41476
|
$chart-area-opacity: .6 !default;
|
|
41487
41477
|
$chart-area-inactive-opacity: .1 !default;
|
|
@@ -41491,23 +41481,20 @@ $chart-bg: $component-bg !default;
|
|
|
41491
41481
|
$chart-text: $component-text !default;
|
|
41492
41482
|
$chart-border: $component-border !default;
|
|
41493
41483
|
|
|
41494
|
-
$chart-
|
|
41495
|
-
|
|
41496
|
-
$chart-crosshair-background: rgba(0, 0, 0, .5) !default;
|
|
41484
|
+
$chart-crosshair-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41497
41485
|
$chart-crosshair-shared-tooltip-color: $chart-text !default;
|
|
41498
41486
|
$chart-crosshair-shared-tooltip-background: try-shade( $chart-bg, 1 ) !default;
|
|
41499
|
-
$chart-crosshair-shared-tooltip-border: rgba(
|
|
41487
|
+
$chart-crosshair-shared-tooltip-border: rgba( if( $dark-theme, $white, $black ), .08) !default;
|
|
41500
41488
|
|
|
41501
|
-
$chart-notes-background: rgba(
|
|
41502
|
-
$chart-notes-border: rgba(
|
|
41503
|
-
$chart-notes-lines: rgba(
|
|
41489
|
+
$chart-notes-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41490
|
+
$chart-notes-border: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41491
|
+
$chart-notes-lines: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41504
41492
|
|
|
41505
|
-
$error-bars-background: rgba(
|
|
41493
|
+
$error-bars-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41506
41494
|
|
|
41507
|
-
$chart-selection-marque-background: $series-a !default;
|
|
41508
41495
|
$selection-handle-size: 22px !default;
|
|
41509
|
-
$selection-border-color: rgba(
|
|
41510
|
-
$selection-shadow: inset 0 1px 7px rgba(
|
|
41496
|
+
$selection-border-color: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
41497
|
+
$selection-shadow: inset 0 1px 7px rgba( if( $dark-theme, $white, $black ), .15) !default;
|
|
41511
41498
|
|
|
41512
41499
|
|
|
41513
41500
|
// TreeMap
|
|
@@ -41558,7 +41545,7 @@ $treemap-line-height: $line-height !default;
|
|
|
41558
41545
|
font-size: $chart-font-size;
|
|
41559
41546
|
line-height: $chart-line-height;
|
|
41560
41547
|
-webkit-touch-callout: none;
|
|
41561
|
-
-webkit-tap-highlight-color: $
|
|
41548
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
41562
41549
|
}
|
|
41563
41550
|
|
|
41564
41551
|
.k-chart,
|
|
@@ -41699,20 +41686,6 @@ $treemap-line-height: $line-height !default;
|
|
|
41699
41686
|
height: 100%;
|
|
41700
41687
|
}
|
|
41701
41688
|
|
|
41702
|
-
.k-marquee {
|
|
41703
|
-
position: absolute;
|
|
41704
|
-
z-index: 100000;
|
|
41705
|
-
}
|
|
41706
|
-
|
|
41707
|
-
.k-marquee-color,
|
|
41708
|
-
.k-marquee-text {
|
|
41709
|
-
position: absolute;
|
|
41710
|
-
top: 0;
|
|
41711
|
-
left: 0;
|
|
41712
|
-
width: 100%;
|
|
41713
|
-
height: 100%;
|
|
41714
|
-
}
|
|
41715
|
-
|
|
41716
41689
|
// Navigator hint
|
|
41717
41690
|
.k-navigator-hint div {
|
|
41718
41691
|
position: absolute;
|
|
@@ -42080,10 +42053,10 @@ $treemap-line-height: $line-height !default;
|
|
|
42080
42053
|
// Tooltip
|
|
42081
42054
|
// TODO
|
|
42082
42055
|
.k-chart-tooltip {
|
|
42083
|
-
color: $
|
|
42056
|
+
color: $white;
|
|
42084
42057
|
}
|
|
42085
42058
|
.k-chart-tooltip-inverse {
|
|
42086
|
-
color:
|
|
42059
|
+
color: $black;
|
|
42087
42060
|
}
|
|
42088
42061
|
|
|
42089
42062
|
.k-chart-crosshair-tooltip,
|
|
@@ -42129,14 +42102,6 @@ $treemap-line-height: $line-height !default;
|
|
|
42129
42102
|
background-color: $component-bg;
|
|
42130
42103
|
opacity: .8;
|
|
42131
42104
|
}
|
|
42132
|
-
|
|
42133
|
-
.k-marquee-color {
|
|
42134
|
-
background-color: $chart-selection-marque-background;
|
|
42135
|
-
}
|
|
42136
|
-
|
|
42137
|
-
.k-marquee-color {
|
|
42138
|
-
opacity: .6;
|
|
42139
|
-
}
|
|
42140
42105
|
}
|
|
42141
42106
|
|
|
42142
42107
|
|
|
@@ -12,11 +12,11 @@ $headings-text: #ffffff;
|
|
|
12
12
|
$subtle-text: #e0e0e0;
|
|
13
13
|
$disabled-text: #d0d0d0;
|
|
14
14
|
$component-text: #ffffff;
|
|
15
|
-
$component-bg: #
|
|
15
|
+
$component-bg: #101010;
|
|
16
16
|
$base-text: #ffffff;
|
|
17
|
-
$base-bg: #
|
|
17
|
+
$base-bg: #151515;
|
|
18
18
|
$hovered-text: #ffffff;
|
|
19
|
-
$hovered-bg: #
|
|
19
|
+
$hovered-bg: #202020;
|
|
20
20
|
$selected-text: #ffffff;
|
|
21
21
|
$selected-bg: #ff6358;
|
|
22
22
|
$button-text: #ffffff;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"base": "@progress/kendo-theme-default",
|
|
6
6
|
"previewColors": [
|
|
7
7
|
"#000000",
|
|
8
|
-
"#
|
|
8
|
+
"#151515",
|
|
9
9
|
"#ff6358",
|
|
10
10
|
"#eb5b51",
|
|
11
11
|
"#ffffff"
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"component-bg": {
|
|
108
108
|
"name": "Component background",
|
|
109
109
|
"type": "color",
|
|
110
|
-
"value": "#
|
|
110
|
+
"value": "#101010"
|
|
111
111
|
},
|
|
112
112
|
"base-text": {
|
|
113
113
|
"name": "Header text color",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"base-bg": {
|
|
118
118
|
"name": "Header background",
|
|
119
119
|
"type": "color",
|
|
120
|
-
"value": "#
|
|
120
|
+
"value": "#151515"
|
|
121
121
|
},
|
|
122
122
|
"hovered-text": {
|
|
123
123
|
"name": "Hover text color",
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"hovered-bg": {
|
|
128
128
|
"name": "Hover background",
|
|
129
129
|
"type": "color",
|
|
130
|
-
"value": "#
|
|
130
|
+
"value": "#202020"
|
|
131
131
|
},
|
|
132
132
|
"selected-text": {
|
|
133
133
|
"name": "Selected text color",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.41.
|
|
4
|
+
"version": "4.41.3-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,11 +45,7 @@
|
|
|
45
45
|
"dart:watch": "gulp dart:watch",
|
|
46
46
|
"dart:swatches": "gulp dart:swatches",
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
|
-
"twbs-compat": "gulp sass --file ./build/twbs-compat.scss",
|
|
49
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
50
49
|
},
|
|
51
|
-
"
|
|
52
|
-
"bootstrap": "^5.0.2"
|
|
53
|
-
},
|
|
54
|
-
"gitHead": "1987b103aba532e62c9bb4a63b957d7bfdc200a4"
|
|
50
|
+
"gitHead": "4c5f70ca87b87ff582d9b0968b78fd01eddbc07a"
|
|
55
51
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -251,7 +251,7 @@ $component-text: $body-text !default;
|
|
|
251
251
|
/// Border color of a component.
|
|
252
252
|
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$grid-border: component-border !default;`.
|
|
253
253
|
/// @group component
|
|
254
|
-
$component-border: rgba( black, .08 ) !default;
|
|
254
|
+
$component-border: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
255
255
|
|
|
256
256
|
|
|
257
257
|
/// The background of the components' chrome area.
|
package/scss/button/_layout.scss
CHANGED
|
@@ -306,11 +306,11 @@
|
|
|
306
306
|
|
|
307
307
|
// k-button
|
|
308
308
|
> .k-button:first-child {
|
|
309
|
-
@include border-
|
|
309
|
+
@include border-right-radius( $button-border-radius );
|
|
310
310
|
}
|
|
311
311
|
> .k-split-button-arrow,
|
|
312
312
|
> .k-button:last-child {
|
|
313
|
-
@include border-
|
|
313
|
+
@include border-left-radius( $button-border-radius );
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
}
|
package/scss/button/_theme.scss
CHANGED
|
@@ -127,6 +127,6 @@ $flat-button-focus-opacity: null !default;
|
|
|
127
127
|
$flat-button-active-opacity: .16 !default;
|
|
128
128
|
$flat-button-selected-opacity: .2 !default;
|
|
129
129
|
|
|
130
|
-
$clear-button-text:
|
|
131
|
-
$clear-button-hover-text:
|
|
130
|
+
$clear-button-text: inherit !default;
|
|
131
|
+
$clear-button-hover-text: inherit !default;
|
|
132
132
|
$clear-button-focused-opacity: .1 !default;
|
package/scss/chat/_layout.scss
CHANGED
package/scss/chat/_theme.scss
CHANGED