@progress/kendo-theme-bootstrap 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.
- package/dist/all.css +481 -254
- package/dist/all.scss +229 -285
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/action-buttons/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/autocomplete/_layout.scss +0 -20
- package/modules/@progress/kendo-theme-default/scss/card/_layout.scss +4 -68
- package/modules/@progress/kendo-theme-default/scss/card/_theme.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +24 -20
- package/modules/@progress/kendo-theme-default/scss/chat/_variables.scss +5 -5
- package/modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/chip/_layout.scss +2 -0
- package/modules/@progress/kendo-theme-default/scss/chip/_theme.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/combobox/_layout.scss +0 -22
- package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +0 -45
- package/modules/@progress/kendo-theme-default/scss/dropdownlist/_layout.scss +0 -12
- package/modules/@progress/kendo-theme-default/scss/editor/_layout.scss +84 -0
- package/modules/@progress/kendo-theme-default/scss/editor/_theme.scss +9 -0
- package/modules/@progress/kendo-theme-default/scss/editor/_variables.scss +8 -0
- package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/input/_layout.scss +3 -16
- package/modules/@progress/kendo-theme-default/scss/menu/_layout.scss +0 -1
- package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +0 -19
- package/modules/@progress/kendo-theme-default/scss/numerictextbox/_layout.scss +0 -11
- package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +21 -0
- package/modules/@progress/kendo-theme-default/scss/popup/_layout.scss +0 -4
- package/modules/@progress/kendo-theme-default/scss/searchbox/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +0 -4
- package/modules/@progress/kendo-theme-default/scss/utils/_border.scss +5 -0
- package/modules/@progress/kendo-theme-default/scss/window/_layout.scss +1 -0
- package/modules/bootstrap/package.json +31 -29
- package/modules/bootstrap/scss/_functions.scss +8 -2
- package/modules/bootstrap/scss/_reboot.scss +1 -1
- package/modules/bootstrap/scss/_root.scss +2 -1
- package/modules/bootstrap/scss/_tables.scss +8 -4
- package/modules/bootstrap/scss/_variables.scss +25 -13
- package/modules/bootstrap/scss/bootstrap-grid.scss +3 -1
- package/modules/bootstrap/scss/bootstrap-reboot.scss +2 -4
- package/modules/bootstrap/scss/bootstrap-utilities.scss +1 -1
- package/modules/bootstrap/scss/bootstrap.scss +1 -1
- package/modules/bootstrap/scss/forms/_form-select.scss +2 -0
- package/modules/bootstrap/scss/mixins/_grid.scss +4 -3
- package/modules/bootstrap/scss/mixins/_visually-hidden.scss +1 -1
- package/package.json +3 -3
- package/scss/chat/_variables.scss +5 -5
- package/scss/editor/_variables.scss +8 -0
- package/scss/slider/_theme.scss +0 -13
- package/scss/switch/_layout.scss +11 -0
- package/scss/switch/_theme.scss +1 -7
- package/scss/utils/_border.scss +10 -0
package/dist/all.scss
CHANGED
|
@@ -914,11 +914,17 @@ $popover-header-padding-y: $spacer !default;
|
|
|
914
914
|
@return red($value), green($value), blue($value);
|
|
915
915
|
}
|
|
916
916
|
|
|
917
|
+
// stylelint-disable scss/dollar-variable-pattern
|
|
917
918
|
@function rgba-css-var($identifier, $target) {
|
|
918
|
-
@
|
|
919
|
+
@if $identifier == "body" and $target == "bg" {
|
|
920
|
+
@return rgba(var(--#{$variable-prefix}#{$identifier}-bg-rgb), var(--#{$variable-prefix}#{$target}-opacity));
|
|
921
|
+
} @if $identifier == "body" and $target == "text" {
|
|
922
|
+
@return rgba(var(--#{$variable-prefix}#{$identifier}-color-rgb), var(--#{$variable-prefix}#{$target}-opacity));
|
|
923
|
+
} @else {
|
|
924
|
+
@return rgba(var(--#{$variable-prefix}#{$identifier}-rgb), var(--#{$variable-prefix}#{$target}-opacity));
|
|
925
|
+
}
|
|
919
926
|
}
|
|
920
927
|
|
|
921
|
-
// stylelint-disable scss/dollar-variable-pattern
|
|
922
928
|
@function map-loop($map, $func, $args...) {
|
|
923
929
|
$_map: ();
|
|
924
930
|
|
|
@@ -1585,23 +1591,33 @@ $body-text-align: null !default;
|
|
|
1585
1591
|
//
|
|
1586
1592
|
// Extends the default `$theme-colors` maps to help create our utilities.
|
|
1587
1593
|
|
|
1594
|
+
// Come v6, we'll de-dupe these variables. Until then, for backward compatibility, we keep them to reassign.
|
|
1588
1595
|
// scss-docs-start utilities-colors
|
|
1589
|
-
$utilities-colors:
|
|
1590
|
-
|
|
1596
|
+
$utilities-colors: $theme-colors-rgb !default;
|
|
1597
|
+
// scss-docs-end utilities-colors
|
|
1598
|
+
|
|
1599
|
+
// scss-docs-start utilities-text-colors
|
|
1600
|
+
$utilities-text: map-merge(
|
|
1601
|
+
$utilities-colors,
|
|
1591
1602
|
(
|
|
1592
1603
|
"black": to-rgb($black),
|
|
1593
1604
|
"white": to-rgb($white),
|
|
1594
|
-
"body":
|
|
1605
|
+
"body": to-rgb($body-color)
|
|
1595
1606
|
)
|
|
1596
1607
|
) !default;
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
// scss-docs-start utilities-text-colors
|
|
1600
|
-
$utilities-text-colors: map-loop($utilities-colors, rgba-css-var, "$key", "text") !default;
|
|
1608
|
+
$utilities-text-colors: map-loop($utilities-text, rgba-css-var, "$key", "text") !default;
|
|
1601
1609
|
// scss-docs-end utilities-text-colors
|
|
1602
1610
|
|
|
1603
1611
|
// scss-docs-start utilities-bg-colors
|
|
1604
|
-
$utilities-bg
|
|
1612
|
+
$utilities-bg: map-merge(
|
|
1613
|
+
$utilities-colors,
|
|
1614
|
+
(
|
|
1615
|
+
"black": to-rgb($black),
|
|
1616
|
+
"white": to-rgb($white),
|
|
1617
|
+
"body": to-rgb($body-bg)
|
|
1618
|
+
)
|
|
1619
|
+
) !default;
|
|
1620
|
+
$utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg") !default;
|
|
1605
1621
|
// scss-docs-end utilities-bg-colors
|
|
1606
1622
|
|
|
1607
1623
|
// Links
|
|
@@ -2090,7 +2106,7 @@ $form-check-inline-margin-end: 1rem !default;
|
|
|
2090
2106
|
// scss-docs-end form-check-variables
|
|
2091
2107
|
|
|
2092
2108
|
// scss-docs-start form-switch-variables
|
|
2093
|
-
$form-switch-color: rgba(
|
|
2109
|
+
$form-switch-color: rgba($black, .25) !default;
|
|
2094
2110
|
$form-switch-width: 2em !default;
|
|
2095
2111
|
$form-switch-padding-start: $form-switch-width + .5em !default;
|
|
2096
2112
|
$form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color}'/></svg>") !default;
|
|
@@ -2138,7 +2154,7 @@ $form-select-feedback-icon-size: $input-height-inner-half $input-height-i
|
|
|
2138
2154
|
|
|
2139
2155
|
$form-select-border-width: $input-border-width !default;
|
|
2140
2156
|
$form-select-border-color: $input-border-color !default;
|
|
2141
|
-
$form-select-border-radius: $border-radius !default;
|
|
2157
|
+
$form-select-border-radius: $input-border-radius !default;
|
|
2142
2158
|
$form-select-box-shadow: $box-shadow-inset !default;
|
|
2143
2159
|
|
|
2144
2160
|
$form-select-focus-border-color: $input-focus-border-color !default;
|
|
@@ -2148,10 +2164,12 @@ $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focu
|
|
|
2148
2164
|
$form-select-padding-y-sm: $input-padding-y-sm !default;
|
|
2149
2165
|
$form-select-padding-x-sm: $input-padding-x-sm !default;
|
|
2150
2166
|
$form-select-font-size-sm: $input-font-size-sm !default;
|
|
2167
|
+
$form-select-border-radius-sm: $input-border-radius-sm !default;
|
|
2151
2168
|
|
|
2152
2169
|
$form-select-padding-y-lg: $input-padding-y-lg !default;
|
|
2153
2170
|
$form-select-padding-x-lg: $input-padding-x-lg !default;
|
|
2154
2171
|
$form-select-font-size-lg: $input-font-size-lg !default;
|
|
2172
|
+
$form-select-border-radius-lg: $input-border-radius-lg !default;
|
|
2155
2173
|
|
|
2156
2174
|
$form-select-transition: $input-transition !default;
|
|
2157
2175
|
// scss-docs-end form-select-variables
|
|
@@ -2333,7 +2351,7 @@ $dropdown-divider-margin-y: $spacer * .5 !default;
|
|
|
2333
2351
|
$dropdown-box-shadow: $box-shadow !default;
|
|
2334
2352
|
|
|
2335
2353
|
$dropdown-link-color: $gray-900 !default;
|
|
2336
|
-
$dropdown-link-hover-color: shade-color($
|
|
2354
|
+
$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;
|
|
2337
2355
|
$dropdown-link-hover-bg: $gray-200 !default;
|
|
2338
2356
|
|
|
2339
2357
|
$dropdown-link-active-color: $component-active-color !default;
|
|
@@ -2538,14 +2556,14 @@ $toast-font-size: .875rem !default;
|
|
|
2538
2556
|
$toast-color: null !default;
|
|
2539
2557
|
$toast-background-color: rgba($white, .85) !default;
|
|
2540
2558
|
$toast-border-width: 1px !default;
|
|
2541
|
-
$toast-border-color: rgba(
|
|
2559
|
+
$toast-border-color: rgba($black, .1) !default;
|
|
2542
2560
|
$toast-border-radius: $border-radius !default;
|
|
2543
2561
|
$toast-box-shadow: $box-shadow !default;
|
|
2544
2562
|
$toast-spacing: $container-padding-x !default;
|
|
2545
2563
|
|
|
2546
2564
|
$toast-header-color: $gray-600 !default;
|
|
2547
2565
|
$toast-header-background-color: rgba($white, .85) !default;
|
|
2548
|
-
$toast-header-border-color: rgba(
|
|
2566
|
+
$toast-header-border-color: rgba($black, .05) !default;
|
|
2549
2567
|
// scss-docs-end toast-variables
|
|
2550
2568
|
|
|
2551
2569
|
|
|
@@ -5088,6 +5106,16 @@ $display4-letter-spacing: null !default;
|
|
|
5088
5106
|
|
|
5089
5107
|
// Component
|
|
5090
5108
|
// #region @import "_border.scss"; -> packages/bootstrap/scss/utils/_border.scss
|
|
5109
|
+
$utils-border-radius: (
|
|
5110
|
+
default: map-get( $spacing, 1 ),
|
|
5111
|
+
0: 0,
|
|
5112
|
+
sm: .2rem,
|
|
5113
|
+
md: .25rem,
|
|
5114
|
+
lg: .3rem,
|
|
5115
|
+
circle: 50%,
|
|
5116
|
+
pill: 9999px
|
|
5117
|
+
) !default;
|
|
5118
|
+
|
|
5091
5119
|
// #region @import "~@progress/kendo-theme-default/scss/utils/_border.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/utils/_border.scss
|
|
5092
5120
|
@include exports( "utils/border" ) {
|
|
5093
5121
|
|
|
@@ -5184,6 +5212,11 @@ $display4-letter-spacing: null !default;
|
|
|
5184
5212
|
$_selector-suffix: if( $radius == default, "", "-#{$radius}" );
|
|
5185
5213
|
|
|
5186
5214
|
.k-#{$_selector-base}#{$_selector-suffix} {
|
|
5215
|
+
@each $prop in $props {
|
|
5216
|
+
#{$prop}: $value;
|
|
5217
|
+
}
|
|
5218
|
+
}
|
|
5219
|
+
.\!k-#{$_selector-base}#{$_selector-suffix} {
|
|
5187
5220
|
@each $prop in $props {
|
|
5188
5221
|
#{$prop}: $value !important;
|
|
5189
5222
|
}
|
|
@@ -9061,6 +9094,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
|
|
|
9061
9094
|
font-size: $chip-selected-icon-font-size;
|
|
9062
9095
|
}
|
|
9063
9096
|
|
|
9097
|
+
.k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
9064
9098
|
.k-chip.k-selected .k-selected-icon-wrapper {
|
|
9065
9099
|
width: $chip-selected-icon-size;
|
|
9066
9100
|
visibility: visible;
|
|
@@ -9080,6 +9114,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
|
|
|
9080
9114
|
transition: width .2s, opacity .2s;
|
|
9081
9115
|
}
|
|
9082
9116
|
|
|
9117
|
+
&.k-state-selected .k-selected-icon-wrapper,
|
|
9083
9118
|
&.k-selected .k-selected-icon-wrapper {
|
|
9084
9119
|
opacity: 1;
|
|
9085
9120
|
}
|
|
@@ -9203,6 +9238,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
|
|
|
9203
9238
|
// #region @import "~@progress/kendo-theme-default/scss/chip/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
|
|
9204
9239
|
@include exports("chip/theme") {
|
|
9205
9240
|
|
|
9241
|
+
.k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
|
|
9206
9242
|
.k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
|
|
9207
9243
|
@include fill(
|
|
9208
9244
|
$color: $chip-multiple-selected-icon-text,
|
|
@@ -10912,7 +10948,9 @@ $input-separator-opacity: .5 !default;
|
|
|
10912
10948
|
}
|
|
10913
10949
|
|
|
10914
10950
|
// Input with icon styles
|
|
10915
|
-
.k-input-icon
|
|
10951
|
+
.k-input-icon,
|
|
10952
|
+
.k-input-validation-icon,
|
|
10953
|
+
.k-input-loading-icon {
|
|
10916
10954
|
width: $input-icon-width;
|
|
10917
10955
|
height: $input-icon-height;
|
|
10918
10956
|
display: inline-flex;
|
|
@@ -10920,21 +10958,6 @@ $input-separator-opacity: .5 !default;
|
|
|
10920
10958
|
align-items: center;
|
|
10921
10959
|
justify-content: center;
|
|
10922
10960
|
flex-shrink: 0;
|
|
10923
|
-
|
|
10924
|
-
.k-ie9 & {
|
|
10925
|
-
position: absolute;
|
|
10926
|
-
height: 100%;
|
|
10927
|
-
right: 0;
|
|
10928
|
-
top: 0;
|
|
10929
|
-
}
|
|
10930
|
-
|
|
10931
|
-
.k-rtl &,
|
|
10932
|
-
[dir="rtl"] & {
|
|
10933
|
-
.k-ie9 & {
|
|
10934
|
-
left: 0;
|
|
10935
|
-
right: auto;
|
|
10936
|
-
}
|
|
10937
|
-
}
|
|
10938
10961
|
}
|
|
10939
10962
|
|
|
10940
10963
|
|
|
@@ -11452,10 +11475,6 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
11452
11475
|
border-width: 1px;
|
|
11453
11476
|
}
|
|
11454
11477
|
}
|
|
11455
|
-
|
|
11456
|
-
.k-separator {
|
|
11457
|
-
height: 0;
|
|
11458
|
-
}
|
|
11459
11478
|
}
|
|
11460
11479
|
|
|
11461
11480
|
.k-virtual-content {
|
|
@@ -12327,7 +12346,7 @@ $window-sizes: (
|
|
|
12327
12346
|
.k-maskedtextbox,
|
|
12328
12347
|
.k-textbox-container,
|
|
12329
12348
|
.k-floating-label-container {
|
|
12330
|
-
display: flex;
|
|
12349
|
+
display: inline-flex;
|
|
12331
12350
|
width: 100%;
|
|
12332
12351
|
}
|
|
12333
12352
|
|
|
@@ -12388,6 +12407,7 @@ $window-sizes: (
|
|
|
12388
12407
|
margin-right: $horizontal-form-label-margin-x;
|
|
12389
12408
|
padding-top: $horizontal-form-label-padding-top;
|
|
12390
12409
|
width: $horizontal-form-label-width;
|
|
12410
|
+
text-align: end;
|
|
12391
12411
|
flex-direction: column;
|
|
12392
12412
|
align-items: $horizontal-form-label-align;
|
|
12393
12413
|
justify-content: flex-start;
|
|
@@ -13387,7 +13407,7 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
13387
13407
|
|
|
13388
13408
|
|
|
13389
13409
|
// Hover state
|
|
13390
|
-
.k-checkbox:hover
|
|
13410
|
+
.k-checkbox:hover,
|
|
13391
13411
|
.k-checkbox.k-state-hover {
|
|
13392
13412
|
@include fill(
|
|
13393
13413
|
$checkbox-hovered-text,
|
|
@@ -14164,6 +14184,17 @@ $switch-off-handle-hovered-gradient: null !default;
|
|
|
14164
14184
|
|
|
14165
14185
|
// #endregion
|
|
14166
14186
|
|
|
14187
|
+
@include exports( "switch/layout/bootstrap" ) {
|
|
14188
|
+
|
|
14189
|
+
// Switch
|
|
14190
|
+
.k-switch.k-disabled,
|
|
14191
|
+
.k-switch.k-state-disabled {
|
|
14192
|
+
opacity: 1;
|
|
14193
|
+
filter: none;
|
|
14194
|
+
}
|
|
14195
|
+
|
|
14196
|
+
}
|
|
14197
|
+
|
|
14167
14198
|
// #endregion
|
|
14168
14199
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/switch/_theme.scss
|
|
14169
14200
|
// #region @import "~@progress/kendo-theme-default/scss/switch/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/switch/_theme.scss
|
|
@@ -14332,17 +14363,11 @@ $switch-off-handle-hovered-gradient: null !default;
|
|
|
14332
14363
|
|
|
14333
14364
|
@include exports( "switch/theme/bootstrap" ) {
|
|
14334
14365
|
|
|
14335
|
-
// Switch
|
|
14336
|
-
.k-switch.k-state-disabled {
|
|
14337
|
-
opacity: 1;
|
|
14338
|
-
filter: none;
|
|
14339
|
-
}
|
|
14340
|
-
|
|
14341
14366
|
.k-switch-on.k-state-disabled {
|
|
14342
14367
|
|
|
14343
14368
|
// Switch track
|
|
14344
14369
|
.k-switch-container {
|
|
14345
|
-
background-color:
|
|
14370
|
+
background-color: try-tint( $switch-on-bg, 50% );
|
|
14346
14371
|
}
|
|
14347
14372
|
|
|
14348
14373
|
// Switch thumb
|
|
@@ -15657,6 +15682,7 @@ $message-box-link-text-decoration: underline !default;
|
|
|
15657
15682
|
|
|
15658
15683
|
// Actions orientation
|
|
15659
15684
|
.k-actions-horizontal {
|
|
15685
|
+
width: 100%;
|
|
15660
15686
|
flex-flow: row nowrap;
|
|
15661
15687
|
}
|
|
15662
15688
|
.k-actions-vertical {
|
|
@@ -17756,19 +17782,6 @@ $slider-disabled-opacity: null !default;
|
|
|
17756
17782
|
|
|
17757
17783
|
// #endregion
|
|
17758
17784
|
|
|
17759
|
-
@include exports("slider/theme/bootstrap") {
|
|
17760
|
-
|
|
17761
|
-
.k-slider {
|
|
17762
|
-
|
|
17763
|
-
.k-button {
|
|
17764
|
-
&:active,
|
|
17765
|
-
&.k-state-active {
|
|
17766
|
-
@include box-shadow( $slider-button-focused-shadow );
|
|
17767
|
-
}
|
|
17768
|
-
}
|
|
17769
|
-
}
|
|
17770
|
-
}
|
|
17771
|
-
|
|
17772
17785
|
// #endregion
|
|
17773
17786
|
|
|
17774
17787
|
// #endregion
|
|
@@ -17977,26 +17990,6 @@ $autocomplete-invalid-shadow: $invalid-shadow !default;
|
|
|
17977
17990
|
height: $input-icon-height;
|
|
17978
17991
|
}
|
|
17979
17992
|
|
|
17980
|
-
|
|
17981
|
-
// Clear value
|
|
17982
|
-
.k-clear-value {
|
|
17983
|
-
visibility: hidden;
|
|
17984
|
-
}
|
|
17985
|
-
&:hover,
|
|
17986
|
-
// &:focus-within,
|
|
17987
|
-
&.k-state-hover,
|
|
17988
|
-
&.k-state-focused,
|
|
17989
|
-
&.k-state-focus {
|
|
17990
|
-
.k-clear-value {
|
|
17991
|
-
visibility: visible;
|
|
17992
|
-
}
|
|
17993
|
-
}
|
|
17994
|
-
&:focus-within {
|
|
17995
|
-
.k-clear-value {
|
|
17996
|
-
visibility: visible;
|
|
17997
|
-
}
|
|
17998
|
-
}
|
|
17999
|
-
|
|
18000
17993
|
}
|
|
18001
17994
|
|
|
18002
17995
|
|
|
@@ -18489,23 +18482,12 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
18489
18482
|
top: -$spinner-icon-offset;
|
|
18490
18483
|
}
|
|
18491
18484
|
|
|
18492
|
-
.k-i-warning {
|
|
18493
|
-
align-self: center;
|
|
18494
|
-
margin-right: $spacer-x / 2;
|
|
18495
|
-
}
|
|
18496
|
-
|
|
18497
18485
|
|
|
18498
18486
|
// RTL
|
|
18499
18487
|
.k-rtl &,
|
|
18500
18488
|
&[dir="rtl"] {
|
|
18501
18489
|
text-align: right;
|
|
18502
18490
|
|
|
18503
|
-
.k-numeric-wrap .k-i-warning {
|
|
18504
|
-
align-self: center;
|
|
18505
|
-
margin-right: 0;
|
|
18506
|
-
margin-left: $spacer-x / 2;
|
|
18507
|
-
}
|
|
18508
|
-
|
|
18509
18491
|
.k-select {
|
|
18510
18492
|
@include border-left-radius-only( $input-border-radius );
|
|
18511
18493
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -19526,28 +19508,6 @@ $combobox-select-pressed-gradient: $button-active-gradient !default;
|
|
|
19526
19508
|
// Input
|
|
19527
19509
|
.k-input {}
|
|
19528
19510
|
|
|
19529
|
-
|
|
19530
|
-
// Clear value
|
|
19531
|
-
.k-clear-value {
|
|
19532
|
-
visibility: hidden;
|
|
19533
|
-
}
|
|
19534
|
-
&:hover,
|
|
19535
|
-
// &:focus-within,
|
|
19536
|
-
&.k-state-hover,
|
|
19537
|
-
&.k-state-focused,
|
|
19538
|
-
&.k-state-focus,
|
|
19539
|
-
.k-dropdown-wrap.k-state-hover,
|
|
19540
|
-
.k-dropdown-wrap.k-state-focused {
|
|
19541
|
-
.k-clear-value {
|
|
19542
|
-
visibility: visible;
|
|
19543
|
-
}
|
|
19544
|
-
}
|
|
19545
|
-
&:focus-within {
|
|
19546
|
-
.k-clear-value {
|
|
19547
|
-
visibility: visible;
|
|
19548
|
-
}
|
|
19549
|
-
}
|
|
19550
|
-
|
|
19551
19511
|
// Select
|
|
19552
19512
|
.k-select {
|
|
19553
19513
|
@include border-right-radius-only( $input-border-radius );
|
|
@@ -20785,26 +20745,11 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20785
20745
|
}
|
|
20786
20746
|
|
|
20787
20747
|
|
|
20788
|
-
// Validation icon
|
|
20789
|
-
.k-i-warning {
|
|
20790
|
-
position: absolute;
|
|
20791
|
-
right: $padding-x;
|
|
20792
|
-
top: 50%;
|
|
20793
|
-
transform: translateY(-50%);
|
|
20794
|
-
overflow: visible;
|
|
20795
|
-
}
|
|
20796
|
-
|
|
20797
|
-
|
|
20798
20748
|
// RTL
|
|
20799
20749
|
.k-rtl &,
|
|
20800
20750
|
&[dir="rtl"] {
|
|
20801
20751
|
text-align: right;
|
|
20802
20752
|
|
|
20803
|
-
.k-dateinput-wrap .k-i-warning {
|
|
20804
|
-
left: $padding-x;
|
|
20805
|
-
right: auto;
|
|
20806
|
-
}
|
|
20807
|
-
|
|
20808
20753
|
.k-select {
|
|
20809
20754
|
@include border-left-radius-only( $input-border-radius );
|
|
20810
20755
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -20892,16 +20837,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20892
20837
|
}
|
|
20893
20838
|
|
|
20894
20839
|
|
|
20895
|
-
// Validation icon
|
|
20896
|
-
.k-i-warning {
|
|
20897
|
-
position: absolute;
|
|
20898
|
-
top: 50%;
|
|
20899
|
-
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
20900
|
-
transform: translateY(-50%);
|
|
20901
|
-
overflow: visible;
|
|
20902
|
-
}
|
|
20903
|
-
|
|
20904
|
-
|
|
20905
20840
|
// RTL
|
|
20906
20841
|
.k-rtl &,
|
|
20907
20842
|
&[dir="rtl"] {
|
|
@@ -20911,11 +20846,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20911
20846
|
@include border-left-radius-only( $input-border-radius );
|
|
20912
20847
|
border-width: 0 $picker-select-border-width 0 0;
|
|
20913
20848
|
}
|
|
20914
|
-
|
|
20915
|
-
.k-i-warning {
|
|
20916
|
-
right: auto;
|
|
20917
|
-
left: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
20918
|
-
}
|
|
20919
20849
|
}
|
|
20920
20850
|
}
|
|
20921
20851
|
|
|
@@ -20987,16 +20917,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
20987
20917
|
}
|
|
20988
20918
|
|
|
20989
20919
|
|
|
20990
|
-
// Validation icon
|
|
20991
|
-
.k-i-warning {
|
|
20992
|
-
position: absolute;
|
|
20993
|
-
top: 50%;
|
|
20994
|
-
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
20995
|
-
transform: translateY(-50%);
|
|
20996
|
-
overflow: visible;
|
|
20997
|
-
}
|
|
20998
|
-
|
|
20999
|
-
|
|
21000
20920
|
// RTL
|
|
21001
20921
|
.k-rtl &,
|
|
21002
20922
|
&[dir="rtl"] {
|
|
@@ -21006,11 +20926,6 @@ $datetime-select-pressed-gradient: $button-active-gradient !default;
|
|
|
21006
20926
|
@include border-left-radius-only( $input-border-radius );
|
|
21007
20927
|
border-width: 0 $picker-select-border-width 0 0;
|
|
21008
20928
|
}
|
|
21009
|
-
|
|
21010
|
-
.k-i-warning {
|
|
21011
|
-
right: auto;
|
|
21012
|
-
left: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
21013
|
-
}
|
|
21014
20929
|
}
|
|
21015
20930
|
}
|
|
21016
20931
|
|
|
@@ -22284,18 +22199,6 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
22284
22199
|
text-align: center;
|
|
22285
22200
|
cursor: pointer;
|
|
22286
22201
|
}
|
|
22287
|
-
|
|
22288
|
-
// Clear value
|
|
22289
|
-
.k-clear-value {
|
|
22290
|
-
visibility: hidden;
|
|
22291
|
-
}
|
|
22292
|
-
&.k-state-focused,
|
|
22293
|
-
&.k-state-hover,
|
|
22294
|
-
&:hover {
|
|
22295
|
-
.k-clear-value {
|
|
22296
|
-
visibility: visible;
|
|
22297
|
-
}
|
|
22298
|
-
}
|
|
22299
22202
|
}
|
|
22300
22203
|
|
|
22301
22204
|
}
|
|
@@ -22667,18 +22570,10 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
22667
22570
|
|
|
22668
22571
|
// Clear value
|
|
22669
22572
|
.k-clear-value {
|
|
22670
|
-
visibility: hidden;
|
|
22671
22573
|
position: absolute;
|
|
22672
22574
|
top: 0;
|
|
22673
22575
|
right: 0;
|
|
22674
22576
|
}
|
|
22675
|
-
&:hover,
|
|
22676
|
-
&.k-state-hover,
|
|
22677
|
-
&.k-state-focused {
|
|
22678
|
-
.k-clear-value {
|
|
22679
|
-
visibility: visible;
|
|
22680
|
-
}
|
|
22681
|
-
}
|
|
22682
22577
|
|
|
22683
22578
|
// Select
|
|
22684
22579
|
> .k-select {
|
|
@@ -22700,17 +22595,6 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
22700
22595
|
right: $multiselect-clear-right;
|
|
22701
22596
|
}
|
|
22702
22597
|
|
|
22703
|
-
|
|
22704
|
-
&.k-state-hover,
|
|
22705
|
-
&.k-state-focused,
|
|
22706
|
-
&.k-state-focus {
|
|
22707
|
-
> .k-multiselect-wrap {
|
|
22708
|
-
.k-clear-value {
|
|
22709
|
-
visibility: visible;
|
|
22710
|
-
}
|
|
22711
|
-
}
|
|
22712
|
-
}
|
|
22713
|
-
|
|
22714
22598
|
&[dir="rtl"],
|
|
22715
22599
|
.k-rtl & {
|
|
22716
22600
|
text-align: right;
|
|
@@ -23511,6 +23395,7 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
23511
23395
|
@include border-radius( $searchbox-border-radius );
|
|
23512
23396
|
border-width: 1px;
|
|
23513
23397
|
border-style: solid;
|
|
23398
|
+
box-sizing: border-box;
|
|
23514
23399
|
font-family: $searchbox-font-family;
|
|
23515
23400
|
font-size: $searchbox-font-size;
|
|
23516
23401
|
line-height: $searchbox-line-height;
|
|
@@ -25153,7 +25038,6 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
25153
25038
|
height: auto;
|
|
25154
25039
|
border-width: 0 0 0 1px;
|
|
25155
25040
|
border-style: solid;
|
|
25156
|
-
flex-shrink: 0;
|
|
25157
25041
|
}
|
|
25158
25042
|
}
|
|
25159
25043
|
|
|
@@ -25715,6 +25599,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
25715
25599
|
}
|
|
25716
25600
|
|
|
25717
25601
|
// Buttons Layout
|
|
25602
|
+
.k-window-buttons,
|
|
25718
25603
|
.k-window-buttongroup {
|
|
25719
25604
|
@include border-bottom-radius( $window-border-radius );
|
|
25720
25605
|
padding: $window-buttongroup-padding-y $window-buttongroup-padding-x;
|
|
@@ -27242,13 +27127,6 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
27242
27127
|
flex-shrink: 0;
|
|
27243
27128
|
flex-basis: auto;
|
|
27244
27129
|
gap: $card-actions-gap;
|
|
27245
|
-
|
|
27246
|
-
> .k-button {
|
|
27247
|
-
padding-left: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
27248
|
-
padding-right: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
27249
|
-
max-width: 100%;
|
|
27250
|
-
white-space: normal;
|
|
27251
|
-
}
|
|
27252
27130
|
}
|
|
27253
27131
|
|
|
27254
27132
|
|
|
@@ -27263,40 +27141,9 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
27263
27141
|
.k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
27264
27142
|
|
|
27265
27143
|
|
|
27266
|
-
//
|
|
27267
|
-
.k-card-actions-stretched {
|
|
27268
|
-
|
|
27269
|
-
gap: 0;
|
|
27270
|
-
|
|
27271
|
-
> .k-button,
|
|
27272
|
-
> .k-card-action {
|
|
27273
|
-
flex: 1 1 auto;
|
|
27274
|
-
}
|
|
27275
|
-
|
|
27276
|
-
// TODO: refactor once we have button size
|
|
27277
|
-
.k-button {
|
|
27278
|
-
@include border-radius( 0 );
|
|
27279
|
-
padding-top: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
27280
|
-
padding-bottom: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
27281
|
-
}
|
|
27282
|
-
|
|
27283
|
-
.k-card & {
|
|
27284
|
-
border-top-width: $card-actions-border-width;
|
|
27285
|
-
}
|
|
27286
|
-
.k-card-horizontal > & {
|
|
27287
|
-
border-top-width: 0;
|
|
27288
|
-
border-inline-start-width: $card-actions-border-width;
|
|
27289
|
-
}
|
|
27290
|
-
.k-card-vertical > & {
|
|
27291
|
-
border-top-width: $card-actions-border-width;
|
|
27292
|
-
}
|
|
27293
|
-
|
|
27294
|
-
&.k-card-actions-horizontal > .k-card-action + .k-card-action {
|
|
27295
|
-
border-inline-start-width: $card-actions-border-width;
|
|
27296
|
-
}
|
|
27297
|
-
&.k-card-actions-vertical > .k-card-action + .k-card-action {
|
|
27298
|
-
border-top-width: $card-actions-border-width;
|
|
27299
|
-
}
|
|
27144
|
+
// Stretched actions
|
|
27145
|
+
.k-card-actions-stretched > * {
|
|
27146
|
+
flex: 1 1 auto;
|
|
27300
27147
|
}
|
|
27301
27148
|
|
|
27302
27149
|
|
|
@@ -27422,6 +27269,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
27422
27269
|
height: $card-callout-height;
|
|
27423
27270
|
border-width: $card-border-width $card-border-width 0 0;
|
|
27424
27271
|
border-style: solid;
|
|
27272
|
+
box-sizing: border-box;
|
|
27425
27273
|
position: absolute;
|
|
27426
27274
|
}
|
|
27427
27275
|
|
|
@@ -27470,33 +27318,6 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
27470
27318
|
|
|
27471
27319
|
|
|
27472
27320
|
|
|
27473
|
-
@include exports("card/layout/rtl") {
|
|
27474
|
-
|
|
27475
|
-
.k-rtl,
|
|
27476
|
-
[dir="rtl"] {
|
|
27477
|
-
|
|
27478
|
-
.k-card-actions-stretched {
|
|
27479
|
-
.k-card-action + .k-card-action {
|
|
27480
|
-
border-right-width: $card-actions-border-width;
|
|
27481
|
-
border-left-width: 0;
|
|
27482
|
-
}
|
|
27483
|
-
}
|
|
27484
|
-
|
|
27485
|
-
.k-card-horizontal {
|
|
27486
|
-
> .k-card-actions-stretched,
|
|
27487
|
-
.k-card-actions-vertical {
|
|
27488
|
-
border-right-width: $card-actions-border-width;
|
|
27489
|
-
border-left-width: 0;
|
|
27490
|
-
}
|
|
27491
|
-
}
|
|
27492
|
-
|
|
27493
|
-
}
|
|
27494
|
-
|
|
27495
|
-
}
|
|
27496
|
-
|
|
27497
|
-
|
|
27498
|
-
|
|
27499
|
-
|
|
27500
27321
|
@include exports("card/layout/ie11") {
|
|
27501
27322
|
|
|
27502
27323
|
.k-ie11 {
|
|
@@ -27558,7 +27379,8 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
27558
27379
|
|
|
27559
27380
|
|
|
27560
27381
|
// Separator
|
|
27561
|
-
.k-card-separator
|
|
27382
|
+
.k-card-separator,
|
|
27383
|
+
.k-card .k-separator {
|
|
27562
27384
|
border-color: $card-border;
|
|
27563
27385
|
}
|
|
27564
27386
|
|
|
@@ -34734,10 +34556,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34734
34556
|
.k-spreadsheet-popup {
|
|
34735
34557
|
padding: 0;
|
|
34736
34558
|
|
|
34737
|
-
.k-separator {
|
|
34738
|
-
display: block;
|
|
34739
|
-
}
|
|
34740
|
-
|
|
34741
34559
|
.k-button {
|
|
34742
34560
|
@include border-radius( 0 );
|
|
34743
34561
|
border-width: 0;
|
|
@@ -35896,6 +35714,27 @@ $pivotgrid-remove-text: null !default;
|
|
|
35896
35714
|
}
|
|
35897
35715
|
|
|
35898
35716
|
|
|
35717
|
+
@include exports( "pivotgrid/layout/export" ) {
|
|
35718
|
+
|
|
35719
|
+
.k-pdf-export-shadow {
|
|
35720
|
+
|
|
35721
|
+
.k-pivotgrid {
|
|
35722
|
+
height: auto !important; // sass-lint:disable-line no-important
|
|
35723
|
+
}
|
|
35724
|
+
|
|
35725
|
+
.k-pivotgrid-values {
|
|
35726
|
+
height: auto;
|
|
35727
|
+
overflow: visible;
|
|
35728
|
+
}
|
|
35729
|
+
|
|
35730
|
+
.k-pivotgrid-column-headers .k-pivotgrid-table {
|
|
35731
|
+
padding-inline-end: 0;
|
|
35732
|
+
}
|
|
35733
|
+
|
|
35734
|
+
}
|
|
35735
|
+
}
|
|
35736
|
+
|
|
35737
|
+
|
|
35899
35738
|
@include exports("pivotgrid/layout/legacy") {
|
|
35900
35739
|
|
|
35901
35740
|
.k-pivot {
|
|
@@ -37972,6 +37811,14 @@ $editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
|
37972
37811
|
|
|
37973
37812
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
37974
37813
|
|
|
37814
|
+
$editor-resize-handle-size: 5px !default;
|
|
37815
|
+
$editor-resize-handle-border-width: 1px !default;
|
|
37816
|
+
$editor-resize-handle-border: #000000 !default;
|
|
37817
|
+
$editor-resize-handle-bg: #ffffff !default;
|
|
37818
|
+
|
|
37819
|
+
$editor-selectednode-outline-width: 2px !default;
|
|
37820
|
+
$editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex-length
|
|
37821
|
+
|
|
37975
37822
|
// #endregion
|
|
37976
37823
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/editor/_layout.scss
|
|
37977
37824
|
// #region @import "~@progress/kendo-theme-default/scss/editor/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/editor/_layout.scss
|
|
@@ -38045,6 +37892,89 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
38045
37892
|
overflow: auto;
|
|
38046
37893
|
}
|
|
38047
37894
|
|
|
37895
|
+
// Resizable images
|
|
37896
|
+
.k-editor-resize-handles-wrapper {
|
|
37897
|
+
position: absolute;
|
|
37898
|
+
visibility: hidden;
|
|
37899
|
+
}
|
|
37900
|
+
.k-editor-resize-handle {
|
|
37901
|
+
width: $editor-resize-handle-size;
|
|
37902
|
+
height: $editor-resize-handle-size;
|
|
37903
|
+
border-width: $editor-resize-handle-border-width;
|
|
37904
|
+
border-style: solid;
|
|
37905
|
+
position: absolute;
|
|
37906
|
+
visibility: visible;
|
|
37907
|
+
z-index: 100;
|
|
37908
|
+
|
|
37909
|
+
&.northwest {
|
|
37910
|
+
top: 0;
|
|
37911
|
+
left: 0;
|
|
37912
|
+
transform: translate(-50%, -50%);
|
|
37913
|
+
cursor: nw-resize;
|
|
37914
|
+
}
|
|
37915
|
+
|
|
37916
|
+
&.north {
|
|
37917
|
+
top: 0;
|
|
37918
|
+
left: 50%;
|
|
37919
|
+
transform: translate(-50%, -50%);
|
|
37920
|
+
cursor: n-resize;
|
|
37921
|
+
}
|
|
37922
|
+
|
|
37923
|
+
&.northeast {
|
|
37924
|
+
top: 0;
|
|
37925
|
+
right: 0;
|
|
37926
|
+
transform: translate(50%, -50%);
|
|
37927
|
+
cursor: ne-resize;
|
|
37928
|
+
}
|
|
37929
|
+
|
|
37930
|
+
&.southwest {
|
|
37931
|
+
left: 0;
|
|
37932
|
+
bottom: 0;
|
|
37933
|
+
transform: translate(-50%, 50%);
|
|
37934
|
+
cursor: sw-resize;
|
|
37935
|
+
}
|
|
37936
|
+
|
|
37937
|
+
&.south {
|
|
37938
|
+
bottom: 0;
|
|
37939
|
+
left: 50%;
|
|
37940
|
+
transform: translate(-50%, 50%);
|
|
37941
|
+
cursor: s-resize;
|
|
37942
|
+
}
|
|
37943
|
+
|
|
37944
|
+
&.southeast {
|
|
37945
|
+
right: 0;
|
|
37946
|
+
bottom: 0;
|
|
37947
|
+
transform: translate(50%, 50%);
|
|
37948
|
+
cursor: se-resize;
|
|
37949
|
+
}
|
|
37950
|
+
|
|
37951
|
+
&.west {
|
|
37952
|
+
top: 50%;
|
|
37953
|
+
left: 0;
|
|
37954
|
+
transform: translate(-50%, -50%);
|
|
37955
|
+
cursor: w-resize;
|
|
37956
|
+
}
|
|
37957
|
+
|
|
37958
|
+
&.east {
|
|
37959
|
+
top: 50%;
|
|
37960
|
+
right: 0;
|
|
37961
|
+
transform: translate(50%, -50%);
|
|
37962
|
+
cursor: e-resize;
|
|
37963
|
+
}
|
|
37964
|
+
}
|
|
37965
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
37966
|
+
outline-width: $editor-selectednode-outline-width;
|
|
37967
|
+
outline-style: solid;
|
|
37968
|
+
}
|
|
37969
|
+
.ProseMirror-hideselection { // sass-lint:disable-line class-name-format
|
|
37970
|
+
caret-color: transparent;
|
|
37971
|
+
|
|
37972
|
+
*::selection,
|
|
37973
|
+
*::-moz-selection {
|
|
37974
|
+
background: transparent;
|
|
37975
|
+
}
|
|
37976
|
+
}
|
|
37977
|
+
|
|
38048
37978
|
// Toolbar
|
|
38049
37979
|
.k-editor > .k-toolbar {
|
|
38050
37980
|
border-width: 0 0 $toolbar-border-width 0;
|
|
@@ -38118,6 +38048,7 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
38118
38048
|
padding: $padding-x;
|
|
38119
38049
|
width: 100%;
|
|
38120
38050
|
height: 100%;
|
|
38051
|
+
position: relative;
|
|
38121
38052
|
box-sizing: border-box;
|
|
38122
38053
|
outline: none;
|
|
38123
38054
|
white-space: pre-wrap;
|
|
@@ -38722,6 +38653,15 @@ $editor-export-tool-icon-margin-x: .25em !default;
|
|
|
38722
38653
|
}
|
|
38723
38654
|
}
|
|
38724
38655
|
|
|
38656
|
+
// Resizable images
|
|
38657
|
+
.k-editor-resize-handle {
|
|
38658
|
+
background-color: $editor-resize-handle-bg;
|
|
38659
|
+
border-color: $editor-resize-handle-border;
|
|
38660
|
+
}
|
|
38661
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
38662
|
+
outline-color: $editor-selectednode-outline-color;
|
|
38663
|
+
}
|
|
38664
|
+
|
|
38725
38665
|
|
|
38726
38666
|
// Insert table
|
|
38727
38667
|
.k-ct-popup {
|
|
@@ -42170,12 +42110,12 @@ $chat-bubble-border-radius-sm: 2px !default;
|
|
|
42170
42110
|
$chat-avatar-size: 32px !default;
|
|
42171
42111
|
$chat-avatar-spacing: $chat-item-spacing-x !default;
|
|
42172
42112
|
|
|
42173
|
-
$chat-message-box-padding-x: $
|
|
42174
|
-
$chat-message-box-padding-y:
|
|
42113
|
+
$chat-message-box-padding-x: $input-padding-x !default;
|
|
42114
|
+
$chat-message-box-padding-y: $input-padding-y !default;
|
|
42175
42115
|
|
|
42176
|
-
$chat-toolbar-padding-x: $
|
|
42177
|
-
$chat-toolbar-padding-y:
|
|
42178
|
-
$chat-toolbar-spacing:
|
|
42116
|
+
$chat-toolbar-padding-x: $toolbar-padding-x !default;
|
|
42117
|
+
$chat-toolbar-padding-y: $toolbar-padding-y !default;
|
|
42118
|
+
$chat-toolbar-spacing: $toolbar-spacing !default;
|
|
42179
42119
|
$chat-toolbar-bg: $toolbar-bg !default;
|
|
42180
42120
|
$chat-toolbar-text: $toolbar-text !default;
|
|
42181
42121
|
$chat-toolbar-border: inherit !default;
|
|
@@ -42495,14 +42435,24 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
42495
42435
|
|
|
42496
42436
|
// Message box
|
|
42497
42437
|
.k-message-box {
|
|
42438
|
+
width: 100%;
|
|
42439
|
+
height: auto;
|
|
42498
42440
|
padding: $chat-message-box-padding-y $chat-message-box-padding-x;
|
|
42441
|
+
box-sizing: border-box;
|
|
42499
42442
|
border-width: 1px 0 0;
|
|
42500
42443
|
border-style: solid;
|
|
42501
|
-
flex:
|
|
42444
|
+
flex: none;
|
|
42502
42445
|
display: flex;
|
|
42503
42446
|
flex-flow: row nowrap;
|
|
42504
42447
|
align-items: center;
|
|
42505
42448
|
|
|
42449
|
+
&:focus,
|
|
42450
|
+
&.k-state-focus,
|
|
42451
|
+
&:focus-within {
|
|
42452
|
+
outline: 0;
|
|
42453
|
+
box-shadow: none;
|
|
42454
|
+
}
|
|
42455
|
+
|
|
42506
42456
|
// Input
|
|
42507
42457
|
.k-input {
|
|
42508
42458
|
padding: 0;
|
|
@@ -42640,11 +42590,17 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
42640
42590
|
|
|
42641
42591
|
.k-chat-toolbar,
|
|
42642
42592
|
.k-chat .k-toolbar-box {
|
|
42593
|
+
padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
|
|
42643
42594
|
width: 100%;
|
|
42595
|
+
border-width: 1px 0 0;
|
|
42644
42596
|
box-sizing: border-box;
|
|
42597
|
+
flex: none;
|
|
42645
42598
|
overflow: hidden;
|
|
42646
42599
|
position: relative;
|
|
42647
|
-
|
|
42600
|
+
|
|
42601
|
+
&::before {
|
|
42602
|
+
display: none;
|
|
42603
|
+
}
|
|
42648
42604
|
|
|
42649
42605
|
.k-button-list {
|
|
42650
42606
|
// Needed for native scrolling. Will uncoment when it's implemented.
|
|
@@ -42655,18 +42611,13 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
42655
42611
|
overflow: hidden;
|
|
42656
42612
|
// overflow-x: auto;
|
|
42657
42613
|
scroll-behavior: smooth;
|
|
42658
|
-
|
|
42659
|
-
|
|
42660
|
-
// fix for flex container disregarding the right padding
|
|
42661
|
-
&::after {
|
|
42662
|
-
content: "";
|
|
42663
|
-
padding-right: $chat-toolbar-padding-x;
|
|
42664
|
-
}
|
|
42614
|
+
}
|
|
42665
42615
|
|
|
42666
|
-
|
|
42667
|
-
|
|
42668
|
-
|
|
42669
|
-
|
|
42616
|
+
.k-button {
|
|
42617
|
+
border-color: transparent;
|
|
42618
|
+
color: inherit;
|
|
42619
|
+
background: none;
|
|
42620
|
+
flex: none;
|
|
42670
42621
|
}
|
|
42671
42622
|
|
|
42672
42623
|
|
|
@@ -42683,13 +42634,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
42683
42634
|
right: 0;
|
|
42684
42635
|
}
|
|
42685
42636
|
|
|
42686
|
-
.k-button {
|
|
42687
|
-
border-width: 0;
|
|
42688
|
-
color: inherit;
|
|
42689
|
-
background: none;
|
|
42690
|
-
flex-shrink: 0;
|
|
42691
|
-
}
|
|
42692
|
-
|
|
42693
42637
|
|
|
42694
42638
|
}
|
|
42695
42639
|
|