@progress/kendo-theme-default 4.42.0 → 4.42.1-dev.3
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 +439 -209
- package/dist/all.scss +174 -250
- package/package.json +2 -2
- package/scss/action-buttons/_layout.scss +1 -0
- package/scss/autocomplete/_layout.scss +0 -20
- package/scss/card/_layout.scss +4 -68
- package/scss/card/_theme.scss +2 -1
- package/scss/chat/_layout.scss +24 -20
- package/scss/chat/_variables.scss +5 -5
- package/scss/checkbox/_theme.scss +1 -1
- package/scss/chip/_layout.scss +2 -0
- package/scss/chip/_theme.scss +1 -0
- package/scss/combobox/_layout.scss +0 -22
- package/scss/datetime/_layout.scss +0 -45
- package/scss/dropdownlist/_layout.scss +0 -12
- package/scss/editor/_layout.scss +84 -0
- package/scss/editor/_theme.scss +9 -0
- package/scss/editor/_variables.scss +8 -0
- package/scss/forms/_layout.scss +2 -1
- package/scss/input/_layout.scss +3 -16
- package/scss/menu/_layout.scss +0 -1
- package/scss/multiselect/_layout.scss +0 -19
- package/scss/numerictextbox/_layout.scss +0 -11
- package/scss/pivotgrid/_layout.scss +21 -0
- package/scss/popup/_layout.scss +0 -4
- package/scss/searchbox/_layout.scss +1 -0
- package/scss/spreadsheet/_layout.scss +0 -4
- package/scss/utils/_border.scss +5 -0
- package/scss/window/_layout.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -3133,6 +3133,11 @@ $display4-letter-spacing: null !default;
|
|
|
3133
3133
|
$_selector-suffix: if( $radius == default, "", "-#{$radius}" );
|
|
3134
3134
|
|
|
3135
3135
|
.k-#{$_selector-base}#{$_selector-suffix} {
|
|
3136
|
+
@each $prop in $props {
|
|
3137
|
+
#{$prop}: $value;
|
|
3138
|
+
}
|
|
3139
|
+
}
|
|
3140
|
+
.\!k-#{$_selector-base}#{$_selector-suffix} {
|
|
3136
3141
|
@each $prop in $props {
|
|
3137
3142
|
#{$prop}: $value !important;
|
|
3138
3143
|
}
|
|
@@ -6921,6 +6926,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
6921
6926
|
font-size: $chip-selected-icon-font-size;
|
|
6922
6927
|
}
|
|
6923
6928
|
|
|
6929
|
+
.k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
6924
6930
|
.k-chip.k-selected .k-selected-icon-wrapper {
|
|
6925
6931
|
width: $chip-selected-icon-size;
|
|
6926
6932
|
visibility: visible;
|
|
@@ -6940,6 +6946,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
6940
6946
|
transition: width .2s, opacity .2s;
|
|
6941
6947
|
}
|
|
6942
6948
|
|
|
6949
|
+
&.k-state-selected .k-selected-icon-wrapper,
|
|
6943
6950
|
&.k-selected .k-selected-icon-wrapper {
|
|
6944
6951
|
opacity: 1;
|
|
6945
6952
|
}
|
|
@@ -7060,6 +7067,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
7060
7067
|
// #region @import "_theme.scss"; -> packages/default/scss/chip/_theme.scss
|
|
7061
7068
|
@include exports("chip/theme") {
|
|
7062
7069
|
|
|
7070
|
+
.k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
|
|
7063
7071
|
.k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
|
|
7064
7072
|
@include fill(
|
|
7065
7073
|
$color: $chip-multiple-selected-icon-text,
|
|
@@ -8747,7 +8755,9 @@ $input-separator-opacity: .5 !default;
|
|
|
8747
8755
|
}
|
|
8748
8756
|
|
|
8749
8757
|
// Input with icon styles
|
|
8750
|
-
.k-input-icon
|
|
8758
|
+
.k-input-icon,
|
|
8759
|
+
.k-input-validation-icon,
|
|
8760
|
+
.k-input-loading-icon {
|
|
8751
8761
|
width: $input-icon-width;
|
|
8752
8762
|
height: $input-icon-height;
|
|
8753
8763
|
display: inline-flex;
|
|
@@ -8755,21 +8765,6 @@ $input-separator-opacity: .5 !default;
|
|
|
8755
8765
|
align-items: center;
|
|
8756
8766
|
justify-content: center;
|
|
8757
8767
|
flex-shrink: 0;
|
|
8758
|
-
|
|
8759
|
-
.k-ie9 & {
|
|
8760
|
-
position: absolute;
|
|
8761
|
-
height: 100%;
|
|
8762
|
-
right: 0;
|
|
8763
|
-
top: 0;
|
|
8764
|
-
}
|
|
8765
|
-
|
|
8766
|
-
.k-rtl &,
|
|
8767
|
-
[dir="rtl"] & {
|
|
8768
|
-
.k-ie9 & {
|
|
8769
|
-
left: 0;
|
|
8770
|
-
right: auto;
|
|
8771
|
-
}
|
|
8772
|
-
}
|
|
8773
8768
|
}
|
|
8774
8769
|
|
|
8775
8770
|
|
|
@@ -9272,10 +9267,6 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
9272
9267
|
border-width: 1px;
|
|
9273
9268
|
}
|
|
9274
9269
|
}
|
|
9275
|
-
|
|
9276
|
-
.k-separator {
|
|
9277
|
-
height: 0;
|
|
9278
|
-
}
|
|
9279
9270
|
}
|
|
9280
9271
|
|
|
9281
9272
|
.k-virtual-content {
|
|
@@ -10022,7 +10013,7 @@ $window-sizes: (
|
|
|
10022
10013
|
.k-maskedtextbox,
|
|
10023
10014
|
.k-textbox-container,
|
|
10024
10015
|
.k-floating-label-container {
|
|
10025
|
-
display: flex;
|
|
10016
|
+
display: inline-flex;
|
|
10026
10017
|
width: 100%;
|
|
10027
10018
|
}
|
|
10028
10019
|
|
|
@@ -10083,6 +10074,7 @@ $window-sizes: (
|
|
|
10083
10074
|
margin-right: $horizontal-form-label-margin-x;
|
|
10084
10075
|
padding-top: $horizontal-form-label-padding-top;
|
|
10085
10076
|
width: $horizontal-form-label-width;
|
|
10077
|
+
text-align: end;
|
|
10086
10078
|
flex-direction: column;
|
|
10087
10079
|
align-items: $horizontal-form-label-align;
|
|
10088
10080
|
justify-content: flex-start;
|
|
@@ -11016,7 +11008,7 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
11016
11008
|
|
|
11017
11009
|
|
|
11018
11010
|
// Hover state
|
|
11019
|
-
.k-checkbox:hover
|
|
11011
|
+
.k-checkbox:hover,
|
|
11020
11012
|
.k-checkbox.k-state-hover {
|
|
11021
11013
|
@include fill(
|
|
11022
11014
|
$checkbox-hovered-text,
|
|
@@ -13214,6 +13206,7 @@ $message-box-link-text-decoration: underline !default;
|
|
|
13214
13206
|
|
|
13215
13207
|
// Actions orientation
|
|
13216
13208
|
.k-actions-horizontal {
|
|
13209
|
+
width: 100%;
|
|
13217
13210
|
flex-flow: row nowrap;
|
|
13218
13211
|
}
|
|
13219
13212
|
.k-actions-vertical {
|
|
@@ -15452,26 +15445,6 @@ $autocomplete-invalid-shadow: $invalid-shadow !default;
|
|
|
15452
15445
|
height: $input-icon-height;
|
|
15453
15446
|
}
|
|
15454
15447
|
|
|
15455
|
-
|
|
15456
|
-
// Clear value
|
|
15457
|
-
.k-clear-value {
|
|
15458
|
-
visibility: hidden;
|
|
15459
|
-
}
|
|
15460
|
-
&:hover,
|
|
15461
|
-
// &:focus-within,
|
|
15462
|
-
&.k-state-hover,
|
|
15463
|
-
&.k-state-focused,
|
|
15464
|
-
&.k-state-focus {
|
|
15465
|
-
.k-clear-value {
|
|
15466
|
-
visibility: visible;
|
|
15467
|
-
}
|
|
15468
|
-
}
|
|
15469
|
-
&:focus-within {
|
|
15470
|
-
.k-clear-value {
|
|
15471
|
-
visibility: visible;
|
|
15472
|
-
}
|
|
15473
|
-
}
|
|
15474
|
-
|
|
15475
15448
|
}
|
|
15476
15449
|
|
|
15477
15450
|
|
|
@@ -15947,23 +15920,12 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
15947
15920
|
top: -$spinner-icon-offset;
|
|
15948
15921
|
}
|
|
15949
15922
|
|
|
15950
|
-
.k-i-warning {
|
|
15951
|
-
align-self: center;
|
|
15952
|
-
margin-right: $spacer-x / 2;
|
|
15953
|
-
}
|
|
15954
|
-
|
|
15955
15923
|
|
|
15956
15924
|
// RTL
|
|
15957
15925
|
.k-rtl &,
|
|
15958
15926
|
&[dir="rtl"] {
|
|
15959
15927
|
text-align: right;
|
|
15960
15928
|
|
|
15961
|
-
.k-numeric-wrap .k-i-warning {
|
|
15962
|
-
align-self: center;
|
|
15963
|
-
margin-right: 0;
|
|
15964
|
-
margin-left: $spacer-x / 2;
|
|
15965
|
-
}
|
|
15966
|
-
|
|
15967
15929
|
.k-select {
|
|
15968
15930
|
@include border-left-radius-only( $input-border-radius );
|
|
15969
15931
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -16930,28 +16892,6 @@ $combobox-select-pressed-gradient: $button-active-gradient !default;
|
|
|
16930
16892
|
// Input
|
|
16931
16893
|
.k-input {}
|
|
16932
16894
|
|
|
16933
|
-
|
|
16934
|
-
// Clear value
|
|
16935
|
-
.k-clear-value {
|
|
16936
|
-
visibility: hidden;
|
|
16937
|
-
}
|
|
16938
|
-
&:hover,
|
|
16939
|
-
// &:focus-within,
|
|
16940
|
-
&.k-state-hover,
|
|
16941
|
-
&.k-state-focused,
|
|
16942
|
-
&.k-state-focus,
|
|
16943
|
-
.k-dropdown-wrap.k-state-hover,
|
|
16944
|
-
.k-dropdown-wrap.k-state-focused {
|
|
16945
|
-
.k-clear-value {
|
|
16946
|
-
visibility: visible;
|
|
16947
|
-
}
|
|
16948
|
-
}
|
|
16949
|
-
&:focus-within {
|
|
16950
|
-
.k-clear-value {
|
|
16951
|
-
visibility: visible;
|
|
16952
|
-
}
|
|
16953
|
-
}
|
|
16954
|
-
|
|
16955
16895
|
// Select
|
|
16956
16896
|
.k-select {
|
|
16957
16897
|
@include border-right-radius-only( $input-border-radius );
|
|
@@ -18163,26 +18103,11 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18163
18103
|
}
|
|
18164
18104
|
|
|
18165
18105
|
|
|
18166
|
-
// Validation icon
|
|
18167
|
-
.k-i-warning {
|
|
18168
|
-
position: absolute;
|
|
18169
|
-
right: $padding-x;
|
|
18170
|
-
top: 50%;
|
|
18171
|
-
transform: translateY(-50%);
|
|
18172
|
-
overflow: visible;
|
|
18173
|
-
}
|
|
18174
|
-
|
|
18175
|
-
|
|
18176
18106
|
// RTL
|
|
18177
18107
|
.k-rtl &,
|
|
18178
18108
|
&[dir="rtl"] {
|
|
18179
18109
|
text-align: right;
|
|
18180
18110
|
|
|
18181
|
-
.k-dateinput-wrap .k-i-warning {
|
|
18182
|
-
left: $padding-x;
|
|
18183
|
-
right: auto;
|
|
18184
|
-
}
|
|
18185
|
-
|
|
18186
18111
|
.k-select {
|
|
18187
18112
|
@include border-left-radius-only( $input-border-radius );
|
|
18188
18113
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -18270,16 +18195,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18270
18195
|
}
|
|
18271
18196
|
|
|
18272
18197
|
|
|
18273
|
-
// Validation icon
|
|
18274
|
-
.k-i-warning {
|
|
18275
|
-
position: absolute;
|
|
18276
|
-
top: 50%;
|
|
18277
|
-
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
18278
|
-
transform: translateY(-50%);
|
|
18279
|
-
overflow: visible;
|
|
18280
|
-
}
|
|
18281
|
-
|
|
18282
|
-
|
|
18283
18198
|
// RTL
|
|
18284
18199
|
.k-rtl &,
|
|
18285
18200
|
&[dir="rtl"] {
|
|
@@ -18289,11 +18204,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18289
18204
|
@include border-left-radius-only( $input-border-radius );
|
|
18290
18205
|
border-width: 0 $picker-select-border-width 0 0;
|
|
18291
18206
|
}
|
|
18292
|
-
|
|
18293
|
-
.k-i-warning {
|
|
18294
|
-
right: auto;
|
|
18295
|
-
left: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
18296
|
-
}
|
|
18297
18207
|
}
|
|
18298
18208
|
}
|
|
18299
18209
|
|
|
@@ -18365,16 +18275,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18365
18275
|
}
|
|
18366
18276
|
|
|
18367
18277
|
|
|
18368
|
-
// Validation icon
|
|
18369
|
-
.k-i-warning {
|
|
18370
|
-
position: absolute;
|
|
18371
|
-
top: 50%;
|
|
18372
|
-
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
18373
|
-
transform: translateY(-50%);
|
|
18374
|
-
overflow: visible;
|
|
18375
|
-
}
|
|
18376
|
-
|
|
18377
|
-
|
|
18378
18278
|
// RTL
|
|
18379
18279
|
.k-rtl &,
|
|
18380
18280
|
&[dir="rtl"] {
|
|
@@ -18384,11 +18284,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18384
18284
|
@include border-left-radius-only( $input-border-radius );
|
|
18385
18285
|
border-width: 0 $picker-select-border-width 0 0;
|
|
18386
18286
|
}
|
|
18387
|
-
|
|
18388
|
-
.k-i-warning {
|
|
18389
|
-
right: auto;
|
|
18390
|
-
left: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
18391
|
-
}
|
|
18392
18287
|
}
|
|
18393
18288
|
}
|
|
18394
18289
|
|
|
@@ -19598,18 +19493,6 @@ $dropdownlist-focused-shadow: $input-focused-shadow !default;
|
|
|
19598
19493
|
text-align: center;
|
|
19599
19494
|
cursor: pointer;
|
|
19600
19495
|
}
|
|
19601
|
-
|
|
19602
|
-
// Clear value
|
|
19603
|
-
.k-clear-value {
|
|
19604
|
-
visibility: hidden;
|
|
19605
|
-
}
|
|
19606
|
-
&.k-state-focused,
|
|
19607
|
-
&.k-state-hover,
|
|
19608
|
-
&:hover {
|
|
19609
|
-
.k-clear-value {
|
|
19610
|
-
visibility: visible;
|
|
19611
|
-
}
|
|
19612
|
-
}
|
|
19613
19496
|
}
|
|
19614
19497
|
|
|
19615
19498
|
}
|
|
@@ -19963,18 +19846,10 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19963
19846
|
|
|
19964
19847
|
// Clear value
|
|
19965
19848
|
.k-clear-value {
|
|
19966
|
-
visibility: hidden;
|
|
19967
19849
|
position: absolute;
|
|
19968
19850
|
top: 0;
|
|
19969
19851
|
right: 0;
|
|
19970
19852
|
}
|
|
19971
|
-
&:hover,
|
|
19972
|
-
&.k-state-hover,
|
|
19973
|
-
&.k-state-focused {
|
|
19974
|
-
.k-clear-value {
|
|
19975
|
-
visibility: visible;
|
|
19976
|
-
}
|
|
19977
|
-
}
|
|
19978
19853
|
|
|
19979
19854
|
// Select
|
|
19980
19855
|
> .k-select {
|
|
@@ -19996,17 +19871,6 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19996
19871
|
right: $multiselect-clear-right;
|
|
19997
19872
|
}
|
|
19998
19873
|
|
|
19999
|
-
|
|
20000
|
-
&.k-state-hover,
|
|
20001
|
-
&.k-state-focused,
|
|
20002
|
-
&.k-state-focus {
|
|
20003
|
-
> .k-multiselect-wrap {
|
|
20004
|
-
.k-clear-value {
|
|
20005
|
-
visibility: visible;
|
|
20006
|
-
}
|
|
20007
|
-
}
|
|
20008
|
-
}
|
|
20009
|
-
|
|
20010
19874
|
&[dir="rtl"],
|
|
20011
19875
|
.k-rtl & {
|
|
20012
19876
|
text-align: right;
|
|
@@ -20744,6 +20608,7 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
20744
20608
|
@include border-radius( $searchbox-border-radius );
|
|
20745
20609
|
border-width: 1px;
|
|
20746
20610
|
border-style: solid;
|
|
20611
|
+
box-sizing: border-box;
|
|
20747
20612
|
font-family: $searchbox-font-family;
|
|
20748
20613
|
font-size: $searchbox-font-size;
|
|
20749
20614
|
line-height: $searchbox-line-height;
|
|
@@ -22350,7 +22215,6 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22350
22215
|
height: auto;
|
|
22351
22216
|
border-width: 0 0 0 1px;
|
|
22352
22217
|
border-style: solid;
|
|
22353
|
-
flex-shrink: 0;
|
|
22354
22218
|
}
|
|
22355
22219
|
}
|
|
22356
22220
|
|
|
@@ -22863,6 +22727,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22863
22727
|
}
|
|
22864
22728
|
|
|
22865
22729
|
// Buttons Layout
|
|
22730
|
+
.k-window-buttons,
|
|
22866
22731
|
.k-window-buttongroup {
|
|
22867
22732
|
@include border-bottom-radius( $window-border-radius );
|
|
22868
22733
|
padding: $window-buttongroup-padding-y $window-buttongroup-padding-x;
|
|
@@ -24313,13 +24178,6 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24313
24178
|
flex-shrink: 0;
|
|
24314
24179
|
flex-basis: auto;
|
|
24315
24180
|
gap: $card-actions-gap;
|
|
24316
|
-
|
|
24317
|
-
> .k-button {
|
|
24318
|
-
padding-left: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
24319
|
-
padding-right: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
24320
|
-
max-width: 100%;
|
|
24321
|
-
white-space: normal;
|
|
24322
|
-
}
|
|
24323
24181
|
}
|
|
24324
24182
|
|
|
24325
24183
|
|
|
@@ -24334,40 +24192,9 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24334
24192
|
.k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
24335
24193
|
|
|
24336
24194
|
|
|
24337
|
-
//
|
|
24338
|
-
.k-card-actions-stretched {
|
|
24339
|
-
|
|
24340
|
-
gap: 0;
|
|
24341
|
-
|
|
24342
|
-
> .k-button,
|
|
24343
|
-
> .k-card-action {
|
|
24344
|
-
flex: 1 1 auto;
|
|
24345
|
-
}
|
|
24346
|
-
|
|
24347
|
-
// TODO: refactor once we have button size
|
|
24348
|
-
.k-button {
|
|
24349
|
-
@include border-radius( 0 );
|
|
24350
|
-
padding-top: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
24351
|
-
padding-bottom: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
24352
|
-
}
|
|
24353
|
-
|
|
24354
|
-
.k-card & {
|
|
24355
|
-
border-top-width: $card-actions-border-width;
|
|
24356
|
-
}
|
|
24357
|
-
.k-card-horizontal > & {
|
|
24358
|
-
border-top-width: 0;
|
|
24359
|
-
border-inline-start-width: $card-actions-border-width;
|
|
24360
|
-
}
|
|
24361
|
-
.k-card-vertical > & {
|
|
24362
|
-
border-top-width: $card-actions-border-width;
|
|
24363
|
-
}
|
|
24364
|
-
|
|
24365
|
-
&.k-card-actions-horizontal > .k-card-action + .k-card-action {
|
|
24366
|
-
border-inline-start-width: $card-actions-border-width;
|
|
24367
|
-
}
|
|
24368
|
-
&.k-card-actions-vertical > .k-card-action + .k-card-action {
|
|
24369
|
-
border-top-width: $card-actions-border-width;
|
|
24370
|
-
}
|
|
24195
|
+
// Stretched actions
|
|
24196
|
+
.k-card-actions-stretched > * {
|
|
24197
|
+
flex: 1 1 auto;
|
|
24371
24198
|
}
|
|
24372
24199
|
|
|
24373
24200
|
|
|
@@ -24493,6 +24320,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24493
24320
|
height: $card-callout-height;
|
|
24494
24321
|
border-width: $card-border-width $card-border-width 0 0;
|
|
24495
24322
|
border-style: solid;
|
|
24323
|
+
box-sizing: border-box;
|
|
24496
24324
|
position: absolute;
|
|
24497
24325
|
}
|
|
24498
24326
|
|
|
@@ -24541,33 +24369,6 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24541
24369
|
|
|
24542
24370
|
|
|
24543
24371
|
|
|
24544
|
-
@include exports("card/layout/rtl") {
|
|
24545
|
-
|
|
24546
|
-
.k-rtl,
|
|
24547
|
-
[dir="rtl"] {
|
|
24548
|
-
|
|
24549
|
-
.k-card-actions-stretched {
|
|
24550
|
-
.k-card-action + .k-card-action {
|
|
24551
|
-
border-right-width: $card-actions-border-width;
|
|
24552
|
-
border-left-width: 0;
|
|
24553
|
-
}
|
|
24554
|
-
}
|
|
24555
|
-
|
|
24556
|
-
.k-card-horizontal {
|
|
24557
|
-
> .k-card-actions-stretched,
|
|
24558
|
-
.k-card-actions-vertical {
|
|
24559
|
-
border-right-width: $card-actions-border-width;
|
|
24560
|
-
border-left-width: 0;
|
|
24561
|
-
}
|
|
24562
|
-
}
|
|
24563
|
-
|
|
24564
|
-
}
|
|
24565
|
-
|
|
24566
|
-
}
|
|
24567
|
-
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
|
|
24571
24372
|
@include exports("card/layout/ie11") {
|
|
24572
24373
|
|
|
24573
24374
|
.k-ie11 {
|
|
@@ -24626,7 +24427,8 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24626
24427
|
|
|
24627
24428
|
|
|
24628
24429
|
// Separator
|
|
24629
|
-
.k-card-separator
|
|
24430
|
+
.k-card-separator,
|
|
24431
|
+
.k-card .k-separator {
|
|
24630
24432
|
border-color: $card-border;
|
|
24631
24433
|
}
|
|
24632
24434
|
|
|
@@ -31577,10 +31379,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31577
31379
|
.k-spreadsheet-popup {
|
|
31578
31380
|
padding: 0;
|
|
31579
31381
|
|
|
31580
|
-
.k-separator {
|
|
31581
|
-
display: block;
|
|
31582
|
-
}
|
|
31583
|
-
|
|
31584
31382
|
.k-button {
|
|
31585
31383
|
@include border-radius( 0 );
|
|
31586
31384
|
border-width: 0;
|
|
@@ -32727,6 +32525,27 @@ $pivotgrid-remove-text: null !default;
|
|
|
32727
32525
|
}
|
|
32728
32526
|
|
|
32729
32527
|
|
|
32528
|
+
@include exports( "pivotgrid/layout/export" ) {
|
|
32529
|
+
|
|
32530
|
+
.k-pdf-export-shadow {
|
|
32531
|
+
|
|
32532
|
+
.k-pivotgrid {
|
|
32533
|
+
height: auto !important; // sass-lint:disable-line no-important
|
|
32534
|
+
}
|
|
32535
|
+
|
|
32536
|
+
.k-pivotgrid-values {
|
|
32537
|
+
height: auto;
|
|
32538
|
+
overflow: visible;
|
|
32539
|
+
}
|
|
32540
|
+
|
|
32541
|
+
.k-pivotgrid-column-headers .k-pivotgrid-table {
|
|
32542
|
+
padding-inline-end: 0;
|
|
32543
|
+
}
|
|
32544
|
+
|
|
32545
|
+
}
|
|
32546
|
+
}
|
|
32547
|
+
|
|
32548
|
+
|
|
32730
32549
|
@include exports("pivotgrid/layout/legacy") {
|
|
32731
32550
|
|
|
32732
32551
|
.k-pivot {
|
|
@@ -34624,6 +34443,14 @@ $editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
|
34624
34443
|
|
|
34625
34444
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
34626
34445
|
|
|
34446
|
+
$editor-resize-handle-size: 5px !default;
|
|
34447
|
+
$editor-resize-handle-border-width: 1px !default;
|
|
34448
|
+
$editor-resize-handle-border: #000000 !default;
|
|
34449
|
+
$editor-resize-handle-bg: #ffffff !default;
|
|
34450
|
+
|
|
34451
|
+
$editor-selectednode-outline-width: 2px !default;
|
|
34452
|
+
$editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex-length
|
|
34453
|
+
|
|
34627
34454
|
// #endregion
|
|
34628
34455
|
// #region @import "_layout.scss"; -> packages/default/scss/editor/_layout.scss
|
|
34629
34456
|
@include exports("editor/layout") {
|
|
@@ -34696,6 +34523,89 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
34696
34523
|
overflow: auto;
|
|
34697
34524
|
}
|
|
34698
34525
|
|
|
34526
|
+
// Resizable images
|
|
34527
|
+
.k-editor-resize-handles-wrapper {
|
|
34528
|
+
position: absolute;
|
|
34529
|
+
visibility: hidden;
|
|
34530
|
+
}
|
|
34531
|
+
.k-editor-resize-handle {
|
|
34532
|
+
width: $editor-resize-handle-size;
|
|
34533
|
+
height: $editor-resize-handle-size;
|
|
34534
|
+
border-width: $editor-resize-handle-border-width;
|
|
34535
|
+
border-style: solid;
|
|
34536
|
+
position: absolute;
|
|
34537
|
+
visibility: visible;
|
|
34538
|
+
z-index: 100;
|
|
34539
|
+
|
|
34540
|
+
&.northwest {
|
|
34541
|
+
top: 0;
|
|
34542
|
+
left: 0;
|
|
34543
|
+
transform: translate(-50%, -50%);
|
|
34544
|
+
cursor: nw-resize;
|
|
34545
|
+
}
|
|
34546
|
+
|
|
34547
|
+
&.north {
|
|
34548
|
+
top: 0;
|
|
34549
|
+
left: 50%;
|
|
34550
|
+
transform: translate(-50%, -50%);
|
|
34551
|
+
cursor: n-resize;
|
|
34552
|
+
}
|
|
34553
|
+
|
|
34554
|
+
&.northeast {
|
|
34555
|
+
top: 0;
|
|
34556
|
+
right: 0;
|
|
34557
|
+
transform: translate(50%, -50%);
|
|
34558
|
+
cursor: ne-resize;
|
|
34559
|
+
}
|
|
34560
|
+
|
|
34561
|
+
&.southwest {
|
|
34562
|
+
left: 0;
|
|
34563
|
+
bottom: 0;
|
|
34564
|
+
transform: translate(-50%, 50%);
|
|
34565
|
+
cursor: sw-resize;
|
|
34566
|
+
}
|
|
34567
|
+
|
|
34568
|
+
&.south {
|
|
34569
|
+
bottom: 0;
|
|
34570
|
+
left: 50%;
|
|
34571
|
+
transform: translate(-50%, 50%);
|
|
34572
|
+
cursor: s-resize;
|
|
34573
|
+
}
|
|
34574
|
+
|
|
34575
|
+
&.southeast {
|
|
34576
|
+
right: 0;
|
|
34577
|
+
bottom: 0;
|
|
34578
|
+
transform: translate(50%, 50%);
|
|
34579
|
+
cursor: se-resize;
|
|
34580
|
+
}
|
|
34581
|
+
|
|
34582
|
+
&.west {
|
|
34583
|
+
top: 50%;
|
|
34584
|
+
left: 0;
|
|
34585
|
+
transform: translate(-50%, -50%);
|
|
34586
|
+
cursor: w-resize;
|
|
34587
|
+
}
|
|
34588
|
+
|
|
34589
|
+
&.east {
|
|
34590
|
+
top: 50%;
|
|
34591
|
+
right: 0;
|
|
34592
|
+
transform: translate(50%, -50%);
|
|
34593
|
+
cursor: e-resize;
|
|
34594
|
+
}
|
|
34595
|
+
}
|
|
34596
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
34597
|
+
outline-width: $editor-selectednode-outline-width;
|
|
34598
|
+
outline-style: solid;
|
|
34599
|
+
}
|
|
34600
|
+
.ProseMirror-hideselection { // sass-lint:disable-line class-name-format
|
|
34601
|
+
caret-color: transparent;
|
|
34602
|
+
|
|
34603
|
+
*::selection,
|
|
34604
|
+
*::-moz-selection {
|
|
34605
|
+
background: transparent;
|
|
34606
|
+
}
|
|
34607
|
+
}
|
|
34608
|
+
|
|
34699
34609
|
// Toolbar
|
|
34700
34610
|
.k-editor > .k-toolbar {
|
|
34701
34611
|
border-width: 0 0 $toolbar-border-width 0;
|
|
@@ -34769,6 +34679,7 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
34769
34679
|
padding: $padding-x;
|
|
34770
34680
|
width: 100%;
|
|
34771
34681
|
height: 100%;
|
|
34682
|
+
position: relative;
|
|
34772
34683
|
box-sizing: border-box;
|
|
34773
34684
|
outline: none;
|
|
34774
34685
|
white-space: pre-wrap;
|
|
@@ -35370,6 +35281,15 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
35370
35281
|
}
|
|
35371
35282
|
}
|
|
35372
35283
|
|
|
35284
|
+
// Resizable images
|
|
35285
|
+
.k-editor-resize-handle {
|
|
35286
|
+
background-color: $editor-resize-handle-bg;
|
|
35287
|
+
border-color: $editor-resize-handle-border;
|
|
35288
|
+
}
|
|
35289
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
35290
|
+
outline-color: $editor-selectednode-outline-color;
|
|
35291
|
+
}
|
|
35292
|
+
|
|
35373
35293
|
|
|
35374
35294
|
// Insert table
|
|
35375
35295
|
.k-ct-popup {
|
|
@@ -38768,12 +38688,12 @@ $chat-bubble-border-radius-sm: 2px !default;
|
|
|
38768
38688
|
$chat-avatar-size: 32px !default;
|
|
38769
38689
|
$chat-avatar-spacing: $chat-item-spacing-x !default;
|
|
38770
38690
|
|
|
38771
|
-
$chat-message-box-padding-x: $
|
|
38772
|
-
$chat-message-box-padding-y:
|
|
38691
|
+
$chat-message-box-padding-x: $input-padding-x !default;
|
|
38692
|
+
$chat-message-box-padding-y: $input-padding-y !default;
|
|
38773
38693
|
|
|
38774
|
-
$chat-toolbar-padding-x: $
|
|
38775
|
-
$chat-toolbar-padding-y:
|
|
38776
|
-
$chat-toolbar-spacing:
|
|
38694
|
+
$chat-toolbar-padding-x: $toolbar-padding-x !default;
|
|
38695
|
+
$chat-toolbar-padding-y: $toolbar-padding-y !default;
|
|
38696
|
+
$chat-toolbar-spacing: $toolbar-spacing !default;
|
|
38777
38697
|
$chat-toolbar-bg: $toolbar-bg !default;
|
|
38778
38698
|
$chat-toolbar-text: $toolbar-text !default;
|
|
38779
38699
|
$chat-toolbar-border: inherit !default;
|
|
@@ -39092,14 +39012,24 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39092
39012
|
|
|
39093
39013
|
// Message box
|
|
39094
39014
|
.k-message-box {
|
|
39015
|
+
width: 100%;
|
|
39016
|
+
height: auto;
|
|
39095
39017
|
padding: $chat-message-box-padding-y $chat-message-box-padding-x;
|
|
39018
|
+
box-sizing: border-box;
|
|
39096
39019
|
border-width: 1px 0 0;
|
|
39097
39020
|
border-style: solid;
|
|
39098
|
-
flex:
|
|
39021
|
+
flex: none;
|
|
39099
39022
|
display: flex;
|
|
39100
39023
|
flex-flow: row nowrap;
|
|
39101
39024
|
align-items: center;
|
|
39102
39025
|
|
|
39026
|
+
&:focus,
|
|
39027
|
+
&.k-state-focus,
|
|
39028
|
+
&:focus-within {
|
|
39029
|
+
outline: 0;
|
|
39030
|
+
box-shadow: none;
|
|
39031
|
+
}
|
|
39032
|
+
|
|
39103
39033
|
// Input
|
|
39104
39034
|
.k-input {
|
|
39105
39035
|
padding: 0;
|
|
@@ -39237,11 +39167,17 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39237
39167
|
|
|
39238
39168
|
.k-chat-toolbar,
|
|
39239
39169
|
.k-chat .k-toolbar-box {
|
|
39170
|
+
padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
|
|
39240
39171
|
width: 100%;
|
|
39172
|
+
border-width: 1px 0 0;
|
|
39241
39173
|
box-sizing: border-box;
|
|
39174
|
+
flex: none;
|
|
39242
39175
|
overflow: hidden;
|
|
39243
39176
|
position: relative;
|
|
39244
|
-
|
|
39177
|
+
|
|
39178
|
+
&::before {
|
|
39179
|
+
display: none;
|
|
39180
|
+
}
|
|
39245
39181
|
|
|
39246
39182
|
.k-button-list {
|
|
39247
39183
|
// Needed for native scrolling. Will uncoment when it's implemented.
|
|
@@ -39252,18 +39188,13 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39252
39188
|
overflow: hidden;
|
|
39253
39189
|
// overflow-x: auto;
|
|
39254
39190
|
scroll-behavior: smooth;
|
|
39255
|
-
|
|
39256
|
-
|
|
39257
|
-
// fix for flex container disregarding the right padding
|
|
39258
|
-
&::after {
|
|
39259
|
-
content: "";
|
|
39260
|
-
padding-right: $chat-toolbar-padding-x;
|
|
39261
|
-
}
|
|
39191
|
+
}
|
|
39262
39192
|
|
|
39263
|
-
|
|
39264
|
-
|
|
39265
|
-
|
|
39266
|
-
|
|
39193
|
+
.k-button {
|
|
39194
|
+
border-color: transparent;
|
|
39195
|
+
color: inherit;
|
|
39196
|
+
background: none;
|
|
39197
|
+
flex: none;
|
|
39267
39198
|
}
|
|
39268
39199
|
|
|
39269
39200
|
|
|
@@ -39280,13 +39211,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39280
39211
|
right: 0;
|
|
39281
39212
|
}
|
|
39282
39213
|
|
|
39283
|
-
.k-button {
|
|
39284
|
-
border-width: 0;
|
|
39285
|
-
color: inherit;
|
|
39286
|
-
background: none;
|
|
39287
|
-
flex-shrink: 0;
|
|
39288
|
-
}
|
|
39289
|
-
|
|
39290
39214
|
|
|
39291
39215
|
}
|
|
39292
39216
|
|