@progress/kendo-theme-default 4.42.1-dev.0 → 4.42.1-dev.1
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 +140 -143
- package/dist/all.scss +140 -172
- 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 +1 -0
- package/scss/chat/_layout.scss +24 -20
- package/scss/chat/_variables.scss +5 -5
- package/scss/checkbox/_theme.scss +1 -1
- 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/multiselect/_layout.scss +0 -19
- package/scss/numerictextbox/_layout.scss +0 -11
- package/scss/searchbox/_layout.scss +1 -0
- package/scss/window/_layout.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -8752,7 +8752,9 @@ $input-separator-opacity: .5 !default;
|
|
|
8752
8752
|
}
|
|
8753
8753
|
|
|
8754
8754
|
// Input with icon styles
|
|
8755
|
-
.k-input-icon
|
|
8755
|
+
.k-input-icon,
|
|
8756
|
+
.k-input-validation-icon,
|
|
8757
|
+
.k-input-loading-icon {
|
|
8756
8758
|
width: $input-icon-width;
|
|
8757
8759
|
height: $input-icon-height;
|
|
8758
8760
|
display: inline-flex;
|
|
@@ -8760,21 +8762,6 @@ $input-separator-opacity: .5 !default;
|
|
|
8760
8762
|
align-items: center;
|
|
8761
8763
|
justify-content: center;
|
|
8762
8764
|
flex-shrink: 0;
|
|
8763
|
-
|
|
8764
|
-
.k-ie9 & {
|
|
8765
|
-
position: absolute;
|
|
8766
|
-
height: 100%;
|
|
8767
|
-
right: 0;
|
|
8768
|
-
top: 0;
|
|
8769
|
-
}
|
|
8770
|
-
|
|
8771
|
-
.k-rtl &,
|
|
8772
|
-
[dir="rtl"] & {
|
|
8773
|
-
.k-ie9 & {
|
|
8774
|
-
left: 0;
|
|
8775
|
-
right: auto;
|
|
8776
|
-
}
|
|
8777
|
-
}
|
|
8778
8765
|
}
|
|
8779
8766
|
|
|
8780
8767
|
|
|
@@ -10023,7 +10010,7 @@ $window-sizes: (
|
|
|
10023
10010
|
.k-maskedtextbox,
|
|
10024
10011
|
.k-textbox-container,
|
|
10025
10012
|
.k-floating-label-container {
|
|
10026
|
-
display: flex;
|
|
10013
|
+
display: inline-flex;
|
|
10027
10014
|
width: 100%;
|
|
10028
10015
|
}
|
|
10029
10016
|
|
|
@@ -10084,6 +10071,7 @@ $window-sizes: (
|
|
|
10084
10071
|
margin-right: $horizontal-form-label-margin-x;
|
|
10085
10072
|
padding-top: $horizontal-form-label-padding-top;
|
|
10086
10073
|
width: $horizontal-form-label-width;
|
|
10074
|
+
text-align: end;
|
|
10087
10075
|
flex-direction: column;
|
|
10088
10076
|
align-items: $horizontal-form-label-align;
|
|
10089
10077
|
justify-content: flex-start;
|
|
@@ -11017,7 +11005,7 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
11017
11005
|
|
|
11018
11006
|
|
|
11019
11007
|
// Hover state
|
|
11020
|
-
.k-checkbox:hover
|
|
11008
|
+
.k-checkbox:hover,
|
|
11021
11009
|
.k-checkbox.k-state-hover {
|
|
11022
11010
|
@include fill(
|
|
11023
11011
|
$checkbox-hovered-text,
|
|
@@ -13215,6 +13203,7 @@ $message-box-link-text-decoration: underline !default;
|
|
|
13215
13203
|
|
|
13216
13204
|
// Actions orientation
|
|
13217
13205
|
.k-actions-horizontal {
|
|
13206
|
+
width: 100%;
|
|
13218
13207
|
flex-flow: row nowrap;
|
|
13219
13208
|
}
|
|
13220
13209
|
.k-actions-vertical {
|
|
@@ -15453,26 +15442,6 @@ $autocomplete-invalid-shadow: $invalid-shadow !default;
|
|
|
15453
15442
|
height: $input-icon-height;
|
|
15454
15443
|
}
|
|
15455
15444
|
|
|
15456
|
-
|
|
15457
|
-
// Clear value
|
|
15458
|
-
.k-clear-value {
|
|
15459
|
-
visibility: hidden;
|
|
15460
|
-
}
|
|
15461
|
-
&:hover,
|
|
15462
|
-
// &:focus-within,
|
|
15463
|
-
&.k-state-hover,
|
|
15464
|
-
&.k-state-focused,
|
|
15465
|
-
&.k-state-focus {
|
|
15466
|
-
.k-clear-value {
|
|
15467
|
-
visibility: visible;
|
|
15468
|
-
}
|
|
15469
|
-
}
|
|
15470
|
-
&:focus-within {
|
|
15471
|
-
.k-clear-value {
|
|
15472
|
-
visibility: visible;
|
|
15473
|
-
}
|
|
15474
|
-
}
|
|
15475
|
-
|
|
15476
15445
|
}
|
|
15477
15446
|
|
|
15478
15447
|
|
|
@@ -15948,23 +15917,12 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
15948
15917
|
top: -$spinner-icon-offset;
|
|
15949
15918
|
}
|
|
15950
15919
|
|
|
15951
|
-
.k-i-warning {
|
|
15952
|
-
align-self: center;
|
|
15953
|
-
margin-right: $spacer-x / 2;
|
|
15954
|
-
}
|
|
15955
|
-
|
|
15956
15920
|
|
|
15957
15921
|
// RTL
|
|
15958
15922
|
.k-rtl &,
|
|
15959
15923
|
&[dir="rtl"] {
|
|
15960
15924
|
text-align: right;
|
|
15961
15925
|
|
|
15962
|
-
.k-numeric-wrap .k-i-warning {
|
|
15963
|
-
align-self: center;
|
|
15964
|
-
margin-right: 0;
|
|
15965
|
-
margin-left: $spacer-x / 2;
|
|
15966
|
-
}
|
|
15967
|
-
|
|
15968
15926
|
.k-select {
|
|
15969
15927
|
@include border-left-radius-only( $input-border-radius );
|
|
15970
15928
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -16931,28 +16889,6 @@ $combobox-select-pressed-gradient: $button-active-gradient !default;
|
|
|
16931
16889
|
// Input
|
|
16932
16890
|
.k-input {}
|
|
16933
16891
|
|
|
16934
|
-
|
|
16935
|
-
// Clear value
|
|
16936
|
-
.k-clear-value {
|
|
16937
|
-
visibility: hidden;
|
|
16938
|
-
}
|
|
16939
|
-
&:hover,
|
|
16940
|
-
// &:focus-within,
|
|
16941
|
-
&.k-state-hover,
|
|
16942
|
-
&.k-state-focused,
|
|
16943
|
-
&.k-state-focus,
|
|
16944
|
-
.k-dropdown-wrap.k-state-hover,
|
|
16945
|
-
.k-dropdown-wrap.k-state-focused {
|
|
16946
|
-
.k-clear-value {
|
|
16947
|
-
visibility: visible;
|
|
16948
|
-
}
|
|
16949
|
-
}
|
|
16950
|
-
&:focus-within {
|
|
16951
|
-
.k-clear-value {
|
|
16952
|
-
visibility: visible;
|
|
16953
|
-
}
|
|
16954
|
-
}
|
|
16955
|
-
|
|
16956
16892
|
// Select
|
|
16957
16893
|
.k-select {
|
|
16958
16894
|
@include border-right-radius-only( $input-border-radius );
|
|
@@ -18164,26 +18100,11 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18164
18100
|
}
|
|
18165
18101
|
|
|
18166
18102
|
|
|
18167
|
-
// Validation icon
|
|
18168
|
-
.k-i-warning {
|
|
18169
|
-
position: absolute;
|
|
18170
|
-
right: $padding-x;
|
|
18171
|
-
top: 50%;
|
|
18172
|
-
transform: translateY(-50%);
|
|
18173
|
-
overflow: visible;
|
|
18174
|
-
}
|
|
18175
|
-
|
|
18176
|
-
|
|
18177
18103
|
// RTL
|
|
18178
18104
|
.k-rtl &,
|
|
18179
18105
|
&[dir="rtl"] {
|
|
18180
18106
|
text-align: right;
|
|
18181
18107
|
|
|
18182
|
-
.k-dateinput-wrap .k-i-warning {
|
|
18183
|
-
left: $padding-x;
|
|
18184
|
-
right: auto;
|
|
18185
|
-
}
|
|
18186
|
-
|
|
18187
18108
|
.k-select {
|
|
18188
18109
|
@include border-left-radius-only( $input-border-radius );
|
|
18189
18110
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -18271,16 +18192,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18271
18192
|
}
|
|
18272
18193
|
|
|
18273
18194
|
|
|
18274
|
-
// Validation icon
|
|
18275
|
-
.k-i-warning {
|
|
18276
|
-
position: absolute;
|
|
18277
|
-
top: 50%;
|
|
18278
|
-
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
18279
|
-
transform: translateY(-50%);
|
|
18280
|
-
overflow: visible;
|
|
18281
|
-
}
|
|
18282
|
-
|
|
18283
|
-
|
|
18284
18195
|
// RTL
|
|
18285
18196
|
.k-rtl &,
|
|
18286
18197
|
&[dir="rtl"] {
|
|
@@ -18290,11 +18201,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18290
18201
|
@include border-left-radius-only( $input-border-radius );
|
|
18291
18202
|
border-width: 0 $picker-select-border-width 0 0;
|
|
18292
18203
|
}
|
|
18293
|
-
|
|
18294
|
-
.k-i-warning {
|
|
18295
|
-
right: auto;
|
|
18296
|
-
left: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
18297
|
-
}
|
|
18298
18204
|
}
|
|
18299
18205
|
}
|
|
18300
18206
|
|
|
@@ -18366,16 +18272,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18366
18272
|
}
|
|
18367
18273
|
|
|
18368
18274
|
|
|
18369
|
-
// Validation icon
|
|
18370
|
-
.k-i-warning {
|
|
18371
|
-
position: absolute;
|
|
18372
|
-
top: 50%;
|
|
18373
|
-
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
18374
|
-
transform: translateY(-50%);
|
|
18375
|
-
overflow: visible;
|
|
18376
|
-
}
|
|
18377
|
-
|
|
18378
|
-
|
|
18379
18275
|
// RTL
|
|
18380
18276
|
.k-rtl &,
|
|
18381
18277
|
&[dir="rtl"] {
|
|
@@ -18385,11 +18281,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
18385
18281
|
@include border-left-radius-only( $input-border-radius );
|
|
18386
18282
|
border-width: 0 $picker-select-border-width 0 0;
|
|
18387
18283
|
}
|
|
18388
|
-
|
|
18389
|
-
.k-i-warning {
|
|
18390
|
-
right: auto;
|
|
18391
|
-
left: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
18392
|
-
}
|
|
18393
18284
|
}
|
|
18394
18285
|
}
|
|
18395
18286
|
|
|
@@ -19599,18 +19490,6 @@ $dropdownlist-focused-shadow: $input-focused-shadow !default;
|
|
|
19599
19490
|
text-align: center;
|
|
19600
19491
|
cursor: pointer;
|
|
19601
19492
|
}
|
|
19602
|
-
|
|
19603
|
-
// Clear value
|
|
19604
|
-
.k-clear-value {
|
|
19605
|
-
visibility: hidden;
|
|
19606
|
-
}
|
|
19607
|
-
&.k-state-focused,
|
|
19608
|
-
&.k-state-hover,
|
|
19609
|
-
&:hover {
|
|
19610
|
-
.k-clear-value {
|
|
19611
|
-
visibility: visible;
|
|
19612
|
-
}
|
|
19613
|
-
}
|
|
19614
19493
|
}
|
|
19615
19494
|
|
|
19616
19495
|
}
|
|
@@ -19964,18 +19843,10 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19964
19843
|
|
|
19965
19844
|
// Clear value
|
|
19966
19845
|
.k-clear-value {
|
|
19967
|
-
visibility: hidden;
|
|
19968
19846
|
position: absolute;
|
|
19969
19847
|
top: 0;
|
|
19970
19848
|
right: 0;
|
|
19971
19849
|
}
|
|
19972
|
-
&:hover,
|
|
19973
|
-
&.k-state-hover,
|
|
19974
|
-
&.k-state-focused {
|
|
19975
|
-
.k-clear-value {
|
|
19976
|
-
visibility: visible;
|
|
19977
|
-
}
|
|
19978
|
-
}
|
|
19979
19850
|
|
|
19980
19851
|
// Select
|
|
19981
19852
|
> .k-select {
|
|
@@ -19997,17 +19868,6 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19997
19868
|
right: $multiselect-clear-right;
|
|
19998
19869
|
}
|
|
19999
19870
|
|
|
20000
|
-
|
|
20001
|
-
&.k-state-hover,
|
|
20002
|
-
&.k-state-focused,
|
|
20003
|
-
&.k-state-focus {
|
|
20004
|
-
> .k-multiselect-wrap {
|
|
20005
|
-
.k-clear-value {
|
|
20006
|
-
visibility: visible;
|
|
20007
|
-
}
|
|
20008
|
-
}
|
|
20009
|
-
}
|
|
20010
|
-
|
|
20011
19871
|
&[dir="rtl"],
|
|
20012
19872
|
.k-rtl & {
|
|
20013
19873
|
text-align: right;
|
|
@@ -20745,6 +20605,7 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
20745
20605
|
@include border-radius( $searchbox-border-radius );
|
|
20746
20606
|
border-width: 1px;
|
|
20747
20607
|
border-style: solid;
|
|
20608
|
+
box-sizing: border-box;
|
|
20748
20609
|
font-family: $searchbox-font-family;
|
|
20749
20610
|
font-size: $searchbox-font-size;
|
|
20750
20611
|
line-height: $searchbox-line-height;
|
|
@@ -22863,6 +22724,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
22863
22724
|
}
|
|
22864
22725
|
|
|
22865
22726
|
// Buttons Layout
|
|
22727
|
+
.k-window-buttons,
|
|
22866
22728
|
.k-window-buttongroup {
|
|
22867
22729
|
@include border-bottom-radius( $window-border-radius );
|
|
22868
22730
|
padding: $window-buttongroup-padding-y $window-buttongroup-padding-x;
|
|
@@ -24455,6 +24317,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24455
24317
|
height: $card-callout-height;
|
|
24456
24318
|
border-width: $card-border-width $card-border-width 0 0;
|
|
24457
24319
|
border-style: solid;
|
|
24320
|
+
box-sizing: border-box;
|
|
24458
24321
|
position: absolute;
|
|
24459
24322
|
}
|
|
24460
24323
|
|
|
@@ -34577,6 +34440,14 @@ $editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
|
34577
34440
|
|
|
34578
34441
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
34579
34442
|
|
|
34443
|
+
$editor-resize-handle-size: 5px !default;
|
|
34444
|
+
$editor-resize-handle-border-width: 1px !default;
|
|
34445
|
+
$editor-resize-handle-border: #000000 !default;
|
|
34446
|
+
$editor-resize-handle-bg: #ffffff !default;
|
|
34447
|
+
|
|
34448
|
+
$editor-selectednode-outline-width: 2px !default;
|
|
34449
|
+
$editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex-length
|
|
34450
|
+
|
|
34580
34451
|
// #endregion
|
|
34581
34452
|
// #region @import "_layout.scss"; -> packages/default/scss/editor/_layout.scss
|
|
34582
34453
|
@include exports("editor/layout") {
|
|
@@ -34649,6 +34520,89 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
34649
34520
|
overflow: auto;
|
|
34650
34521
|
}
|
|
34651
34522
|
|
|
34523
|
+
// Resizable images
|
|
34524
|
+
.k-editor-resize-handles-wrapper {
|
|
34525
|
+
position: absolute;
|
|
34526
|
+
visibility: hidden;
|
|
34527
|
+
}
|
|
34528
|
+
.k-editor-resize-handle {
|
|
34529
|
+
width: $editor-resize-handle-size;
|
|
34530
|
+
height: $editor-resize-handle-size;
|
|
34531
|
+
border-width: $editor-resize-handle-border-width;
|
|
34532
|
+
border-style: solid;
|
|
34533
|
+
position: absolute;
|
|
34534
|
+
visibility: visible;
|
|
34535
|
+
z-index: 100;
|
|
34536
|
+
|
|
34537
|
+
&.northwest {
|
|
34538
|
+
top: 0;
|
|
34539
|
+
left: 0;
|
|
34540
|
+
transform: translate(-50%, -50%);
|
|
34541
|
+
cursor: nw-resize;
|
|
34542
|
+
}
|
|
34543
|
+
|
|
34544
|
+
&.north {
|
|
34545
|
+
top: 0;
|
|
34546
|
+
left: 50%;
|
|
34547
|
+
transform: translate(-50%, -50%);
|
|
34548
|
+
cursor: n-resize;
|
|
34549
|
+
}
|
|
34550
|
+
|
|
34551
|
+
&.northeast {
|
|
34552
|
+
top: 0;
|
|
34553
|
+
right: 0;
|
|
34554
|
+
transform: translate(50%, -50%);
|
|
34555
|
+
cursor: ne-resize;
|
|
34556
|
+
}
|
|
34557
|
+
|
|
34558
|
+
&.southwest {
|
|
34559
|
+
left: 0;
|
|
34560
|
+
bottom: 0;
|
|
34561
|
+
transform: translate(-50%, 50%);
|
|
34562
|
+
cursor: sw-resize;
|
|
34563
|
+
}
|
|
34564
|
+
|
|
34565
|
+
&.south {
|
|
34566
|
+
bottom: 0;
|
|
34567
|
+
left: 50%;
|
|
34568
|
+
transform: translate(-50%, 50%);
|
|
34569
|
+
cursor: s-resize;
|
|
34570
|
+
}
|
|
34571
|
+
|
|
34572
|
+
&.southeast {
|
|
34573
|
+
right: 0;
|
|
34574
|
+
bottom: 0;
|
|
34575
|
+
transform: translate(50%, 50%);
|
|
34576
|
+
cursor: se-resize;
|
|
34577
|
+
}
|
|
34578
|
+
|
|
34579
|
+
&.west {
|
|
34580
|
+
top: 50%;
|
|
34581
|
+
left: 0;
|
|
34582
|
+
transform: translate(-50%, -50%);
|
|
34583
|
+
cursor: w-resize;
|
|
34584
|
+
}
|
|
34585
|
+
|
|
34586
|
+
&.east {
|
|
34587
|
+
top: 50%;
|
|
34588
|
+
right: 0;
|
|
34589
|
+
transform: translate(50%, -50%);
|
|
34590
|
+
cursor: e-resize;
|
|
34591
|
+
}
|
|
34592
|
+
}
|
|
34593
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
34594
|
+
outline-width: $editor-selectednode-outline-width;
|
|
34595
|
+
outline-style: solid;
|
|
34596
|
+
}
|
|
34597
|
+
.ProseMirror-hideselection { // sass-lint:disable-line class-name-format
|
|
34598
|
+
caret-color: transparent;
|
|
34599
|
+
|
|
34600
|
+
*::selection,
|
|
34601
|
+
*::-moz-selection {
|
|
34602
|
+
background: transparent;
|
|
34603
|
+
}
|
|
34604
|
+
}
|
|
34605
|
+
|
|
34652
34606
|
// Toolbar
|
|
34653
34607
|
.k-editor > .k-toolbar {
|
|
34654
34608
|
border-width: 0 0 $toolbar-border-width 0;
|
|
@@ -34722,6 +34676,7 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
34722
34676
|
padding: $padding-x;
|
|
34723
34677
|
width: 100%;
|
|
34724
34678
|
height: 100%;
|
|
34679
|
+
position: relative;
|
|
34725
34680
|
box-sizing: border-box;
|
|
34726
34681
|
outline: none;
|
|
34727
34682
|
white-space: pre-wrap;
|
|
@@ -35323,6 +35278,15 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
35323
35278
|
}
|
|
35324
35279
|
}
|
|
35325
35280
|
|
|
35281
|
+
// Resizable images
|
|
35282
|
+
.k-editor-resize-handle {
|
|
35283
|
+
background-color: $editor-resize-handle-bg;
|
|
35284
|
+
border-color: $editor-resize-handle-border;
|
|
35285
|
+
}
|
|
35286
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
35287
|
+
outline-color: $editor-selectednode-outline-color;
|
|
35288
|
+
}
|
|
35289
|
+
|
|
35326
35290
|
|
|
35327
35291
|
// Insert table
|
|
35328
35292
|
.k-ct-popup {
|
|
@@ -38721,12 +38685,12 @@ $chat-bubble-border-radius-sm: 2px !default;
|
|
|
38721
38685
|
$chat-avatar-size: 32px !default;
|
|
38722
38686
|
$chat-avatar-spacing: $chat-item-spacing-x !default;
|
|
38723
38687
|
|
|
38724
|
-
$chat-message-box-padding-x: $
|
|
38725
|
-
$chat-message-box-padding-y:
|
|
38688
|
+
$chat-message-box-padding-x: $input-padding-x !default;
|
|
38689
|
+
$chat-message-box-padding-y: $input-padding-y !default;
|
|
38726
38690
|
|
|
38727
|
-
$chat-toolbar-padding-x: $
|
|
38728
|
-
$chat-toolbar-padding-y:
|
|
38729
|
-
$chat-toolbar-spacing:
|
|
38691
|
+
$chat-toolbar-padding-x: $toolbar-padding-x !default;
|
|
38692
|
+
$chat-toolbar-padding-y: $toolbar-padding-y !default;
|
|
38693
|
+
$chat-toolbar-spacing: $toolbar-spacing !default;
|
|
38730
38694
|
$chat-toolbar-bg: $toolbar-bg !default;
|
|
38731
38695
|
$chat-toolbar-text: $toolbar-text !default;
|
|
38732
38696
|
$chat-toolbar-border: inherit !default;
|
|
@@ -39045,14 +39009,24 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39045
39009
|
|
|
39046
39010
|
// Message box
|
|
39047
39011
|
.k-message-box {
|
|
39012
|
+
width: 100%;
|
|
39013
|
+
height: auto;
|
|
39048
39014
|
padding: $chat-message-box-padding-y $chat-message-box-padding-x;
|
|
39015
|
+
box-sizing: border-box;
|
|
39049
39016
|
border-width: 1px 0 0;
|
|
39050
39017
|
border-style: solid;
|
|
39051
|
-
flex:
|
|
39018
|
+
flex: none;
|
|
39052
39019
|
display: flex;
|
|
39053
39020
|
flex-flow: row nowrap;
|
|
39054
39021
|
align-items: center;
|
|
39055
39022
|
|
|
39023
|
+
&:focus,
|
|
39024
|
+
&.k-state-focus,
|
|
39025
|
+
&:focus-within {
|
|
39026
|
+
outline: 0;
|
|
39027
|
+
box-shadow: none;
|
|
39028
|
+
}
|
|
39029
|
+
|
|
39056
39030
|
// Input
|
|
39057
39031
|
.k-input {
|
|
39058
39032
|
padding: 0;
|
|
@@ -39190,11 +39164,17 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39190
39164
|
|
|
39191
39165
|
.k-chat-toolbar,
|
|
39192
39166
|
.k-chat .k-toolbar-box {
|
|
39167
|
+
padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
|
|
39193
39168
|
width: 100%;
|
|
39169
|
+
border-width: 1px 0 0;
|
|
39194
39170
|
box-sizing: border-box;
|
|
39171
|
+
flex: none;
|
|
39195
39172
|
overflow: hidden;
|
|
39196
39173
|
position: relative;
|
|
39197
|
-
|
|
39174
|
+
|
|
39175
|
+
&::before {
|
|
39176
|
+
display: none;
|
|
39177
|
+
}
|
|
39198
39178
|
|
|
39199
39179
|
.k-button-list {
|
|
39200
39180
|
// Needed for native scrolling. Will uncoment when it's implemented.
|
|
@@ -39205,18 +39185,13 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39205
39185
|
overflow: hidden;
|
|
39206
39186
|
// overflow-x: auto;
|
|
39207
39187
|
scroll-behavior: smooth;
|
|
39208
|
-
|
|
39209
|
-
|
|
39210
|
-
// fix for flex container disregarding the right padding
|
|
39211
|
-
&::after {
|
|
39212
|
-
content: "";
|
|
39213
|
-
padding-right: $chat-toolbar-padding-x;
|
|
39214
|
-
}
|
|
39188
|
+
}
|
|
39215
39189
|
|
|
39216
|
-
|
|
39217
|
-
|
|
39218
|
-
|
|
39219
|
-
|
|
39190
|
+
.k-button {
|
|
39191
|
+
border-color: transparent;
|
|
39192
|
+
color: inherit;
|
|
39193
|
+
background: none;
|
|
39194
|
+
flex: none;
|
|
39220
39195
|
}
|
|
39221
39196
|
|
|
39222
39197
|
|
|
@@ -39233,13 +39208,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39233
39208
|
right: 0;
|
|
39234
39209
|
}
|
|
39235
39210
|
|
|
39236
|
-
.k-button {
|
|
39237
|
-
border-width: 0;
|
|
39238
|
-
color: inherit;
|
|
39239
|
-
background: none;
|
|
39240
|
-
flex-shrink: 0;
|
|
39241
|
-
}
|
|
39242
|
-
|
|
39243
39211
|
|
|
39244
39212
|
}
|
|
39245
39213
|
|
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.42.1-dev.
|
|
4
|
+
"version": "4.42.1-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "0c0e482d04f4474619507a96d33f9e127c116cd1"
|
|
51
51
|
}
|
|
@@ -33,26 +33,6 @@
|
|
|
33
33
|
height: $input-icon-height;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
// Clear value
|
|
38
|
-
.k-clear-value {
|
|
39
|
-
visibility: hidden;
|
|
40
|
-
}
|
|
41
|
-
&:hover,
|
|
42
|
-
// &:focus-within,
|
|
43
|
-
&.k-state-hover,
|
|
44
|
-
&.k-state-focused,
|
|
45
|
-
&.k-state-focus {
|
|
46
|
-
.k-clear-value {
|
|
47
|
-
visibility: visible;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
&:focus-within {
|
|
51
|
-
.k-clear-value {
|
|
52
|
-
visibility: visible;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
36
|
}
|
|
57
37
|
|
|
58
38
|
|
package/scss/card/_layout.scss
CHANGED
package/scss/chat/_layout.scss
CHANGED
|
@@ -266,14 +266,24 @@
|
|
|
266
266
|
|
|
267
267
|
// Message box
|
|
268
268
|
.k-message-box {
|
|
269
|
+
width: 100%;
|
|
270
|
+
height: auto;
|
|
269
271
|
padding: $chat-message-box-padding-y $chat-message-box-padding-x;
|
|
272
|
+
box-sizing: border-box;
|
|
270
273
|
border-width: 1px 0 0;
|
|
271
274
|
border-style: solid;
|
|
272
|
-
flex:
|
|
275
|
+
flex: none;
|
|
273
276
|
display: flex;
|
|
274
277
|
flex-flow: row nowrap;
|
|
275
278
|
align-items: center;
|
|
276
279
|
|
|
280
|
+
&:focus,
|
|
281
|
+
&.k-state-focus,
|
|
282
|
+
&:focus-within {
|
|
283
|
+
outline: 0;
|
|
284
|
+
box-shadow: none;
|
|
285
|
+
}
|
|
286
|
+
|
|
277
287
|
// Input
|
|
278
288
|
.k-input {
|
|
279
289
|
padding: 0;
|
|
@@ -411,11 +421,17 @@
|
|
|
411
421
|
|
|
412
422
|
.k-chat-toolbar,
|
|
413
423
|
.k-chat .k-toolbar-box {
|
|
424
|
+
padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
|
|
414
425
|
width: 100%;
|
|
426
|
+
border-width: 1px 0 0;
|
|
415
427
|
box-sizing: border-box;
|
|
428
|
+
flex: none;
|
|
416
429
|
overflow: hidden;
|
|
417
430
|
position: relative;
|
|
418
|
-
|
|
431
|
+
|
|
432
|
+
&::before {
|
|
433
|
+
display: none;
|
|
434
|
+
}
|
|
419
435
|
|
|
420
436
|
.k-button-list {
|
|
421
437
|
// Needed for native scrolling. Will uncoment when it's implemented.
|
|
@@ -426,18 +442,13 @@
|
|
|
426
442
|
overflow: hidden;
|
|
427
443
|
// overflow-x: auto;
|
|
428
444
|
scroll-behavior: smooth;
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
// fix for flex container disregarding the right padding
|
|
432
|
-
&::after {
|
|
433
|
-
content: "";
|
|
434
|
-
padding-right: $chat-toolbar-padding-x;
|
|
435
|
-
}
|
|
445
|
+
}
|
|
436
446
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
447
|
+
.k-button {
|
|
448
|
+
border-color: transparent;
|
|
449
|
+
color: inherit;
|
|
450
|
+
background: none;
|
|
451
|
+
flex: none;
|
|
441
452
|
}
|
|
442
453
|
|
|
443
454
|
|
|
@@ -454,13 +465,6 @@
|
|
|
454
465
|
right: 0;
|
|
455
466
|
}
|
|
456
467
|
|
|
457
|
-
.k-button {
|
|
458
|
-
border-width: 0;
|
|
459
|
-
color: inherit;
|
|
460
|
-
background: none;
|
|
461
|
-
flex-shrink: 0;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
468
|
|
|
465
469
|
}
|
|
466
470
|
|
|
@@ -32,12 +32,12 @@ $chat-bubble-border-radius-sm: 2px !default;
|
|
|
32
32
|
$chat-avatar-size: 32px !default;
|
|
33
33
|
$chat-avatar-spacing: $chat-item-spacing-x !default;
|
|
34
34
|
|
|
35
|
-
$chat-message-box-padding-x: $
|
|
36
|
-
$chat-message-box-padding-y:
|
|
35
|
+
$chat-message-box-padding-x: $input-padding-x !default;
|
|
36
|
+
$chat-message-box-padding-y: $input-padding-y !default;
|
|
37
37
|
|
|
38
|
-
$chat-toolbar-padding-x: $
|
|
39
|
-
$chat-toolbar-padding-y:
|
|
40
|
-
$chat-toolbar-spacing:
|
|
38
|
+
$chat-toolbar-padding-x: $toolbar-padding-x !default;
|
|
39
|
+
$chat-toolbar-padding-y: $toolbar-padding-y !default;
|
|
40
|
+
$chat-toolbar-spacing: $toolbar-spacing !default;
|
|
41
41
|
$chat-toolbar-bg: $toolbar-bg !default;
|
|
42
42
|
$chat-toolbar-text: $toolbar-text !default;
|
|
43
43
|
$chat-toolbar-border: inherit !default;
|