@progress/kendo-theme-default 5.8.2-dev.4 → 5.8.2-dev.6
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 +188 -27
- package/dist/all.scss +263 -63
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +2 -2
- package/scss/action-sheet/_layout.scss +155 -28
- package/scss/action-sheet/_theme.scss +27 -18
- package/scss/action-sheet/_variables.scss +31 -12
- package/scss/core/mixins/_hide-scrollbar.scss +2 -2
- package/scss/filter/_theme.scss +6 -0
- package/scss/filter/_variables.scss +2 -0
- package/scss/icons/_layout.scss +21 -0
- package/scss/list/_layout.scss +12 -1
- package/scss/signature/_layout.scss +1 -0
- package/scss/timeselector/_layout.scss +1 -0
- package/scss/toolbar/_layout.scss +2 -1
- package/scss/toolbar/_theme.scss +1 -1
- package/scss/toolbar/_variables.scss +2 -0
package/dist/all.scss
CHANGED
|
@@ -868,8 +868,8 @@ $_kendo-imported-modules: ();
|
|
|
868
868
|
// Infinite calendar and timepicker
|
|
869
869
|
@mixin hide-scrollbar($dir: "right", $max-scrollbar: 100px) {
|
|
870
870
|
// anything larger than the scrollbar width will do
|
|
871
|
-
$scrollbar-size:
|
|
872
|
-
$margin:
|
|
871
|
+
$scrollbar-size: var( --kendo-scrollbar-width, #{$default-scrollbar-width} );
|
|
872
|
+
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
873
873
|
|
|
874
874
|
padding-right: $max-scrollbar;
|
|
875
875
|
padding-left: $max-scrollbar;
|
|
@@ -4761,6 +4761,27 @@ $display4-letter-spacing: null !default;
|
|
|
4761
4761
|
}
|
|
4762
4762
|
}
|
|
4763
4763
|
|
|
4764
|
+
// Icon wrap
|
|
4765
|
+
.k-icon-wrap {
|
|
4766
|
+
flex: none;
|
|
4767
|
+
display: inline-flex;
|
|
4768
|
+
flex-flow: row nowrap;
|
|
4769
|
+
gap: 0;
|
|
4770
|
+
align-items: center;
|
|
4771
|
+
align-self: flex-start;
|
|
4772
|
+
vertical-align: middle;
|
|
4773
|
+
position: relative;
|
|
4774
|
+
|
|
4775
|
+
&::before {
|
|
4776
|
+
content: "\200b";
|
|
4777
|
+
width: 0;
|
|
4778
|
+
overflow: hidden;
|
|
4779
|
+
flex: none;
|
|
4780
|
+
display: inline-block;
|
|
4781
|
+
vertical-align: top;
|
|
4782
|
+
}
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4764
4785
|
.k-icon {
|
|
4765
4786
|
width: 1em;
|
|
4766
4787
|
height: 1em;
|
|
@@ -6744,6 +6765,17 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6744
6765
|
// #region @import "_layout.scss"; -> packages/default/scss/list/_layout.scss
|
|
6745
6766
|
@include exports( "list/layout" ) {
|
|
6746
6767
|
|
|
6768
|
+
// List container
|
|
6769
|
+
.k-list-container {
|
|
6770
|
+
display: flex;
|
|
6771
|
+
flex-flow: column nowrap;
|
|
6772
|
+
|
|
6773
|
+
> .k-list {
|
|
6774
|
+
flex: 1;
|
|
6775
|
+
height: 100%;
|
|
6776
|
+
}
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6747
6779
|
// List
|
|
6748
6780
|
.k-list {
|
|
6749
6781
|
margin: 0;
|
|
@@ -6924,7 +6956,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6924
6956
|
position: relative;
|
|
6925
6957
|
padding: $padding-x;
|
|
6926
6958
|
box-sizing: border-box;
|
|
6927
|
-
flex:
|
|
6959
|
+
flex: none;
|
|
6928
6960
|
}
|
|
6929
6961
|
|
|
6930
6962
|
|
|
@@ -10112,6 +10144,8 @@ $toolbar-separator-border: inherit !default;
|
|
|
10112
10144
|
|
|
10113
10145
|
$toolbar-input-width: 10em !default;
|
|
10114
10146
|
|
|
10147
|
+
$toolbar-item-shadow: $kendo-button-focus-shadow !default;
|
|
10148
|
+
|
|
10115
10149
|
// #endregion
|
|
10116
10150
|
// #region @import "../menu/_variables.scss"; -> packages/default/scss/menu/_variables.scss
|
|
10117
10151
|
// Menu
|
|
@@ -13204,7 +13238,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13204
13238
|
}
|
|
13205
13239
|
|
|
13206
13240
|
// Template item
|
|
13207
|
-
.k-toolbar-item:focus
|
|
13241
|
+
.k-toolbar-item:focus,
|
|
13242
|
+
.k-toolbar-item.k-focus {
|
|
13208
13243
|
text-decoration: none;
|
|
13209
13244
|
outline: 0;
|
|
13210
13245
|
}
|
|
@@ -13373,7 +13408,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13373
13408
|
// Template item
|
|
13374
13409
|
.k-toolbar-item:focus,
|
|
13375
13410
|
.k-toolbar-item.k-focus {
|
|
13376
|
-
@include box-shadow( $
|
|
13411
|
+
@include box-shadow( $toolbar-item-shadow );
|
|
13377
13412
|
}
|
|
13378
13413
|
|
|
13379
13414
|
|
|
@@ -17438,6 +17473,7 @@ $kendo-time-selector-sizes: (
|
|
|
17438
17473
|
display: flex;
|
|
17439
17474
|
position: relative;
|
|
17440
17475
|
flex: 1 1 auto;
|
|
17476
|
+
overflow: hidden;
|
|
17441
17477
|
}
|
|
17442
17478
|
|
|
17443
17479
|
|
|
@@ -21933,7 +21969,8 @@ $actionsheet-padding-x: null !default;
|
|
|
21933
21969
|
$actionsheet-padding-y: null !default;
|
|
21934
21970
|
$actionsheet-width: 360px !default;
|
|
21935
21971
|
$actionsheet-max-width: 100% !default;
|
|
21936
|
-
$actionsheet-
|
|
21972
|
+
$actionsheet-height: 60vh !default;
|
|
21973
|
+
$actionsheet-max-height: 60vh !default;
|
|
21937
21974
|
|
|
21938
21975
|
$actionsheet-border-width: 0px !default;
|
|
21939
21976
|
$actionsheet-border-radius: 0px !default;
|
|
@@ -21949,18 +21986,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0,
|
|
|
21949
21986
|
|
|
21950
21987
|
|
|
21951
21988
|
// Actionsheet header
|
|
21952
|
-
$actionsheet-
|
|
21953
|
-
$actionsheet-
|
|
21954
|
-
$actionsheet-
|
|
21955
|
-
$actionsheet-
|
|
21956
|
-
$actionsheet-
|
|
21957
|
-
$actionsheet-
|
|
21989
|
+
$actionsheet-titlebar-padding-x: map-get( $spacing, 4 ) !default;
|
|
21990
|
+
$actionsheet-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
21991
|
+
$actionsheet-titlebar-border-width: null !default;
|
|
21992
|
+
$actionsheet-titlebar-font-size: null !default;
|
|
21993
|
+
$actionsheet-titlebar-font-family: null !default;
|
|
21994
|
+
$actionsheet-titlebar-line-height: null !default;
|
|
21995
|
+
$actionsheet-titlebar-gap: map-get( $spacing, 4 ) !default;
|
|
21996
|
+
|
|
21997
|
+
$actionsheet-titlebar-bg: null !default;
|
|
21998
|
+
$actionsheet-titlebar-text: null !default;
|
|
21999
|
+
$actionsheet-titlebar-border: null !default;
|
|
22000
|
+
$actionsheet-titlebar-gradient: null !default;
|
|
22001
|
+
$actionsheet-titlebar-shadow: null !default;
|
|
21958
22002
|
|
|
21959
|
-
$actionsheet-
|
|
21960
|
-
$actionsheet-
|
|
21961
|
-
$actionsheet-
|
|
21962
|
-
$actionsheet-header-gradient: null !default;
|
|
21963
|
-
$actionsheet-header-shadow: null !default;
|
|
22003
|
+
$actionsheet-subtitle-font-size: $font-size-sm !default;
|
|
22004
|
+
$actionsheet-subtitle-line-height: $line-height-sm !default;
|
|
22005
|
+
$actionsheet-subtitle-text: $subtle-text !default;
|
|
21964
22006
|
|
|
21965
22007
|
|
|
21966
22008
|
// Actionsheet item
|
|
@@ -21996,26 +22038,85 @@ $actionsheet-item-disabled-border: null !default;
|
|
|
21996
22038
|
$actionsheet-item-disabled-gradient: null !default;
|
|
21997
22039
|
$actionsheet-item-disabled-shadow: null !default;
|
|
21998
22040
|
|
|
22041
|
+
|
|
22042
|
+
// Adaptive Actionsheet
|
|
22043
|
+
$adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
22044
|
+
$adaptive-actionsheet-titlebar-padding-y: map-get( $spacing, 4 ) !default;
|
|
22045
|
+
$adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
|
|
22046
|
+
$adaptive-actionsheet-titlebar-border: $component-border !default;
|
|
22047
|
+
|
|
22048
|
+
$adaptive-actionsheet-content-padding-y: map-get( $spacing, 2 ) !default;
|
|
22049
|
+
$adaptive-actionsheet-content-padding-x: map-get( $spacing, 4 ) !default;
|
|
22050
|
+
|
|
22051
|
+
$adaptive-actionsheet-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
22052
|
+
$adaptive-actionsheet-footer-padding-x: map-get( $spacing, 4 ) !default;
|
|
22053
|
+
|
|
21999
22054
|
// #endregion
|
|
22000
22055
|
// #region @import "_layout.scss"; -> packages/default/scss/action-sheet/_layout.scss
|
|
22001
22056
|
@include exports("action-sheet/layout") {
|
|
22002
22057
|
|
|
22058
|
+
// Action sheet container
|
|
22003
22059
|
.k-actionsheet-container {
|
|
22004
|
-
width:
|
|
22005
|
-
height:
|
|
22060
|
+
width: 100%;
|
|
22061
|
+
height: 100%;
|
|
22062
|
+
max-width: unquote("max(100%, 100vw)");
|
|
22063
|
+
max-height: unquote("max(100%, 100vh)");
|
|
22006
22064
|
position: fixed;
|
|
22007
22065
|
top: 0;
|
|
22008
22066
|
left: 0;
|
|
22009
22067
|
z-index: 9999;
|
|
22010
22068
|
overflow: hidden;
|
|
22069
|
+
transform: translateZ(0);
|
|
22011
22070
|
}
|
|
22012
22071
|
|
|
22072
|
+
|
|
22073
|
+
// Animation container
|
|
22074
|
+
.k-actionsheet-container {
|
|
22075
|
+
|
|
22076
|
+
// Overlay
|
|
22077
|
+
> .k-overlay {
|
|
22078
|
+
position: absolute;
|
|
22079
|
+
z-index: 1;
|
|
22080
|
+
}
|
|
22081
|
+
|
|
22082
|
+
// Nested animation container
|
|
22083
|
+
> .k-animation-container {
|
|
22084
|
+
width: 100%;
|
|
22085
|
+
height: 100%;
|
|
22086
|
+
border-radius: 0;
|
|
22087
|
+
overflow: hidden;
|
|
22088
|
+
position: absolute;
|
|
22089
|
+
z-index: 2;
|
|
22090
|
+
top: 0;
|
|
22091
|
+
left: 0;
|
|
22092
|
+
pointer-events: none;
|
|
22093
|
+
|
|
22094
|
+
> .k-child-animation-container {
|
|
22095
|
+
position: absolute;
|
|
22096
|
+
}
|
|
22097
|
+
}
|
|
22098
|
+
|
|
22099
|
+
// No animation container
|
|
22100
|
+
> .k-actionsheet {
|
|
22101
|
+
position: absolute;
|
|
22102
|
+
z-index: 2;
|
|
22103
|
+
}
|
|
22104
|
+
|
|
22105
|
+
// Enable mouse events for action sheet
|
|
22106
|
+
.k-actionsheet {
|
|
22107
|
+
pointer-events: all;
|
|
22108
|
+
}
|
|
22109
|
+
}
|
|
22110
|
+
|
|
22111
|
+
|
|
22013
22112
|
// Actionsheet
|
|
22014
22113
|
.k-actionsheet {
|
|
22015
|
-
padding: $actionsheet-padding-y
|
|
22016
|
-
|
|
22017
|
-
|
|
22018
|
-
|
|
22114
|
+
padding-block: $actionsheet-padding-y;
|
|
22115
|
+
padding-inline: $actionsheet-padding-y;
|
|
22116
|
+
width: var( --kendo-actionsheet-width, #{$actionsheet-width} );
|
|
22117
|
+
height: var( --kendo-actionsheet-height, #{$actionsheet-height} );
|
|
22118
|
+
max-width: var( --kendo-actionsheet-max-width, #{$actionsheet-max-width} );
|
|
22119
|
+
max-height: var( --kendo-actionsheet-max-height, #{$actionsheet-max-height} );
|
|
22019
22120
|
border-width: 0;
|
|
22020
22121
|
border-style: solid;
|
|
22021
22122
|
border-color: transparent;
|
|
@@ -22023,10 +22124,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22023
22124
|
font-size: $actionsheet-font-size;
|
|
22024
22125
|
font-family: $actionsheet-font-family;
|
|
22025
22126
|
line-height: $actionsheet-line-height;
|
|
22026
|
-
overflow
|
|
22027
|
-
|
|
22028
|
-
position: fixed;
|
|
22029
|
-
z-index: 10002;
|
|
22127
|
+
overflow: hidden;
|
|
22128
|
+
position: relative;
|
|
22030
22129
|
|
|
22031
22130
|
*,
|
|
22032
22131
|
*::before,
|
|
@@ -22034,37 +22133,37 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22034
22133
|
box-sizing: border-box;
|
|
22035
22134
|
}
|
|
22036
22135
|
}
|
|
22037
|
-
.k-actionsheet-fullscreen {
|
|
22038
|
-
max-height: 100%;
|
|
22039
|
-
height: 100%;
|
|
22040
|
-
}
|
|
22041
22136
|
|
|
22042
22137
|
|
|
22043
|
-
// Actionsheet
|
|
22044
|
-
.k-actionsheet-
|
|
22045
|
-
padding: $actionsheet-
|
|
22138
|
+
// Actionsheet titlebar
|
|
22139
|
+
.k-actionsheet-titlebar {
|
|
22140
|
+
padding: $actionsheet-titlebar-padding-y $actionsheet-titlebar-padding-x;
|
|
22046
22141
|
border-width: 0;
|
|
22047
|
-
border-bottom-width: if( $actionsheet-
|
|
22142
|
+
border-bottom-width: if( $actionsheet-titlebar-border-width, $actionsheet-titlebar-border-width, null );
|
|
22048
22143
|
border-style: solid;
|
|
22049
22144
|
border-color: transparent;
|
|
22050
|
-
|
|
22051
|
-
font-
|
|
22052
|
-
|
|
22053
|
-
line-height: $actionsheet-header-line-height;
|
|
22145
|
+
font-size: $actionsheet-titlebar-font-size;
|
|
22146
|
+
font-family: $actionsheet-titlebar-font-family;
|
|
22147
|
+
line-height: $actionsheet-titlebar-line-height;
|
|
22054
22148
|
flex: none;
|
|
22149
|
+
display: flex;
|
|
22150
|
+
flex-flow: column nowrap;
|
|
22151
|
+
align-items: center;
|
|
22152
|
+
gap: $actionsheet-titlebar-gap;
|
|
22055
22153
|
}
|
|
22056
|
-
|
|
22057
|
-
|
|
22058
|
-
// Actionsheet titlebar
|
|
22059
|
-
.k-actionsheet-titlebar {
|
|
22060
|
-
@extend .k-actionsheet-header !optional;
|
|
22154
|
+
.k-actionsheet-titlebar-group {
|
|
22061
22155
|
display: flex;
|
|
22062
22156
|
flex-flow: row nowrap;
|
|
22063
22157
|
align-items: center;
|
|
22158
|
+
width: 100%;
|
|
22064
22159
|
}
|
|
22065
22160
|
.k-actionsheet-title {
|
|
22066
22161
|
flex: 1;
|
|
22067
22162
|
}
|
|
22163
|
+
.k-actionsheet-subtitle {
|
|
22164
|
+
font-size: $actionsheet-subtitle-font-size;
|
|
22165
|
+
line-height: $actionsheet-subtitle-line-height;
|
|
22166
|
+
}
|
|
22068
22167
|
.k-actionsheet-actions {
|
|
22069
22168
|
flex: none;
|
|
22070
22169
|
}
|
|
@@ -22074,6 +22173,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22074
22173
|
.k-actionsheet-content {
|
|
22075
22174
|
flex: 1;
|
|
22076
22175
|
overflow: auto;
|
|
22176
|
+
position: relative;
|
|
22077
22177
|
}
|
|
22078
22178
|
|
|
22079
22179
|
|
|
@@ -22088,6 +22188,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22088
22188
|
margin: 0;
|
|
22089
22189
|
padding: 0;
|
|
22090
22190
|
list-style: none;
|
|
22191
|
+
flex: none;
|
|
22091
22192
|
}
|
|
22092
22193
|
|
|
22093
22194
|
|
|
@@ -22106,7 +22207,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22106
22207
|
outline: 0;
|
|
22107
22208
|
display: flex;
|
|
22108
22209
|
flex-flow: row nowrap;
|
|
22109
|
-
align-items:
|
|
22210
|
+
align-items: flex-start;
|
|
22110
22211
|
gap: $actionsheet-item-spacing;
|
|
22111
22212
|
}
|
|
22112
22213
|
.k-actionsheet-item-icon {
|
|
@@ -22129,6 +22230,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22129
22230
|
.k-actionsheet > .k-hr {
|
|
22130
22231
|
margin: 0;
|
|
22131
22232
|
border-color: inherit;
|
|
22233
|
+
flex: none;
|
|
22132
22234
|
}
|
|
22133
22235
|
|
|
22134
22236
|
|
|
@@ -22165,6 +22267,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22165
22267
|
top: 50%;
|
|
22166
22268
|
transform: translateY( -50% );
|
|
22167
22269
|
}
|
|
22270
|
+
.k-actionsheet-fullscreen {
|
|
22271
|
+
width: 100%;
|
|
22272
|
+
max-width: 100%;
|
|
22273
|
+
max-height: 100%;
|
|
22274
|
+
height: 100%;
|
|
22275
|
+
}
|
|
22168
22276
|
|
|
22169
22277
|
|
|
22170
22278
|
// Action sheet in popup
|
|
@@ -22186,6 +22294,28 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22186
22294
|
display: flex;
|
|
22187
22295
|
flex-flow: column nowrap;
|
|
22188
22296
|
|
|
22297
|
+
.k-actionsheet-titlebar {
|
|
22298
|
+
padding: $adaptive-actionsheet-titlebar-padding-y $adaptive-actionsheet-titlebar-padding-x;
|
|
22299
|
+
border-bottom-width: $adaptive-actionsheet-titlebar-border-width;
|
|
22300
|
+
}
|
|
22301
|
+
|
|
22302
|
+
.k-actionsheet-content {
|
|
22303
|
+
padding: $adaptive-actionsheet-content-padding-y $adaptive-actionsheet-content-padding-x;
|
|
22304
|
+
}
|
|
22305
|
+
|
|
22306
|
+
.k-actionsheet-footer {
|
|
22307
|
+
padding: $adaptive-actionsheet-footer-padding-y $adaptive-actionsheet-footer-padding-x;
|
|
22308
|
+
}
|
|
22309
|
+
|
|
22310
|
+
.k-list-container,
|
|
22311
|
+
.k-treeview {
|
|
22312
|
+
height: 100%;
|
|
22313
|
+
}
|
|
22314
|
+
.k-list-filter {
|
|
22315
|
+
width: 100%;
|
|
22316
|
+
padding-inline: 0;
|
|
22317
|
+
}
|
|
22318
|
+
|
|
22189
22319
|
.k-calendar {
|
|
22190
22320
|
margin-inline: auto;
|
|
22191
22321
|
border-width: 0;
|
|
@@ -22205,6 +22335,58 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22205
22335
|
height: 100%;
|
|
22206
22336
|
}
|
|
22207
22337
|
}
|
|
22338
|
+
|
|
22339
|
+
.k-datetime-wrap {
|
|
22340
|
+
width: 100%;
|
|
22341
|
+
height: 100%;
|
|
22342
|
+
display: flex;
|
|
22343
|
+
flex-flow: column nowrap;
|
|
22344
|
+
}
|
|
22345
|
+
.k-datetime-selector {
|
|
22346
|
+
flex: 1 1 auto;
|
|
22347
|
+
}
|
|
22348
|
+
|
|
22349
|
+
.k-datetime-calendar-wrap {
|
|
22350
|
+
width: 100%;
|
|
22351
|
+
position: absolute;
|
|
22352
|
+
top: 0;
|
|
22353
|
+
left: 0;
|
|
22354
|
+
bottom: 0;
|
|
22355
|
+
flex: 0 0 100%;
|
|
22356
|
+
}
|
|
22357
|
+
|
|
22358
|
+
.k-datetime-time-wrap {
|
|
22359
|
+
width: 100%;
|
|
22360
|
+
position: absolute;
|
|
22361
|
+
top: 0;
|
|
22362
|
+
left: 100%;
|
|
22363
|
+
bottom: 0;
|
|
22364
|
+
flex: 0 0 100%;
|
|
22365
|
+
}
|
|
22366
|
+
|
|
22367
|
+
.k-scrollable-wrap {
|
|
22368
|
+
height: 100%;
|
|
22369
|
+
overflow-y: auto;
|
|
22370
|
+
}
|
|
22371
|
+
}
|
|
22372
|
+
|
|
22373
|
+
}
|
|
22374
|
+
|
|
22375
|
+
@include exports("action-sheet/layout/legacy") {
|
|
22376
|
+
|
|
22377
|
+
.k-actionsheet-jq {
|
|
22378
|
+
&.k-actionsheet {
|
|
22379
|
+
height: auto;
|
|
22380
|
+
}
|
|
22381
|
+
|
|
22382
|
+
.k-actionsheet-header {
|
|
22383
|
+
@extend .k-actionsheet-titlebar !optional;
|
|
22384
|
+
align-items: flex-start;
|
|
22385
|
+
}
|
|
22386
|
+
|
|
22387
|
+
.k-actionsheet-action {
|
|
22388
|
+
align-items: center;
|
|
22389
|
+
}
|
|
22208
22390
|
}
|
|
22209
22391
|
|
|
22210
22392
|
}
|
|
@@ -22225,14 +22407,17 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22225
22407
|
|
|
22226
22408
|
|
|
22227
22409
|
// Actionsheet header
|
|
22228
|
-
.k-actionsheet-
|
|
22410
|
+
.k-actionsheet-titlebar {
|
|
22229
22411
|
@include fill(
|
|
22230
|
-
$actionsheet-
|
|
22231
|
-
$actionsheet-
|
|
22232
|
-
$actionsheet-
|
|
22233
|
-
$actionsheet-
|
|
22412
|
+
$actionsheet-titlebar-text,
|
|
22413
|
+
$actionsheet-titlebar-bg,
|
|
22414
|
+
$actionsheet-titlebar-border,
|
|
22415
|
+
$actionsheet-titlebar-gradient
|
|
22234
22416
|
);
|
|
22235
|
-
@include box-shadow( $actionsheet-
|
|
22417
|
+
@include box-shadow( $actionsheet-titlebar-shadow );
|
|
22418
|
+
}
|
|
22419
|
+
.k-actionsheet-subtitle {
|
|
22420
|
+
@include fill( $color: $actionsheet-subtitle-text );
|
|
22236
22421
|
}
|
|
22237
22422
|
|
|
22238
22423
|
|
|
@@ -22241,17 +22426,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22241
22426
|
|
|
22242
22427
|
|
|
22243
22428
|
// Actionsheet item
|
|
22244
|
-
.k-actionsheet-item {
|
|
22245
|
-
|
|
22246
|
-
|
|
22247
|
-
// Actionsheet item description
|
|
22248
|
-
.k-actionsheet-item-description {
|
|
22249
|
-
@include fill( $color: $actionsheet-item-description-text );
|
|
22250
|
-
}
|
|
22251
|
-
|
|
22252
|
-
|
|
22253
|
-
// Actionsheet action
|
|
22254
|
-
.k-actionsheet-action {
|
|
22429
|
+
.k-actionsheet-item {
|
|
22255
22430
|
|
|
22256
22431
|
|
|
22257
22432
|
// Hover state
|
|
@@ -22280,7 +22455,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22280
22455
|
}
|
|
22281
22456
|
|
|
22282
22457
|
|
|
22283
|
-
//
|
|
22458
|
+
// Disabled state
|
|
22284
22459
|
&:disabled,
|
|
22285
22460
|
&.k-disabled {
|
|
22286
22461
|
@include fill(
|
|
@@ -22293,6 +22468,22 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22293
22468
|
}
|
|
22294
22469
|
}
|
|
22295
22470
|
|
|
22471
|
+
|
|
22472
|
+
// Actionsheet item description
|
|
22473
|
+
.k-actionsheet-item-description {
|
|
22474
|
+
@include fill( $color: $actionsheet-item-description-text );
|
|
22475
|
+
}
|
|
22476
|
+
|
|
22477
|
+
|
|
22478
|
+
// Actionsheet action
|
|
22479
|
+
.k-actionsheet-action {}
|
|
22480
|
+
|
|
22481
|
+
|
|
22482
|
+
// Adaptive Actionsheet
|
|
22483
|
+
.k-adaptive-actionsheet .k-actionsheet-titlebar {
|
|
22484
|
+
@include fill( $border: $adaptive-actionsheet-titlebar-border );
|
|
22485
|
+
}
|
|
22486
|
+
|
|
22296
22487
|
}
|
|
22297
22488
|
|
|
22298
22489
|
// #endregion
|
|
@@ -33129,6 +33320,8 @@ $filter-operator-dropdown-width: 15em !default;
|
|
|
33129
33320
|
$filter-preview-field-text: $primary !default;
|
|
33130
33321
|
$filter-preview-operator-text: $subtle-text !default;
|
|
33131
33322
|
|
|
33323
|
+
$filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
33324
|
+
|
|
33132
33325
|
// #endregion
|
|
33133
33326
|
// #region @import "_layout.scss"; -> packages/default/scss/filter/_layout.scss
|
|
33134
33327
|
@include exports("filter/layout") {
|
|
@@ -33276,6 +33469,12 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33276
33469
|
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
33277
33470
|
background-color: $component-border;
|
|
33278
33471
|
}
|
|
33472
|
+
|
|
33473
|
+
// Focus
|
|
33474
|
+
.k-toolbar:focus,
|
|
33475
|
+
.k-toolbar.k-focus {
|
|
33476
|
+
@include box-shadow( $filter-toolbar-focus-shadow );
|
|
33477
|
+
}
|
|
33279
33478
|
}
|
|
33280
33479
|
|
|
33281
33480
|
}
|
|
@@ -41974,6 +42173,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
41974
42173
|
height: 100%;
|
|
41975
42174
|
display: block;
|
|
41976
42175
|
z-index: 1;
|
|
42176
|
+
outline: none;
|
|
41977
42177
|
}
|
|
41978
42178
|
|
|
41979
42179
|
.k-signature-line {
|
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": "5.8.2-dev.
|
|
4
|
+
"version": "5.8.2-dev.6",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"sass-build": "^1.0.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
|
|
48
48
|
}
|