@progress/kendo-theme-material 4.42.0-dev.0 → 4.42.1-dev.2

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.
Files changed (35) hide show
  1. package/dist/all.css +480 -253
  2. package/dist/all.scss +184 -262
  3. package/modules/@progress/kendo-theme-default/package.json +2 -2
  4. package/modules/@progress/kendo-theme-default/scss/action-buttons/_layout.scss +1 -0
  5. package/modules/@progress/kendo-theme-default/scss/autocomplete/_layout.scss +0 -20
  6. package/modules/@progress/kendo-theme-default/scss/card/_layout.scss +4 -68
  7. package/modules/@progress/kendo-theme-default/scss/card/_theme.scss +2 -1
  8. package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +24 -20
  9. package/modules/@progress/kendo-theme-default/scss/chat/_variables.scss +5 -5
  10. package/modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss +1 -1
  11. package/modules/@progress/kendo-theme-default/scss/chip/_layout.scss +2 -0
  12. package/modules/@progress/kendo-theme-default/scss/chip/_theme.scss +1 -0
  13. package/modules/@progress/kendo-theme-default/scss/combobox/_layout.scss +0 -22
  14. package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +0 -45
  15. package/modules/@progress/kendo-theme-default/scss/dropdownlist/_layout.scss +0 -12
  16. package/modules/@progress/kendo-theme-default/scss/editor/_layout.scss +84 -0
  17. package/modules/@progress/kendo-theme-default/scss/editor/_theme.scss +9 -0
  18. package/modules/@progress/kendo-theme-default/scss/editor/_variables.scss +8 -0
  19. package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +2 -1
  20. package/modules/@progress/kendo-theme-default/scss/input/_layout.scss +3 -16
  21. package/modules/@progress/kendo-theme-default/scss/menu/_layout.scss +0 -1
  22. package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +0 -19
  23. package/modules/@progress/kendo-theme-default/scss/numerictextbox/_layout.scss +0 -11
  24. package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +21 -0
  25. package/modules/@progress/kendo-theme-default/scss/popup/_layout.scss +0 -4
  26. package/modules/@progress/kendo-theme-default/scss/searchbox/_layout.scss +1 -0
  27. package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +0 -4
  28. package/modules/@progress/kendo-theme-default/scss/utils/_border.scss +5 -0
  29. package/modules/@progress/kendo-theme-default/scss/window/_layout.scss +1 -0
  30. package/package.json +3 -3
  31. package/scss/chat/_variables.scss +5 -5
  32. package/scss/editor/_theme.scss +9 -0
  33. package/scss/editor/_variables.scss +8 -0
  34. package/scss/spreadsheet/_layout.scss +0 -12
  35. package/scss/utils/_border.scss +10 -0
package/dist/all.scss CHANGED
@@ -3888,6 +3888,16 @@ $display4-letter-spacing: null !default;
3888
3888
 
3889
3889
  // Component
3890
3890
  // #region @import "_border.scss"; -> packages/material/scss/utils/_border.scss
3891
+ $utils-border-radius: (
3892
+ default: map-get( $spacing, 1 ),
3893
+ 0: 0,
3894
+ sm: .125rem,
3895
+ md: .25rem,
3896
+ lg: .375rem,
3897
+ circle: 50%,
3898
+ pill: 9999px
3899
+ ) !default;
3900
+
3891
3901
  // #region @import "~@progress/kendo-theme-default/scss/utils/_border.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/utils/_border.scss
3892
3902
  @include exports( "utils/border" ) {
3893
3903
 
@@ -3984,6 +3994,11 @@ $display4-letter-spacing: null !default;
3984
3994
  $_selector-suffix: if( $radius == default, "", "-#{$radius}" );
3985
3995
 
3986
3996
  .k-#{$_selector-base}#{$_selector-suffix} {
3997
+ @each $prop in $props {
3998
+ #{$prop}: $value;
3999
+ }
4000
+ }
4001
+ .\!k-#{$_selector-base}#{$_selector-suffix} {
3987
4002
  @each $prop in $props {
3988
4003
  #{$prop}: $value !important;
3989
4004
  }
@@ -7855,6 +7870,7 @@ $chip-error-focus-shadow: null !default;
7855
7870
  font-size: $chip-selected-icon-font-size;
7856
7871
  }
7857
7872
 
7873
+ .k-chip.k-state-selected .k-selected-icon-wrapper,
7858
7874
  .k-chip.k-selected .k-selected-icon-wrapper {
7859
7875
  width: $chip-selected-icon-size;
7860
7876
  visibility: visible;
@@ -7874,6 +7890,7 @@ $chip-error-focus-shadow: null !default;
7874
7890
  transition: width .2s, opacity .2s;
7875
7891
  }
7876
7892
 
7893
+ &.k-state-selected .k-selected-icon-wrapper,
7877
7894
  &.k-selected .k-selected-icon-wrapper {
7878
7895
  opacity: 1;
7879
7896
  }
@@ -7997,6 +8014,7 @@ $chip-error-focus-shadow: null !default;
7997
8014
  // #region @import "~@progress/kendo-theme-default/scss/chip/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
7998
8015
  @include exports("chip/theme") {
7999
8016
 
8017
+ .k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
8000
8018
  .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
8001
8019
  @include fill(
8002
8020
  $color: $chip-multiple-selected-icon-text,
@@ -9935,7 +9953,9 @@ $input-separator-opacity: .5 !default;
9935
9953
  }
9936
9954
 
9937
9955
  // Input with icon styles
9938
- .k-input-icon {
9956
+ .k-input-icon,
9957
+ .k-input-validation-icon,
9958
+ .k-input-loading-icon {
9939
9959
  width: $input-icon-width;
9940
9960
  height: $input-icon-height;
9941
9961
  display: inline-flex;
@@ -9943,21 +9963,6 @@ $input-separator-opacity: .5 !default;
9943
9963
  align-items: center;
9944
9964
  justify-content: center;
9945
9965
  flex-shrink: 0;
9946
-
9947
- .k-ie9 & {
9948
- position: absolute;
9949
- height: 100%;
9950
- right: 0;
9951
- top: 0;
9952
- }
9953
-
9954
- .k-rtl &,
9955
- [dir="rtl"] & {
9956
- .k-ie9 & {
9957
- left: 0;
9958
- right: auto;
9959
- }
9960
- }
9961
9966
  }
9962
9967
 
9963
9968
 
@@ -10477,10 +10482,6 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
10477
10482
  border-width: 1px;
10478
10483
  }
10479
10484
  }
10480
-
10481
- .k-separator {
10482
- height: 0;
10483
- }
10484
10485
  }
10485
10486
 
10486
10487
  .k-virtual-content {
@@ -11403,7 +11404,7 @@ $window-sizes: (
11403
11404
  .k-maskedtextbox,
11404
11405
  .k-textbox-container,
11405
11406
  .k-floating-label-container {
11406
- display: flex;
11407
+ display: inline-flex;
11407
11408
  width: 100%;
11408
11409
  }
11409
11410
 
@@ -11464,6 +11465,7 @@ $window-sizes: (
11464
11465
  margin-right: $horizontal-form-label-margin-x;
11465
11466
  padding-top: $horizontal-form-label-padding-top;
11466
11467
  width: $horizontal-form-label-width;
11468
+ text-align: end;
11467
11469
  flex-direction: column;
11468
11470
  align-items: $horizontal-form-label-align;
11469
11471
  justify-content: flex-start;
@@ -12491,7 +12493,7 @@ $checkbox-ripple-opacity: .38 !default;
12491
12493
 
12492
12494
 
12493
12495
  // Hover state
12494
- .k-checkbox:hover
12496
+ .k-checkbox:hover,
12495
12497
  .k-checkbox.k-state-hover {
12496
12498
  @include fill(
12497
12499
  $checkbox-hovered-text,
@@ -14964,6 +14966,7 @@ $message-box-link-text-decoration: underline !default;
14964
14966
 
14965
14967
  // Actions orientation
14966
14968
  .k-actions-horizontal {
14969
+ width: 100%;
14967
14970
  flex-flow: row nowrap;
14968
14971
  }
14969
14972
  .k-actions-vertical {
@@ -17526,26 +17529,6 @@ $autocomplete-invalid-shadow: $invalid-shadow !default;
17526
17529
  height: $input-icon-height;
17527
17530
  }
17528
17531
 
17529
-
17530
- // Clear value
17531
- .k-clear-value {
17532
- visibility: hidden;
17533
- }
17534
- &:hover,
17535
- // &:focus-within,
17536
- &.k-state-hover,
17537
- &.k-state-focused,
17538
- &.k-state-focus {
17539
- .k-clear-value {
17540
- visibility: visible;
17541
- }
17542
- }
17543
- &:focus-within {
17544
- .k-clear-value {
17545
- visibility: visible;
17546
- }
17547
- }
17548
-
17549
17532
  }
17550
17533
 
17551
17534
 
@@ -18055,23 +18038,12 @@ $numeric-button-pressed-gradient: null !default;
18055
18038
  top: -$spinner-icon-offset;
18056
18039
  }
18057
18040
 
18058
- .k-i-warning {
18059
- align-self: center;
18060
- margin-right: $spacer-x / 2;
18061
- }
18062
-
18063
18041
 
18064
18042
  // RTL
18065
18043
  .k-rtl &,
18066
18044
  &[dir="rtl"] {
18067
18045
  text-align: right;
18068
18046
 
18069
- .k-numeric-wrap .k-i-warning {
18070
- align-self: center;
18071
- margin-right: 0;
18072
- margin-left: $spacer-x / 2;
18073
- }
18074
-
18075
18047
  .k-select {
18076
18048
  @include border-left-radius-only( $input-border-radius );
18077
18049
  border-width: 0 $picker-select-border-width 0 0;
@@ -19169,28 +19141,6 @@ $combobox-select-pressed-gradient: null !default;
19169
19141
  // Input
19170
19142
  .k-input {}
19171
19143
 
19172
-
19173
- // Clear value
19174
- .k-clear-value {
19175
- visibility: hidden;
19176
- }
19177
- &:hover,
19178
- // &:focus-within,
19179
- &.k-state-hover,
19180
- &.k-state-focused,
19181
- &.k-state-focus,
19182
- .k-dropdown-wrap.k-state-hover,
19183
- .k-dropdown-wrap.k-state-focused {
19184
- .k-clear-value {
19185
- visibility: visible;
19186
- }
19187
- }
19188
- &:focus-within {
19189
- .k-clear-value {
19190
- visibility: visible;
19191
- }
19192
- }
19193
-
19194
19144
  // Select
19195
19145
  .k-select {
19196
19146
  @include border-right-radius-only( $input-border-radius );
@@ -20478,26 +20428,11 @@ $datetime-select-pressed-gradient: null !default;
20478
20428
  }
20479
20429
 
20480
20430
 
20481
- // Validation icon
20482
- .k-i-warning {
20483
- position: absolute;
20484
- right: $padding-x;
20485
- top: 50%;
20486
- transform: translateY(-50%);
20487
- overflow: visible;
20488
- }
20489
-
20490
-
20491
20431
  // RTL
20492
20432
  .k-rtl &,
20493
20433
  &[dir="rtl"] {
20494
20434
  text-align: right;
20495
20435
 
20496
- .k-dateinput-wrap .k-i-warning {
20497
- left: $padding-x;
20498
- right: auto;
20499
- }
20500
-
20501
20436
  .k-select {
20502
20437
  @include border-left-radius-only( $input-border-radius );
20503
20438
  border-width: 0 $picker-select-border-width 0 0;
@@ -20585,16 +20520,6 @@ $datetime-select-pressed-gradient: null !default;
20585
20520
  }
20586
20521
 
20587
20522
 
20588
- // Validation icon
20589
- .k-i-warning {
20590
- position: absolute;
20591
- top: 50%;
20592
- right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
20593
- transform: translateY(-50%);
20594
- overflow: visible;
20595
- }
20596
-
20597
-
20598
20523
  // RTL
20599
20524
  .k-rtl &,
20600
20525
  &[dir="rtl"] {
@@ -20604,11 +20529,6 @@ $datetime-select-pressed-gradient: null !default;
20604
20529
  @include border-left-radius-only( $input-border-radius );
20605
20530
  border-width: 0 $picker-select-border-width 0 0;
20606
20531
  }
20607
-
20608
- .k-i-warning {
20609
- right: auto;
20610
- left: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
20611
- }
20612
20532
  }
20613
20533
  }
20614
20534
 
@@ -20680,16 +20600,6 @@ $datetime-select-pressed-gradient: null !default;
20680
20600
  }
20681
20601
 
20682
20602
 
20683
- // Validation icon
20684
- .k-i-warning {
20685
- position: absolute;
20686
- top: 50%;
20687
- right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
20688
- transform: translateY(-50%);
20689
- overflow: visible;
20690
- }
20691
-
20692
-
20693
20603
  // RTL
20694
20604
  .k-rtl &,
20695
20605
  &[dir="rtl"] {
@@ -20699,11 +20609,6 @@ $datetime-select-pressed-gradient: null !default;
20699
20609
  @include border-left-radius-only( $input-border-radius );
20700
20610
  border-width: 0 $picker-select-border-width 0 0;
20701
20611
  }
20702
-
20703
- .k-i-warning {
20704
- right: auto;
20705
- left: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
20706
- }
20707
20612
  }
20708
20613
  }
20709
20614
 
@@ -22085,18 +21990,6 @@ $dropdownlist-select-focused-text: $input-text !default;
22085
21990
  text-align: center;
22086
21991
  cursor: pointer;
22087
21992
  }
22088
-
22089
- // Clear value
22090
- .k-clear-value {
22091
- visibility: hidden;
22092
- }
22093
- &.k-state-focused,
22094
- &.k-state-hover,
22095
- &:hover {
22096
- .k-clear-value {
22097
- visibility: visible;
22098
- }
22099
- }
22100
21993
  }
22101
21994
 
22102
21995
  }
@@ -22519,18 +22412,10 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
22519
22412
 
22520
22413
  // Clear value
22521
22414
  .k-clear-value {
22522
- visibility: hidden;
22523
22415
  position: absolute;
22524
22416
  top: 0;
22525
22417
  right: 0;
22526
22418
  }
22527
- &:hover,
22528
- &.k-state-hover,
22529
- &.k-state-focused {
22530
- .k-clear-value {
22531
- visibility: visible;
22532
- }
22533
- }
22534
22419
 
22535
22420
  // Select
22536
22421
  > .k-select {
@@ -22552,17 +22437,6 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
22552
22437
  right: $multiselect-clear-right;
22553
22438
  }
22554
22439
 
22555
-
22556
- &.k-state-hover,
22557
- &.k-state-focused,
22558
- &.k-state-focus {
22559
- > .k-multiselect-wrap {
22560
- .k-clear-value {
22561
- visibility: visible;
22562
- }
22563
- }
22564
- }
22565
-
22566
22440
  &[dir="rtl"],
22567
22441
  .k-rtl & {
22568
22442
  text-align: right;
@@ -23402,6 +23276,7 @@ $searchbox-focus-border: $input-focused-border !default;
23402
23276
  @include border-radius( $searchbox-border-radius );
23403
23277
  border-width: 1px;
23404
23278
  border-style: solid;
23279
+ box-sizing: border-box;
23405
23280
  font-family: $searchbox-font-family;
23406
23281
  font-size: $searchbox-font-size;
23407
23282
  line-height: $searchbox-line-height;
@@ -25075,7 +24950,6 @@ $appbar-bottom-box-shadow: 0px -2px 3px rgba(0, 0, 0, .24) !default;
25075
24950
  height: auto;
25076
24951
  border-width: 0 0 0 1px;
25077
24952
  border-style: solid;
25078
- flex-shrink: 0;
25079
24953
  }
25080
24954
  }
25081
24955
 
@@ -25689,6 +25563,7 @@ $appbar-bottom-box-shadow: 0px -2px 3px rgba(0, 0, 0, .24) !default;
25689
25563
  }
25690
25564
 
25691
25565
  // Buttons Layout
25566
+ .k-window-buttons,
25692
25567
  .k-window-buttongroup {
25693
25568
  @include border-bottom-radius( $window-border-radius );
25694
25569
  padding: $window-buttongroup-padding-y $window-buttongroup-padding-x;
@@ -27255,13 +27130,6 @@ $card-focus-callout-box-shadow-w: null !default;
27255
27130
  flex-shrink: 0;
27256
27131
  flex-basis: auto;
27257
27132
  gap: $card-actions-gap;
27258
-
27259
- > .k-button {
27260
- padding-left: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
27261
- padding-right: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
27262
- max-width: 100%;
27263
- white-space: normal;
27264
- }
27265
27133
  }
27266
27134
 
27267
27135
 
@@ -27276,40 +27144,9 @@ $card-focus-callout-box-shadow-w: null !default;
27276
27144
  .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
27277
27145
 
27278
27146
 
27279
- // Streched actions
27280
- .k-card-actions-stretched {
27281
- padding: 0;
27282
- gap: 0;
27283
-
27284
- > .k-button,
27285
- > .k-card-action {
27286
- flex: 1 1 auto;
27287
- }
27288
-
27289
- // TODO: refactor once we have button size
27290
- .k-button {
27291
- @include border-radius( 0 );
27292
- padding-top: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
27293
- padding-bottom: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
27294
- }
27295
-
27296
- .k-card & {
27297
- border-top-width: $card-actions-border-width;
27298
- }
27299
- .k-card-horizontal > & {
27300
- border-top-width: 0;
27301
- border-inline-start-width: $card-actions-border-width;
27302
- }
27303
- .k-card-vertical > & {
27304
- border-top-width: $card-actions-border-width;
27305
- }
27306
-
27307
- &.k-card-actions-horizontal > .k-card-action + .k-card-action {
27308
- border-inline-start-width: $card-actions-border-width;
27309
- }
27310
- &.k-card-actions-vertical > .k-card-action + .k-card-action {
27311
- border-top-width: $card-actions-border-width;
27312
- }
27147
+ // Stretched actions
27148
+ .k-card-actions-stretched > * {
27149
+ flex: 1 1 auto;
27313
27150
  }
27314
27151
 
27315
27152
 
@@ -27435,6 +27272,7 @@ $card-focus-callout-box-shadow-w: null !default;
27435
27272
  height: $card-callout-height;
27436
27273
  border-width: $card-border-width $card-border-width 0 0;
27437
27274
  border-style: solid;
27275
+ box-sizing: border-box;
27438
27276
  position: absolute;
27439
27277
  }
27440
27278
 
@@ -27483,33 +27321,6 @@ $card-focus-callout-box-shadow-w: null !default;
27483
27321
 
27484
27322
 
27485
27323
 
27486
- @include exports("card/layout/rtl") {
27487
-
27488
- .k-rtl,
27489
- [dir="rtl"] {
27490
-
27491
- .k-card-actions-stretched {
27492
- .k-card-action + .k-card-action {
27493
- border-right-width: $card-actions-border-width;
27494
- border-left-width: 0;
27495
- }
27496
- }
27497
-
27498
- .k-card-horizontal {
27499
- > .k-card-actions-stretched,
27500
- .k-card-actions-vertical {
27501
- border-right-width: $card-actions-border-width;
27502
- border-left-width: 0;
27503
- }
27504
- }
27505
-
27506
- }
27507
-
27508
- }
27509
-
27510
-
27511
-
27512
-
27513
27324
  @include exports("card/layout/ie11") {
27514
27325
 
27515
27326
  .k-ie11 {
@@ -27571,7 +27382,8 @@ $card-focus-callout-box-shadow-w: null !default;
27571
27382
 
27572
27383
 
27573
27384
  // Separator
27574
- .k-card-separator {
27385
+ .k-card-separator,
27386
+ .k-card .k-separator {
27575
27387
  border-color: $card-border;
27576
27388
  }
27577
27389
 
@@ -35110,10 +34922,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35110
34922
  .k-spreadsheet-popup {
35111
34923
  padding: 0;
35112
34924
 
35113
- .k-separator {
35114
- display: block;
35115
- }
35116
-
35117
34925
  .k-button {
35118
34926
  @include border-radius( 0 );
35119
34927
  border-width: 0;
@@ -35440,18 +35248,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35440
35248
 
35441
35249
  }
35442
35250
 
35443
-
35444
-
35445
-
35446
- @include exports( "spreadsheet/popup/layout/material" ) {
35447
-
35448
- .k-spreadsheet-popup {
35449
- .k-separator {
35450
- margin: 0;
35451
- }
35452
- }
35453
- }
35454
-
35455
35251
  // #endregion
35456
35252
  // #region @import "_theme.scss"; -> packages/material/scss/spreadsheet/_theme.scss
35457
35253
  @include exports("sreadsheet/theme/material") {
@@ -36360,6 +36156,27 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36360
36156
  }
36361
36157
 
36362
36158
 
36159
+ @include exports( "pivotgrid/layout/export" ) {
36160
+
36161
+ .k-pdf-export-shadow {
36162
+
36163
+ .k-pivotgrid {
36164
+ height: auto !important; // sass-lint:disable-line no-important
36165
+ }
36166
+
36167
+ .k-pivotgrid-values {
36168
+ height: auto;
36169
+ overflow: visible;
36170
+ }
36171
+
36172
+ .k-pivotgrid-column-headers .k-pivotgrid-table {
36173
+ padding-inline-end: 0;
36174
+ }
36175
+
36176
+ }
36177
+ }
36178
+
36179
+
36363
36180
  @include exports("pivotgrid/layout/legacy") {
36364
36181
 
36365
36182
  .k-pivot {
@@ -38570,6 +38387,14 @@ $editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
38570
38387
 
38571
38388
  $editor-export-tool-icon-margin-x: .5em !default;
38572
38389
 
38390
+ $editor-resize-handle-size: 5px !default;
38391
+ $editor-resize-handle-border-width: 1px !default;
38392
+ $editor-resize-handle-border: #000000 !default;
38393
+ $editor-resize-handle-bg: #ffffff !default;
38394
+
38395
+ $editor-selectednode-outline-width: 2px !default;
38396
+ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex-length
38397
+
38573
38398
  // #endregion
38574
38399
  // #region @import "_layout.scss"; -> packages/material/scss/editor/_layout.scss
38575
38400
  // #region @import "~@progress/kendo-theme-default/scss/editor/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/editor/_layout.scss
@@ -38643,6 +38468,89 @@ $editor-export-tool-icon-margin-x: .5em !default;
38643
38468
  overflow: auto;
38644
38469
  }
38645
38470
 
38471
+ // Resizable images
38472
+ .k-editor-resize-handles-wrapper {
38473
+ position: absolute;
38474
+ visibility: hidden;
38475
+ }
38476
+ .k-editor-resize-handle {
38477
+ width: $editor-resize-handle-size;
38478
+ height: $editor-resize-handle-size;
38479
+ border-width: $editor-resize-handle-border-width;
38480
+ border-style: solid;
38481
+ position: absolute;
38482
+ visibility: visible;
38483
+ z-index: 100;
38484
+
38485
+ &.northwest {
38486
+ top: 0;
38487
+ left: 0;
38488
+ transform: translate(-50%, -50%);
38489
+ cursor: nw-resize;
38490
+ }
38491
+
38492
+ &.north {
38493
+ top: 0;
38494
+ left: 50%;
38495
+ transform: translate(-50%, -50%);
38496
+ cursor: n-resize;
38497
+ }
38498
+
38499
+ &.northeast {
38500
+ top: 0;
38501
+ right: 0;
38502
+ transform: translate(50%, -50%);
38503
+ cursor: ne-resize;
38504
+ }
38505
+
38506
+ &.southwest {
38507
+ left: 0;
38508
+ bottom: 0;
38509
+ transform: translate(-50%, 50%);
38510
+ cursor: sw-resize;
38511
+ }
38512
+
38513
+ &.south {
38514
+ bottom: 0;
38515
+ left: 50%;
38516
+ transform: translate(-50%, 50%);
38517
+ cursor: s-resize;
38518
+ }
38519
+
38520
+ &.southeast {
38521
+ right: 0;
38522
+ bottom: 0;
38523
+ transform: translate(50%, 50%);
38524
+ cursor: se-resize;
38525
+ }
38526
+
38527
+ &.west {
38528
+ top: 50%;
38529
+ left: 0;
38530
+ transform: translate(-50%, -50%);
38531
+ cursor: w-resize;
38532
+ }
38533
+
38534
+ &.east {
38535
+ top: 50%;
38536
+ right: 0;
38537
+ transform: translate(50%, -50%);
38538
+ cursor: e-resize;
38539
+ }
38540
+ }
38541
+ .ProseMirror-selectednode { // sass-lint:disable-line class-name-format
38542
+ outline-width: $editor-selectednode-outline-width;
38543
+ outline-style: solid;
38544
+ }
38545
+ .ProseMirror-hideselection { // sass-lint:disable-line class-name-format
38546
+ caret-color: transparent;
38547
+
38548
+ *::selection,
38549
+ *::-moz-selection {
38550
+ background: transparent;
38551
+ }
38552
+ }
38553
+
38646
38554
  // Toolbar
38647
38555
  .k-editor > .k-toolbar {
38648
38556
  border-width: 0 0 $toolbar-border-width 0;
@@ -38716,6 +38624,7 @@ $editor-export-tool-icon-margin-x: .5em !default;
38716
38624
  padding: $padding-x;
38717
38625
  width: 100%;
38718
38626
  height: 100%;
38627
+ position: relative;
38719
38628
  box-sizing: border-box;
38720
38629
  outline: none;
38721
38630
  white-space: pre-wrap;
@@ -39382,6 +39291,15 @@ $editor-export-tool-icon-margin-x: .5em !default;
39382
39291
  }
39383
39292
  }
39384
39293
 
39294
+ // Resizable images
39295
+ .k-editor-resize-handle {
39296
+ background-color: $editor-resize-handle-bg;
39297
+ border-color: $editor-resize-handle-border;
39298
+ }
39299
+ .ProseMirror-selectednode { // sass-lint:disable-line class-name-format
39300
+ outline-color: $editor-selectednode-outline-color;
39301
+ }
39302
+
39385
39303
 
39386
39304
  // Insert table
39387
39305
  .k-ct-popup {
@@ -43129,12 +43047,12 @@ $chat-bubble-border-radius-sm: 2px !default;
43129
43047
  $chat-avatar-size: 32px !default;
43130
43048
  $chat-avatar-spacing: $chat-item-spacing-x !default;
43131
43049
 
43132
- $chat-message-box-padding-x: $chat-padding-x !default;
43133
- $chat-message-box-padding-y: 10px !default;
43050
+ $chat-message-box-padding-x: $input-padding-x !default;
43051
+ $chat-message-box-padding-y: $input-padding-y !default;
43134
43052
 
43135
- $chat-toolbar-padding-x: $chat-padding-x !default;
43136
- $chat-toolbar-padding-y: 10px !default;
43137
- $chat-toolbar-spacing: 20px !default;
43053
+ $chat-toolbar-padding-x: $toolbar-padding-x !default;
43054
+ $chat-toolbar-padding-y: $toolbar-padding-y !default;
43055
+ $chat-toolbar-spacing: $toolbar-spacing !default;
43138
43056
  $chat-toolbar-bg: try-shade( $button-bg, .5 ) !default;
43139
43057
  $chat-toolbar-text: $toolbar-text !default;
43140
43058
  $chat-toolbar-border: inherit !default;
@@ -43454,14 +43372,24 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
43454
43372
 
43455
43373
  // Message box
43456
43374
  .k-message-box {
43375
+ width: 100%;
43376
+ height: auto;
43457
43377
  padding: $chat-message-box-padding-y $chat-message-box-padding-x;
43378
+ box-sizing: border-box;
43458
43379
  border-width: 1px 0 0;
43459
43380
  border-style: solid;
43460
- flex: 0 0 auto;
43381
+ flex: none;
43461
43382
  display: flex;
43462
43383
  flex-flow: row nowrap;
43463
43384
  align-items: center;
43464
43385
 
43386
+ &:focus,
43387
+ &.k-state-focus,
43388
+ &:focus-within {
43389
+ outline: 0;
43390
+ box-shadow: none;
43391
+ }
43392
+
43465
43393
  // Input
43466
43394
  .k-input {
43467
43395
  padding: 0;
@@ -43599,11 +43527,17 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
43599
43527
 
43600
43528
  .k-chat-toolbar,
43601
43529
  .k-chat .k-toolbar-box {
43530
+ padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
43602
43531
  width: 100%;
43532
+ border-width: 1px 0 0;
43603
43533
  box-sizing: border-box;
43534
+ flex: none;
43604
43535
  overflow: hidden;
43605
43536
  position: relative;
43606
- flex: 0 0 auto;
43537
+
43538
+ &::before {
43539
+ display: none;
43540
+ }
43607
43541
 
43608
43542
  .k-button-list {
43609
43543
  // Needed for native scrolling. Will uncoment when it's implemented.
@@ -43614,18 +43548,13 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
43614
43548
  overflow: hidden;
43615
43549
  // overflow-x: auto;
43616
43550
  scroll-behavior: smooth;
43617
- padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
43618
-
43619
- // fix for flex container disregarding the right padding
43620
- &::after {
43621
- content: "";
43622
- padding-right: $chat-toolbar-padding-x;
43623
- }
43551
+ }
43624
43552
 
43625
- .k-button + .k-button {
43626
- margin-left: $chat-toolbar-spacing;
43627
- flex-shrink: 0;
43628
- }
43553
+ .k-button {
43554
+ border-color: transparent;
43555
+ color: inherit;
43556
+ background: none;
43557
+ flex: none;
43629
43558
  }
43630
43559
 
43631
43560
 
@@ -43642,13 +43571,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
43642
43571
  right: 0;
43643
43572
  }
43644
43573
 
43645
- .k-button {
43646
- border-width: 0;
43647
- color: inherit;
43648
- background: none;
43649
- flex-shrink: 0;
43650
- }
43651
-
43652
43574
 
43653
43575
  }
43654
43576