@progress/kendo-theme-bootstrap 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 +95 -123
- package/dist/all.scss +90 -115
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +3 -3
- package/lib/swatches/bootstrap-nordic.json +4 -4
- package/lib/swatches/bootstrap-urban.json +3 -3
- package/lib/swatches/bootstrap-vintage.json +3 -3
- package/modules/@progress/kendo-theme-default/lib/swatches/default-main-dark.json +4 -4
- package/modules/@progress/kendo-theme-default/package.json +2 -6
- package/modules/@progress/kendo-theme-default/scss/_variables.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/button/_theme.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/button/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +5 -0
- package/modules/@progress/kendo-theme-default/scss/chat/_theme.scss +3 -0
- package/modules/@progress/kendo-theme-default/scss/common/_selection.scss +2 -0
- package/modules/@progress/kendo-theme-default/scss/dataviz/_layout.scss +1 -15
- package/modules/@progress/kendo-theme-default/scss/dataviz/_theme.scss +2 -10
- package/modules/@progress/kendo-theme-default/scss/dataviz/_variables.scss +12 -13
- package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +0 -17
- package/modules/@progress/kendo-theme-default/scss/input/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss +0 -5
- package/modules/@progress/kendo-theme-default/scss/notification/_layout.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/numerictextbox/_theme.scss +4 -0
- package/modules/@progress/kendo-theme-default/scss/pager/_theme.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +3 -3
- package/modules/@progress/kendo-theme-default/scss/popover/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/skeleton/_variables.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +12 -15
- package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +15 -18
- package/modules/@progress/kendo-theme-default/scss/textarea/_variables.scss +1 -1
- package/package.json +4 -8
- package/scss/_bootstrap-overrides.scss +10 -0
- package/scss/_variables.scss +2 -2
- package/scss/button/_variables.scss +2 -2
- package/scss/dataviz/_variables.scss +10 -13
- package/scss/grid/_variables.scss +4 -4
- package/scss/input/_variables.scss +1 -1
- package/scss/popover/_variables.scss +2 -0
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +2 -2
- package/scss/textarea/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -791,6 +791,8 @@ $gray-800: #343a40 !default;
|
|
|
791
791
|
$gray-900: #212529 !default;
|
|
792
792
|
$black: #000000 !default;
|
|
793
793
|
|
|
794
|
+
$dark-theme: false !default;
|
|
795
|
+
|
|
794
796
|
$body-bg: $white !default;
|
|
795
797
|
$body-color: contrast-wcag( $body-bg, $gray-900, $gray-100 ) !default;
|
|
796
798
|
|
|
@@ -801,6 +803,7 @@ $component-border: contrast-wcag( $component-bg, $gray-300, $gray-700 ) !default
|
|
|
801
803
|
$input-bg: $component-bg !default;
|
|
802
804
|
$input-color: contrast-wcag( $input-bg, $gray-700, $gray-300 ) !default;
|
|
803
805
|
$input-border-color: contrast-wcag( $input-bg, $gray-400, $gray-600 ) !default;
|
|
806
|
+
$input-placeholder-color: contrast-wcag( $input-bg, $gray-600, $gray-400 ) !default;
|
|
804
807
|
|
|
805
808
|
$card-bg: $component-bg !default;
|
|
806
809
|
$card-color: $component-text !default;
|
|
@@ -814,8 +817,15 @@ $table-bg: $component-bg !default;
|
|
|
814
817
|
$table-color: $component-text !default;
|
|
815
818
|
$table-border-color: $component-border !default;
|
|
816
819
|
|
|
820
|
+
$tooltip-bg: if( $dark-theme, $white, $black ) !default;
|
|
821
|
+
$tooltip-color: contrast-wcag( $tooltip-bg ) !default;
|
|
822
|
+
|
|
817
823
|
$popover-font-size: $font-size-base !default;
|
|
818
824
|
|
|
825
|
+
$popover-bg: $card-bg !default;
|
|
826
|
+
$popover-color: $card-color !default;
|
|
827
|
+
$popover-border-color: $card-border-color !default;
|
|
828
|
+
|
|
819
829
|
$popover-header-bg: $component-bg !default;
|
|
820
830
|
$popover-header-text: $component-text !default;
|
|
821
831
|
$popover-header-border: $component-border !default;
|
|
@@ -3016,7 +3026,7 @@ $component-text: $body-text !default;
|
|
|
3016
3026
|
/// Border color of a component.
|
|
3017
3027
|
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$grid-border: component-border !default;`.
|
|
3018
3028
|
/// @group component
|
|
3019
|
-
$component-border: $gray-300 !default;
|
|
3029
|
+
$component-border: contrast-wcag( $component-bg, $gray-300, $gray-700 ) !default;
|
|
3020
3030
|
|
|
3021
3031
|
|
|
3022
3032
|
/// The background of the components' chrome area.
|
|
@@ -3142,7 +3152,7 @@ $placeholder-bg: rgba(0, 0, 0, .1) !default;
|
|
|
3142
3152
|
$invalid-bg: null !default;
|
|
3143
3153
|
$invalid-text: $error !default;
|
|
3144
3154
|
$invalid-border: $error !default;
|
|
3145
|
-
$invalid-shadow: 0 0 0 .
|
|
3155
|
+
$invalid-shadow: 0 0 0 .25rem rgba($invalid-border, .25) !default;
|
|
3146
3156
|
|
|
3147
3157
|
|
|
3148
3158
|
// Drag clue
|
|
@@ -4748,6 +4758,7 @@ $display4-letter-spacing: null !default;
|
|
|
4748
4758
|
position: absolute;
|
|
4749
4759
|
z-index: 100000;
|
|
4750
4760
|
}
|
|
4761
|
+
|
|
4751
4762
|
.k-marquee-color,
|
|
4752
4763
|
.k-marquee-text {
|
|
4753
4764
|
position: absolute;
|
|
@@ -4756,6 +4767,7 @@ $display4-letter-spacing: null !default;
|
|
|
4756
4767
|
width: 100%;
|
|
4757
4768
|
height: 100%;
|
|
4758
4769
|
}
|
|
4770
|
+
|
|
4759
4771
|
.k-marquee-color {
|
|
4760
4772
|
color: $selected-text;
|
|
4761
4773
|
background-color: $selected-bg;
|
|
@@ -9489,8 +9501,8 @@ $flat-button-focus-opacity: null !default;
|
|
|
9489
9501
|
$flat-button-active-opacity: .16 !default;
|
|
9490
9502
|
$flat-button-selected-opacity: .2 !default;
|
|
9491
9503
|
|
|
9492
|
-
$clear-button-text:
|
|
9493
|
-
$clear-button-hover-text:
|
|
9504
|
+
$clear-button-text: inherit !default;
|
|
9505
|
+
$clear-button-hover-text: inherit !default;
|
|
9494
9506
|
$clear-button-focused-opacity: .1 !default;
|
|
9495
9507
|
|
|
9496
9508
|
// #endregion
|
|
@@ -9589,7 +9601,7 @@ $input-icon-opacity: null !default;
|
|
|
9589
9601
|
|
|
9590
9602
|
|
|
9591
9603
|
// Input separator
|
|
9592
|
-
$input-separator-color: $
|
|
9604
|
+
$input-separator-color: $input-text !default;
|
|
9593
9605
|
$input-separator-opacity: .5 !default;
|
|
9594
9606
|
|
|
9595
9607
|
// #endregion
|
|
@@ -9949,11 +9961,11 @@ $input-separator-opacity: .5 !default;
|
|
|
9949
9961
|
|
|
9950
9962
|
// k-button
|
|
9951
9963
|
> .k-button:first-child {
|
|
9952
|
-
@include border-
|
|
9964
|
+
@include border-right-radius( $button-border-radius );
|
|
9953
9965
|
}
|
|
9954
9966
|
> .k-split-button-arrow,
|
|
9955
9967
|
> .k-button:last-child {
|
|
9956
|
-
@include border-
|
|
9968
|
+
@include border-left-radius( $button-border-radius );
|
|
9957
9969
|
}
|
|
9958
9970
|
}
|
|
9959
9971
|
}
|
|
@@ -10413,7 +10425,7 @@ $input-separator-opacity: .5 !default;
|
|
|
10413
10425
|
&.k-state-focused,
|
|
10414
10426
|
&.k-state-focused:active {
|
|
10415
10427
|
&::after {
|
|
10416
|
-
background-color:
|
|
10428
|
+
background-color: currentColor;
|
|
10417
10429
|
opacity: $clear-button-focused-opacity;
|
|
10418
10430
|
display: block;
|
|
10419
10431
|
}
|
|
@@ -15883,8 +15895,8 @@ $textarea-focus-shadow: $input-focused-shadow !default;
|
|
|
15883
15895
|
$textarea-placeholder-text: $input-placeholder-text !default;
|
|
15884
15896
|
$textarea-placeholder-opacity: $input-placeholder-opacity !default;
|
|
15885
15897
|
|
|
15886
|
-
$textarea-selected-text: $input-selected-text !default;
|
|
15887
15898
|
$textarea-selected-bg: $input-selected-bg !default;
|
|
15899
|
+
$textarea-selected-text: $input-selected-text !default;
|
|
15888
15900
|
|
|
15889
15901
|
$textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
15890
15902
|
|
|
@@ -17417,6 +17429,10 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
17417
17429
|
// Numeric
|
|
17418
17430
|
.k-numerictextbox {
|
|
17419
17431
|
|
|
17432
|
+
.k-i-warning {
|
|
17433
|
+
color: $error;
|
|
17434
|
+
}
|
|
17435
|
+
|
|
17420
17436
|
// Normal state
|
|
17421
17437
|
.k-numeric-wrap {
|
|
17422
17438
|
@include fill(
|
|
@@ -20401,17 +20417,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20401
20417
|
|
|
20402
20418
|
// Validation icon
|
|
20403
20419
|
.k-i-warning {
|
|
20404
|
-
display: none;
|
|
20405
20420
|
position: absolute;
|
|
20406
20421
|
right: $padding-x;
|
|
20407
20422
|
top: 50%;
|
|
20408
20423
|
transform: translateY(-50%);
|
|
20409
20424
|
overflow: visible;
|
|
20410
20425
|
}
|
|
20411
|
-
&.k-invalid .k-i-warning,
|
|
20412
|
-
&.k-state-invalid .k-i-warning {
|
|
20413
|
-
display: inline-block;
|
|
20414
|
-
}
|
|
20415
20426
|
|
|
20416
20427
|
|
|
20417
20428
|
// RTL
|
|
@@ -20513,18 +20524,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20513
20524
|
|
|
20514
20525
|
// Validation icon
|
|
20515
20526
|
.k-i-warning {
|
|
20516
|
-
display: none;
|
|
20517
20527
|
position: absolute;
|
|
20518
20528
|
top: 50%;
|
|
20519
20529
|
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
20520
20530
|
transform: translateY(-50%);
|
|
20521
20531
|
overflow: visible;
|
|
20522
20532
|
}
|
|
20523
|
-
.k-state-invalid {
|
|
20524
|
-
.k-i-warning {
|
|
20525
|
-
display: inline-block;
|
|
20526
|
-
}
|
|
20527
|
-
}
|
|
20528
20533
|
|
|
20529
20534
|
|
|
20530
20535
|
// RTL
|
|
@@ -20614,18 +20619,12 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20614
20619
|
|
|
20615
20620
|
// Validation icon
|
|
20616
20621
|
.k-i-warning {
|
|
20617
|
-
display: none;
|
|
20618
20622
|
position: absolute;
|
|
20619
20623
|
top: 50%;
|
|
20620
20624
|
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
20621
20625
|
transform: translateY(-50%);
|
|
20622
20626
|
overflow: visible;
|
|
20623
20627
|
}
|
|
20624
|
-
.k-state-invalid {
|
|
20625
|
-
.k-i-warning {
|
|
20626
|
-
display: inline-block;
|
|
20627
|
-
}
|
|
20628
|
-
}
|
|
20629
20628
|
|
|
20630
20629
|
|
|
20631
20630
|
// RTL
|
|
@@ -21423,7 +21422,7 @@ $grid-footer-border: $grid-header-border !default;
|
|
|
21423
21422
|
|
|
21424
21423
|
/// Background color of alternating rows in grid
|
|
21425
21424
|
/// @group grid
|
|
21426
|
-
$grid-alt-bg: rgba(
|
|
21425
|
+
$grid-alt-bg: rgba( contrast-wcag( $grid-bg ), .04 ) !default;
|
|
21427
21426
|
/// Text color of alternating rows in grid
|
|
21428
21427
|
/// @group grid
|
|
21429
21428
|
$grid-alt-text: null !default;
|
|
@@ -21433,7 +21432,7 @@ $grid-alt-border: null !default;
|
|
|
21433
21432
|
|
|
21434
21433
|
/// Background color of hovered rows in grid
|
|
21435
21434
|
/// @group grid
|
|
21436
|
-
$grid-hovered-bg: rgba(
|
|
21435
|
+
$grid-hovered-bg: rgba( contrast-wcag( $grid-bg ), .08 ) !default;
|
|
21437
21436
|
/// Text color of hovered rows in grid
|
|
21438
21437
|
/// @group grid
|
|
21439
21438
|
$grid-hovered-text: null !default;
|
|
@@ -21443,7 +21442,7 @@ $grid-hovered-border: null !default;
|
|
|
21443
21442
|
|
|
21444
21443
|
/// Background color of selected rows in grid
|
|
21445
21444
|
/// @group grid
|
|
21446
|
-
$grid-selected-bg: rgba($selected-bg, .25) !default;
|
|
21445
|
+
$grid-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
21447
21446
|
/// Text color of selected rows in grid
|
|
21448
21447
|
/// @group grid
|
|
21449
21448
|
$grid-selected-text: $grid-text !default;
|
|
@@ -21484,7 +21483,7 @@ $grid-sticky-header-border: $grid-sticky-border !default;
|
|
|
21484
21483
|
$grid-sticky-footer-bg: $grid-header-bg !default;
|
|
21485
21484
|
$grid-sticky-footer-hovered-bg: $grid-sticky-footer-bg !default;
|
|
21486
21485
|
|
|
21487
|
-
$grid-sticky-selected-bg: mix($selected-bg,
|
|
21486
|
+
$grid-sticky-selected-bg: mix($selected-bg, $grid-bg, 25%) !default;
|
|
21488
21487
|
$grid-sticky-selected-alt-bg: shade($grid-sticky-selected-bg, .4) !default;
|
|
21489
21488
|
|
|
21490
21489
|
$grid-sticky-hovered-bg: try-shade( $grid-bg ) !default;
|
|
@@ -23090,15 +23089,10 @@ $dropdowntree-filter-spacer: 0px !default;
|
|
|
23090
23089
|
|
|
23091
23090
|
&.k-state-invalid {
|
|
23092
23091
|
transition: none;
|
|
23093
|
-
|
|
23094
|
-
+ .k-i-warning {
|
|
23095
|
-
display: inline-block;
|
|
23096
|
-
}
|
|
23097
23092
|
}
|
|
23098
23093
|
}
|
|
23099
23094
|
|
|
23100
23095
|
.k-i-warning {
|
|
23101
|
-
display: none;
|
|
23102
23096
|
position: absolute;
|
|
23103
23097
|
top: 50%;
|
|
23104
23098
|
transform: translateY(-50%);
|
|
@@ -26224,13 +26218,13 @@ $notification-themes: () !default;
|
|
|
26224
26218
|
> .k-icon {
|
|
26225
26219
|
margin-top: $notification-icon-offset;
|
|
26226
26220
|
margin-right: $notification-icon-spacing;
|
|
26227
|
-
flex:
|
|
26221
|
+
flex: none;
|
|
26228
26222
|
}
|
|
26229
26223
|
|
|
26230
26224
|
> .k-i-close {
|
|
26231
26225
|
margin-right: 0;
|
|
26232
26226
|
margin-left: $notification-icon-spacing;
|
|
26233
|
-
flex:
|
|
26227
|
+
flex: none;
|
|
26234
26228
|
cursor: pointer;
|
|
26235
26229
|
}
|
|
26236
26230
|
|
|
@@ -27498,6 +27492,7 @@ $popover-border-radius: $card-border-radius !default;
|
|
|
27498
27492
|
$popover-font-size: $card-font-size !default;
|
|
27499
27493
|
$popover-font-family: $card-font-family !default;
|
|
27500
27494
|
$popover-line-height: $card-line-height !default;
|
|
27495
|
+
|
|
27501
27496
|
$popover-bg: $card-bg !default;
|
|
27502
27497
|
$popover-text: $card-text !default;
|
|
27503
27498
|
$popover-border: $card-border !default;
|
|
@@ -27507,6 +27502,7 @@ $popover-header-padding-y: $card-header-padding-y !default;
|
|
|
27507
27502
|
$popover-header-padding-x: $card-header-padding-x !default;
|
|
27508
27503
|
$popover-header-border-width: $card-header-border-width !default;
|
|
27509
27504
|
$popover-header-border-style: $popover-border-style !default;
|
|
27505
|
+
|
|
27510
27506
|
$popover-header-bg: $card-header-bg !default;
|
|
27511
27507
|
$popover-header-text: $card-header-text !default;
|
|
27512
27508
|
$popover-header-border: $card-header-border !default;
|
|
@@ -27535,6 +27531,7 @@ $popover-callout-shadow-w: null !default;
|
|
|
27535
27531
|
// Popover
|
|
27536
27532
|
.k-popover {
|
|
27537
27533
|
@include border-radius( $popover-border-radius );
|
|
27534
|
+
padding: 0;
|
|
27538
27535
|
border-width: $popover-border-width;
|
|
27539
27536
|
border-style: $popover-border-style;
|
|
27540
27537
|
box-sizing: border-box;
|
|
@@ -28420,7 +28417,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
28420
28417
|
|
|
28421
28418
|
&:focus,
|
|
28422
28419
|
&.k-focus,
|
|
28423
|
-
&.k-state-focus
|
|
28420
|
+
&.k-state-focus,
|
|
28421
|
+
&.k-state-focused {
|
|
28424
28422
|
@include fill( $bg: $pager-focus-bg );
|
|
28425
28423
|
@include box-shadow( $pager-focus-shadow );
|
|
28426
28424
|
}
|
|
@@ -30165,6 +30163,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30165
30163
|
border-width: 0;
|
|
30166
30164
|
border-style: solid;
|
|
30167
30165
|
border-color: inherit;
|
|
30166
|
+
position: relative;
|
|
30167
|
+
z-index: 2;
|
|
30168
30168
|
}
|
|
30169
30169
|
|
|
30170
30170
|
.k-tabstrip-items {
|
|
@@ -30172,7 +30172,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30172
30172
|
display: flex;
|
|
30173
30173
|
flex-direction: row;
|
|
30174
30174
|
flex: 0 0 auto;
|
|
30175
|
-
position: relative;
|
|
30176
30175
|
|
|
30177
30176
|
.k-item {
|
|
30178
30177
|
margin: 0;
|
|
@@ -30216,6 +30215,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30216
30215
|
display: none;
|
|
30217
30216
|
overflow: auto;
|
|
30218
30217
|
flex: 1 1 auto;
|
|
30218
|
+
position: relative;
|
|
30219
|
+
z-index: 1;
|
|
30219
30220
|
|
|
30220
30221
|
&.k-state-active {
|
|
30221
30222
|
display: block;
|
|
@@ -30250,9 +30251,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30250
30251
|
|
|
30251
30252
|
|
|
30252
30253
|
// Scrolling
|
|
30253
|
-
.k-tabstrip
|
|
30254
|
+
.k-tabstrip-scrollable {
|
|
30254
30255
|
> .k-tabstrip-items-wrapper {
|
|
30255
|
-
border-width: 0;
|
|
30256
30256
|
|
|
30257
30257
|
> .k-tabstrip-items {
|
|
30258
30258
|
flex: 1 1 auto;
|
|
@@ -30277,11 +30277,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30277
30277
|
}
|
|
30278
30278
|
}
|
|
30279
30279
|
}
|
|
30280
|
-
|
|
30281
|
-
> .k-content,
|
|
30282
|
-
> .k-tabstrip-content {
|
|
30283
|
-
border-width: $tabstrip-content-border-width;
|
|
30284
|
-
}
|
|
30285
30280
|
}
|
|
30286
30281
|
|
|
30287
30282
|
|
|
@@ -30289,6 +30284,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30289
30284
|
.k-tabstrip-top {
|
|
30290
30285
|
> .k-tabstrip-items-wrapper {
|
|
30291
30286
|
border-bottom-width: $tabstrip-border-width;
|
|
30287
|
+
margin-bottom: -$tabstrip-content-border-width;
|
|
30292
30288
|
|
|
30293
30289
|
.k-item {
|
|
30294
30290
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
@@ -30307,12 +30303,13 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30307
30303
|
> .k-content,
|
|
30308
30304
|
> .k-tabstrip-content {
|
|
30309
30305
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
30310
|
-
border-top-
|
|
30306
|
+
border-top-color: transparent !important; // sass-lint:disable-line no-important
|
|
30311
30307
|
}
|
|
30312
30308
|
}
|
|
30313
30309
|
.k-tabstrip-bottom {
|
|
30314
30310
|
> .k-tabstrip-items-wrapper {
|
|
30315
30311
|
border-top-width: $tabstrip-border-width;
|
|
30312
|
+
margin-top: -$tabstrip-content-border-width;
|
|
30316
30313
|
|
|
30317
30314
|
.k-item {
|
|
30318
30315
|
@include border-bottom-radius( $tabstrip-item-border-radius );
|
|
@@ -30331,7 +30328,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30331
30328
|
> .k-content,
|
|
30332
30329
|
> .k-tabstrip-content {
|
|
30333
30330
|
@include border-top-radius( $tabstrip-item-border-radius );
|
|
30334
|
-
border-bottom-
|
|
30331
|
+
border-bottom-color: transparent !important; // sass-lint:disable-line no-important
|
|
30335
30332
|
}
|
|
30336
30333
|
}
|
|
30337
30334
|
.k-tabstrip-left {
|
|
@@ -30339,6 +30336,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30339
30336
|
|
|
30340
30337
|
> .k-tabstrip-items-wrapper {
|
|
30341
30338
|
border-right-width: $tabstrip-border-width;
|
|
30339
|
+
margin-right: -$tabstrip-content-border-width;
|
|
30342
30340
|
|
|
30343
30341
|
> .k-tabstrip-items {
|
|
30344
30342
|
display: inline-flex;
|
|
@@ -30362,10 +30360,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30362
30360
|
> .k-content,
|
|
30363
30361
|
> .k-tabstrip-content {
|
|
30364
30362
|
@include border-right-radius( $tabstrip-item-border-radius );
|
|
30365
|
-
// sass-lint:disable no-important
|
|
30366
|
-
|
|
30367
|
-
// sass-lint:enable no-important
|
|
30368
|
-
border-left-width: 0;
|
|
30363
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
30364
|
+
border-left-color: transparent !important; // sass-lint:disable-line no-important
|
|
30369
30365
|
}
|
|
30370
30366
|
|
|
30371
30367
|
}
|
|
@@ -30374,6 +30370,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30374
30370
|
|
|
30375
30371
|
> .k-tabstrip-items-wrapper {
|
|
30376
30372
|
border-left-width: $tabstrip-border-width;
|
|
30373
|
+
margin-left: -$tabstrip-content-border-width;
|
|
30377
30374
|
|
|
30378
30375
|
> .k-tabstrip-items {
|
|
30379
30376
|
display: inline-flex;
|
|
@@ -30397,10 +30394,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
30397
30394
|
> .k-content,
|
|
30398
30395
|
> .k-tabstrip-content {
|
|
30399
30396
|
@include border-left-radius( $tabstrip-item-border-radius );
|
|
30400
|
-
// sass-lint:disable no-important
|
|
30401
|
-
|
|
30402
|
-
// sass-lint:enable no-important
|
|
30403
|
-
border-right-width: 0;
|
|
30397
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
30398
|
+
border-right-color: transparent !important; // sass-lint:disable-line no-important
|
|
30404
30399
|
}
|
|
30405
30400
|
}
|
|
30406
30401
|
|
|
@@ -31589,7 +31584,7 @@ $skeleton-rect-border-radius: 0 !default;
|
|
|
31589
31584
|
|
|
31590
31585
|
$skeleton-circle-border-radius: 9999px !default;
|
|
31591
31586
|
|
|
31592
|
-
$skeleton-item-bg: rgba( $
|
|
31587
|
+
$skeleton-item-bg: rgba( $inverse, .2 ) !default;
|
|
31593
31588
|
|
|
31594
31589
|
$skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
31595
31590
|
|
|
@@ -34147,7 +34142,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34147
34142
|
display: inline-flex;
|
|
34148
34143
|
flex-direction: row;
|
|
34149
34144
|
position: absolute;
|
|
34150
|
-
z-index:
|
|
34145
|
+
z-index: 2;
|
|
34151
34146
|
top: 0;
|
|
34152
34147
|
left: 0;
|
|
34153
34148
|
|
|
@@ -34164,6 +34159,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34164
34159
|
// Tabstrip
|
|
34165
34160
|
.k-spreadsheet-tabstrip {
|
|
34166
34161
|
padding-top: $toolbar-padding-y;
|
|
34162
|
+
position: relative;
|
|
34163
|
+
z-index: 1;
|
|
34164
|
+
}
|
|
34165
|
+
.k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
|
|
34166
|
+
margin: 0;
|
|
34167
34167
|
}
|
|
34168
34168
|
.k-spreadsheet-tabstrip .k-loading {
|
|
34169
34169
|
display: none;
|
|
@@ -34317,17 +34317,17 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34317
34317
|
|
|
34318
34318
|
// Sheets bar
|
|
34319
34319
|
.k-spreadsheet-sheets-bar {
|
|
34320
|
-
padding: 0 $
|
|
34320
|
+
padding: 0 0 map-get( $spacing, 1 ) map-get( $spacing, 1 );
|
|
34321
34321
|
border-width: 1px 0 0;
|
|
34322
34322
|
border-style: solid;
|
|
34323
34323
|
border-color: inherit;
|
|
34324
34324
|
display: flex;
|
|
34325
34325
|
flex-direction: row;
|
|
34326
|
-
align-items:
|
|
34326
|
+
align-items: flex-start;
|
|
34327
34327
|
position: relative;
|
|
34328
34328
|
}
|
|
34329
34329
|
.k-spreadsheet-sheets-bar-add {
|
|
34330
|
-
|
|
34330
|
+
align-self: center;
|
|
34331
34331
|
|
|
34332
34332
|
&:not(:hover) {
|
|
34333
34333
|
border-color: transparent;
|
|
@@ -34336,22 +34336,13 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34336
34336
|
}
|
|
34337
34337
|
}
|
|
34338
34338
|
.k-spreadsheet-sheets-items {
|
|
34339
|
-
margin-top: -1px;
|
|
34340
34339
|
flex: 1;
|
|
34341
34340
|
overflow: hidden;
|
|
34342
34341
|
|
|
34343
|
-
|
|
34344
|
-
|
|
34345
|
-
margin: 0 $button-calc-size !important;
|
|
34342
|
+
.k-tabstrip-items-wrapper {
|
|
34343
|
+
margin: 0;
|
|
34346
34344
|
border-width: 0;
|
|
34347
34345
|
}
|
|
34348
|
-
.k-tabstrip-prev {
|
|
34349
|
-
left: 0 !important;
|
|
34350
|
-
}
|
|
34351
|
-
.k-tabstrip-next {
|
|
34352
|
-
right: 0 !important;
|
|
34353
|
-
}
|
|
34354
|
-
// sass-lint:enable no-important
|
|
34355
34346
|
|
|
34356
34347
|
.k-item {
|
|
34357
34348
|
.k-link {
|
|
@@ -34366,6 +34357,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34366
34357
|
display: inline-flex;
|
|
34367
34358
|
flex-direction: row;
|
|
34368
34359
|
vertical-align: middle;
|
|
34360
|
+
align-self: center;
|
|
34369
34361
|
}
|
|
34370
34362
|
}
|
|
34371
34363
|
}
|
|
@@ -35982,9 +35974,9 @@ $pivotgrid-remove-text: null !default;
|
|
|
35982
35974
|
}
|
|
35983
35975
|
|
|
35984
35976
|
.k-pivot-toolbar {
|
|
35985
|
-
border-
|
|
35986
|
-
border-
|
|
35987
|
-
align-items: start;
|
|
35977
|
+
border-width: 0 0 1px;
|
|
35978
|
+
border-style: solid;
|
|
35979
|
+
align-items: flex-start;
|
|
35988
35980
|
flex-wrap: wrap;
|
|
35989
35981
|
|
|
35990
35982
|
> * {
|
|
@@ -37626,7 +37618,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
37626
37618
|
$taskboard-column-width: 320px !default;
|
|
37627
37619
|
$taskboard-column-border-width: 1px !default;
|
|
37628
37620
|
$taskboard-column-border-radius: $border-radius-sm !default;
|
|
37629
|
-
$taskboard-column-bg: $gray-100 !default;
|
|
37621
|
+
$taskboard-column-bg: if( $dark-theme, $gray-900, $gray-100 ) !default;
|
|
37630
37622
|
$taskboard-column-text: null !default;
|
|
37631
37623
|
$taskboard-column-border: transparent !default;
|
|
37632
37624
|
|
|
@@ -37691,7 +37683,7 @@ $taskboard-card-header-hover-text: $primary-lighter !default;
|
|
|
37691
37683
|
|
|
37692
37684
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
37693
37685
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
37694
|
-
$taskboard-drag-placeholder-bg: rgba(
|
|
37686
|
+
$taskboard-drag-placeholder-bg: rgba( if( $dark-theme, $white, $black ), .1) !default;
|
|
37695
37687
|
$taskboard-drag-placeholder-border: $component-border !default;
|
|
37696
37688
|
|
|
37697
37689
|
// #endregion
|
|
@@ -42592,6 +42584,11 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
42592
42584
|
border-style: solid;
|
|
42593
42585
|
line-height: $chat-bubble-line-height;
|
|
42594
42586
|
word-wrap: break-word;
|
|
42587
|
+
|
|
42588
|
+
a {
|
|
42589
|
+
color: inherit;
|
|
42590
|
+
text-decoration: underline;
|
|
42591
|
+
}
|
|
42595
42592
|
}
|
|
42596
42593
|
|
|
42597
42594
|
|
|
@@ -43034,6 +43031,9 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
43034
43031
|
@include box-shadow( $chat-bubble-shadow );
|
|
43035
43032
|
transition: $transition;
|
|
43036
43033
|
order: -1;
|
|
43034
|
+
|
|
43035
|
+
a { color: $link-text; }
|
|
43036
|
+
a:hover { color: $link-hover-text; }
|
|
43037
43037
|
}
|
|
43038
43038
|
.k-bubble:hover {
|
|
43039
43039
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
@@ -44832,11 +44832,11 @@ $chart-inactive: rgba( $body-text, .5 ) !default;
|
|
|
44832
44832
|
|
|
44833
44833
|
/// The color of the Chart grid lines (major).
|
|
44834
44834
|
/// @group charts
|
|
44835
|
-
$chart-major-lines: rgba(
|
|
44835
|
+
$chart-major-lines: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
44836
44836
|
|
|
44837
44837
|
/// The color of the Chart grid lines (minor).
|
|
44838
44838
|
/// @group charts
|
|
44839
|
-
$chart-minor-lines: rgba(
|
|
44839
|
+
$chart-minor-lines: rgba( if( $dark-theme, $white, $black ), .04 ) !default;
|
|
44840
44840
|
|
|
44841
44841
|
$chart-area-opacity: .6 !default;
|
|
44842
44842
|
$chart-area-inactive-opacity: .1 !default;
|
|
@@ -44846,23 +44846,20 @@ $chart-bg: $component-bg !default;
|
|
|
44846
44846
|
$chart-text: $component-text !default;
|
|
44847
44847
|
$chart-border: $component-border !default;
|
|
44848
44848
|
|
|
44849
|
-
$chart-
|
|
44850
|
-
|
|
44851
|
-
$chart-crosshair-background: rgba(0, 0, 0, .5) !default;
|
|
44849
|
+
$chart-crosshair-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
44852
44850
|
$chart-crosshair-shared-tooltip-color: $chart-text !default;
|
|
44853
44851
|
$chart-crosshair-shared-tooltip-background: try-shade( $chart-bg, 1 ) !default;
|
|
44854
|
-
$chart-crosshair-shared-tooltip-border: rgba(
|
|
44852
|
+
$chart-crosshair-shared-tooltip-border: rgba( if( $dark-theme, $white, $black ), .08) !default;
|
|
44855
44853
|
|
|
44856
|
-
$chart-notes-background: rgba(
|
|
44857
|
-
$chart-notes-border: rgba(
|
|
44858
|
-
$chart-notes-lines: rgba(
|
|
44854
|
+
$chart-notes-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
44855
|
+
$chart-notes-border: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
44856
|
+
$chart-notes-lines: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
44859
44857
|
|
|
44860
|
-
$error-bars-background: rgba(
|
|
44858
|
+
$error-bars-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
44861
44859
|
|
|
44862
|
-
$chart-selection-marque-background: $series-a !default;
|
|
44863
44860
|
$selection-handle-size: 22px !default;
|
|
44864
|
-
$selection-border-color: rgba(
|
|
44865
|
-
$selection-shadow: inset 0 1px 7px rgba(
|
|
44861
|
+
$selection-border-color: rgba( if( $dark-theme, $white, $black ), .08 ) !default;
|
|
44862
|
+
$selection-shadow: inset 0 1px 7px rgba( if( $dark-theme, $white, $black ), .15) !default;
|
|
44866
44863
|
|
|
44867
44864
|
|
|
44868
44865
|
// TreeMap
|
|
@@ -44914,7 +44911,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44914
44911
|
font-size: $chart-font-size;
|
|
44915
44912
|
line-height: $chart-line-height;
|
|
44916
44913
|
-webkit-touch-callout: none;
|
|
44917
|
-
-webkit-tap-highlight-color: $
|
|
44914
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
44918
44915
|
}
|
|
44919
44916
|
|
|
44920
44917
|
.k-chart,
|
|
@@ -45055,20 +45052,6 @@ $treemap-line-height: $line-height !default;
|
|
|
45055
45052
|
height: 100%;
|
|
45056
45053
|
}
|
|
45057
45054
|
|
|
45058
|
-
.k-marquee {
|
|
45059
|
-
position: absolute;
|
|
45060
|
-
z-index: 100000;
|
|
45061
|
-
}
|
|
45062
|
-
|
|
45063
|
-
.k-marquee-color,
|
|
45064
|
-
.k-marquee-text {
|
|
45065
|
-
position: absolute;
|
|
45066
|
-
top: 0;
|
|
45067
|
-
left: 0;
|
|
45068
|
-
width: 100%;
|
|
45069
|
-
height: 100%;
|
|
45070
|
-
}
|
|
45071
|
-
|
|
45072
45055
|
// Navigator hint
|
|
45073
45056
|
.k-navigator-hint div {
|
|
45074
45057
|
position: absolute;
|
|
@@ -45439,10 +45422,10 @@ $treemap-line-height: $line-height !default;
|
|
|
45439
45422
|
// Tooltip
|
|
45440
45423
|
// TODO
|
|
45441
45424
|
.k-chart-tooltip {
|
|
45442
|
-
color: $
|
|
45425
|
+
color: $white;
|
|
45443
45426
|
}
|
|
45444
45427
|
.k-chart-tooltip-inverse {
|
|
45445
|
-
color:
|
|
45428
|
+
color: $black;
|
|
45446
45429
|
}
|
|
45447
45430
|
|
|
45448
45431
|
.k-chart-crosshair-tooltip,
|
|
@@ -45488,14 +45471,6 @@ $treemap-line-height: $line-height !default;
|
|
|
45488
45471
|
background-color: $component-bg;
|
|
45489
45472
|
opacity: .8;
|
|
45490
45473
|
}
|
|
45491
|
-
|
|
45492
|
-
.k-marquee-color {
|
|
45493
|
-
background-color: $chart-selection-marque-background;
|
|
45494
|
-
}
|
|
45495
|
-
|
|
45496
|
-
.k-marquee-color {
|
|
45497
|
-
opacity: .6;
|
|
45498
|
-
}
|
|
45499
45474
|
}
|
|
45500
45475
|
|
|
45501
45476
|
|