@progress/kendo-theme-default 4.43.1-dev.4 → 4.43.1-dev.5
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 +748 -805
- package/dist/all.scss +1290 -1168
- package/package.json +2 -2
- package/scss/adaptive/_layout.scss +40 -86
- package/scss/adaptive/_theme.scss +0 -9
- package/scss/appbar/_variables.scss +1 -1
- package/scss/autocomplete/_theme.scss +20 -39
- package/scss/autocomplete/_variables.scss +0 -19
- package/scss/avatar/_variables.scss +11 -1
- package/scss/button/_layout.scss +2 -2
- package/scss/button/_variables.scss +3 -3
- package/scss/calendar/_layout.scss +2 -14
- package/scss/card/_variables.scss +4 -4
- package/scss/chat/_layout.scss +3 -9
- package/scss/chat/_theme.scss +0 -21
- package/scss/chat/_variables.scss +0 -7
- package/scss/checkbox/_layout.scss +78 -145
- package/scss/checkbox/_theme.scss +6 -2
- package/scss/checkbox/_variables.scss +87 -18
- package/scss/daterangepicker/_index.scss +10 -0
- package/scss/daterangepicker/_layout.scss +27 -0
- package/scss/daterangepicker/_theme.scss +3 -0
- package/scss/daterangepicker/_variables.scss +1 -0
- package/scss/editor/_layout.scss +2 -10
- package/scss/forms/_layout.scss +7 -9
- package/scss/gantt/_layout.scss +1 -1
- package/scss/grid/_layout.scss +128 -97
- package/scss/grid/_variables.scss +1 -3
- package/scss/index.scss +1 -0
- package/scss/input/_layout.scss +1 -1
- package/scss/input/_variables.scss +5 -5
- package/scss/list/_layout.scss +9 -41
- package/scss/list/_theme.scss +4 -3
- package/scss/list/_variables.scss +64 -8
- package/scss/listbox/_variables.scss +1 -1
- package/scss/listview/_layout.scss +2 -9
- package/scss/map/_layout.scss +5 -0
- package/scss/menu/_layout.scss +48 -5
- package/scss/menu/_theme.scss +6 -2
- package/scss/menu/_variables.scss +1 -1
- package/scss/numerictextbox/_layout.scss +9 -27
- package/scss/numerictextbox/_theme.scss +64 -84
- package/scss/numerictextbox/_variables.scss +0 -27
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pager/_variables.scss +1 -1
- package/scss/pdf-viewer/_layout.scss +20 -29
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/radio/_layout.scss +89 -136
- package/scss/radio/_theme.scss +2 -2
- package/scss/radio/_variables.scss +88 -26
- package/scss/scheduler/_layout.scss +25 -12
- package/scss/searchbox/_layout.scss +22 -8
- package/scss/searchbox/_theme.scss +16 -25
- package/scss/searchbox/_variables.scss +0 -20
- package/scss/skeleton/_layout.scss +1 -1
- package/scss/spreadsheet/_layout.scss +27 -15
- package/scss/table/_layout.scss +29 -6
- package/scss/table/_theme.scss +3 -2
- package/scss/table/_variables.scss +3 -3
- package/scss/timeselector/_layout.scss +2 -2
- package/scss/toolbar/_layout.scss +21 -2
- package/scss/toolbar/_theme.scss +35 -7
- package/scss/treeview/_layout.scss +130 -110
- package/scss/treeview/_theme.scss +36 -25
- package/scss/treeview/_variables.scss +67 -13
- package/scss/typography/_variables.scss +3 -3
- package/scss/window/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -1519,8 +1519,8 @@ $enable-typography: false !default;
|
|
|
1519
1519
|
$font-size: 14px !default;
|
|
1520
1520
|
$font-size-xs: 10px !default;
|
|
1521
1521
|
$font-size-sm: 12px !default;
|
|
1522
|
-
$font-size-md:
|
|
1523
|
-
$font-size-lg:
|
|
1522
|
+
$font-size-md: $font-size !default;
|
|
1523
|
+
$font-size-lg: 16px !default;
|
|
1524
1524
|
$font-size-xl: 20px !default;
|
|
1525
1525
|
|
|
1526
1526
|
/// Font family across all components.
|
|
@@ -1535,7 +1535,7 @@ $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono",
|
|
|
1535
1535
|
/// @group typography
|
|
1536
1536
|
$line-height: (20 / 14) !default;
|
|
1537
1537
|
$line-height-xs: 1 !default;
|
|
1538
|
-
$line-height-sm: 1.
|
|
1538
|
+
$line-height-sm: 1.25 !default;
|
|
1539
1539
|
$line-height-md: $line-height !default;
|
|
1540
1540
|
$line-height-lg: 1.5 !default;
|
|
1541
1541
|
$line-height-em: $line-height * 1em !default;
|
|
@@ -5931,26 +5931,82 @@ $message-box-link-text-decoration: underline !default;
|
|
|
5931
5931
|
// #endregion
|
|
5932
5932
|
// #region @import "../list/_variables.scss"; -> packages/default/scss/list/_variables.scss
|
|
5933
5933
|
// List
|
|
5934
|
-
$list-font-size: $font-size !default;
|
|
5935
|
-
$list-line-height: $line-height !default;
|
|
5936
|
-
$list-line-height-em: $line-height-em !default;
|
|
5937
5934
|
|
|
5938
|
-
|
|
5939
|
-
|
|
5935
|
+
/// Font size of the list component.
|
|
5936
|
+
/// @group list
|
|
5937
|
+
$list-font-size: $font-size-md !default;
|
|
5938
|
+
|
|
5939
|
+
/// Line height of the list component.
|
|
5940
|
+
/// @group list
|
|
5941
|
+
$list-line-height: $line-height-md !default;
|
|
5942
|
+
$list-line-height-em: $line-height-em !default;
|
|
5940
5943
|
|
|
5944
|
+
/// Horizontal padding of list items.
|
|
5945
|
+
/// @group list
|
|
5946
|
+
$list-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
5947
|
+
|
|
5948
|
+
/// Vertical padding of list items.
|
|
5949
|
+
/// @group list
|
|
5950
|
+
$list-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
5951
|
+
|
|
5952
|
+
|
|
5953
|
+
/// Background color of the list component.
|
|
5954
|
+
/// @group list
|
|
5955
|
+
$list-bg: $component-bg !default;
|
|
5956
|
+
/// Text color of the list component.
|
|
5957
|
+
/// @group list
|
|
5958
|
+
$list-text: $component-text !default;
|
|
5959
|
+
/// Border color of the list component.
|
|
5960
|
+
/// @group list
|
|
5961
|
+
$list-border: $component-border !default;
|
|
5962
|
+
|
|
5963
|
+
/// Background color of list header.
|
|
5964
|
+
/// @group list
|
|
5965
|
+
$list-header-bg: null !default;
|
|
5966
|
+
/// Text color of list header.
|
|
5967
|
+
/// @group list
|
|
5968
|
+
$list-header-text: null !default;
|
|
5969
|
+
/// Border color of list header.
|
|
5970
|
+
/// @group list
|
|
5971
|
+
$list-header-border: inherit !default;
|
|
5972
|
+
/// Box shadow of list header.
|
|
5973
|
+
/// @group list
|
|
5974
|
+
$list-header-shadow: 0 5px 10px 0 rgba(0, 0, 0, .06) !default;
|
|
5975
|
+
|
|
5976
|
+
/// Background color of list items.
|
|
5977
|
+
/// @group list
|
|
5941
5978
|
$list-item-bg: null !default;
|
|
5979
|
+
/// Text color of list items.
|
|
5980
|
+
/// @group list
|
|
5942
5981
|
$list-item-text: $component-text !default;
|
|
5943
5982
|
|
|
5983
|
+
/// Background color of hovered list items.
|
|
5984
|
+
/// @group list
|
|
5944
5985
|
$list-item-hovered-bg: $hovered-bg !default;
|
|
5986
|
+
/// Text color of hovered list items.
|
|
5987
|
+
/// @group list
|
|
5945
5988
|
$list-item-hovered-text: $hovered-text !default;
|
|
5946
5989
|
|
|
5990
|
+
/// Background color of focused list items.
|
|
5991
|
+
/// @group list
|
|
5992
|
+
$list-item-focused-bg: null !default;
|
|
5993
|
+
/// Text color of focused list items.
|
|
5994
|
+
/// @group list
|
|
5995
|
+
$list-item-focused-text: null !default;
|
|
5996
|
+
/// Box shadow of focused list items.
|
|
5997
|
+
/// @group list
|
|
5998
|
+
$list-item-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .12) !default;
|
|
5999
|
+
|
|
6000
|
+
/// Background color of selected list items.
|
|
6001
|
+
/// @group list
|
|
5947
6002
|
$list-item-selected-bg: $selected-bg !default;
|
|
6003
|
+
/// Text color of selected list items.
|
|
6004
|
+
/// @group list
|
|
5948
6005
|
$list-item-selected-text: $selected-text !default;
|
|
5949
6006
|
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
$list-
|
|
5953
|
-
$list-container-no-data-text: $subtle-text !default;
|
|
6007
|
+
/// Text color of the 'No Data' text.
|
|
6008
|
+
/// @group list
|
|
6009
|
+
$list-no-data-text: $subtle-text !default;
|
|
5954
6010
|
|
|
5955
6011
|
// #endregion
|
|
5956
6012
|
|
|
@@ -5958,60 +6014,120 @@ $list-container-no-data-text: $subtle-text !default;
|
|
|
5958
6014
|
// Component
|
|
5959
6015
|
// #region @import "_variables.scss"; -> packages/default/scss/checkbox/_variables.scss
|
|
5960
6016
|
// Checkbox
|
|
6017
|
+
|
|
5961
6018
|
$checkbox-size: map-get( $spacing, 4 ) !default;
|
|
5962
6019
|
$checkbox-radius: map-get( $spacing, thin ) !default;
|
|
6020
|
+
/// Border width of checkbox.
|
|
6021
|
+
/// @group checkbox
|
|
5963
6022
|
$checkbox-border-width: 1px !default;
|
|
5964
|
-
$checkbox-line-height: calc( #{$checkbox-size} + #{$checkbox-border-width} ) !default;
|
|
5965
|
-
|
|
5966
|
-
$checkbox-bg: $white !default;
|
|
5967
|
-
$checkbox-text: transparent !default;
|
|
5968
|
-
$checkbox-border: $base-border !default;
|
|
5969
6023
|
|
|
6024
|
+
/// Background color of checkbox.
|
|
6025
|
+
/// @group checkbox
|
|
6026
|
+
$checkbox-bg: $component-bg !default;
|
|
6027
|
+
/// Color of checkbox.
|
|
6028
|
+
/// @group checkbox
|
|
6029
|
+
$checkbox-text: null !default;
|
|
6030
|
+
/// Border color of checkbox.
|
|
6031
|
+
/// @group checkbox
|
|
6032
|
+
$checkbox-border: $component-border !default;
|
|
6033
|
+
|
|
6034
|
+
/// Background color of hovered checkbox.
|
|
6035
|
+
/// @group checkbox
|
|
5970
6036
|
$checkbox-hovered-bg: null !default;
|
|
6037
|
+
/// Color of hovered checkbox.
|
|
6038
|
+
/// @group checkbox
|
|
5971
6039
|
$checkbox-hovered-text: null !default;
|
|
6040
|
+
/// Border color of hovered checkbox.
|
|
6041
|
+
/// @group checkbox
|
|
5972
6042
|
$checkbox-hovered-border: null !default;
|
|
5973
6043
|
|
|
6044
|
+
/// Background color of checked checkbox.
|
|
6045
|
+
/// @group checkbox
|
|
5974
6046
|
$checkbox-checked-bg: $primary !default;
|
|
6047
|
+
/// Color of checked checkbox.
|
|
6048
|
+
/// @group checkbox
|
|
5975
6049
|
$checkbox-checked-text: contrast-wcag( $checkbox-checked-bg ) !default;
|
|
6050
|
+
/// Border color of checked checkbox.
|
|
6051
|
+
/// @group checkbox
|
|
5976
6052
|
$checkbox-checked-border: $checkbox-checked-bg !default;
|
|
5977
6053
|
|
|
6054
|
+
/// Background color of indeterminate checkbox.
|
|
6055
|
+
/// @group checkbox
|
|
5978
6056
|
$checkbox-indeterminate-bg: $checkbox-bg !default;
|
|
6057
|
+
/// Color of indeterminate checkbox.
|
|
6058
|
+
/// @group checkbox
|
|
5979
6059
|
$checkbox-indeterminate-text: $checkbox-checked-bg !default;
|
|
6060
|
+
/// Border color of indeterminate checkbox.
|
|
6061
|
+
/// @group checkbox
|
|
5980
6062
|
$checkbox-indeterminate-border: $checkbox-border !default;
|
|
5981
6063
|
|
|
6064
|
+
/// Border color of focused checkbox.
|
|
6065
|
+
/// @group checkbox
|
|
5982
6066
|
$checkbox-focused-border: null !default;
|
|
6067
|
+
/// Box shadow of focused checkbox.
|
|
6068
|
+
/// @group checkbox
|
|
5983
6069
|
$checkbox-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .06) !default;
|
|
6070
|
+
/// Border color of focused and checked checkbox.
|
|
6071
|
+
/// @group checkbox
|
|
5984
6072
|
$checkbox-focused-checked-border: null !default;
|
|
6073
|
+
/// Box shadow of focused and checked checkbox.
|
|
6074
|
+
/// @group checkbox
|
|
5985
6075
|
$checkbox-focused-checked-shadow: 0 0 0 2px rgba( $primary, .3 ) !default;
|
|
5986
6076
|
|
|
6077
|
+
/// Background color of disabled checkbox.
|
|
6078
|
+
/// @group checkbox
|
|
5987
6079
|
$checkbox-disabled-bg: null !default;
|
|
6080
|
+
/// Color of disabled checkbox.
|
|
6081
|
+
/// @group checkbox
|
|
5988
6082
|
$checkbox-disabled-text: null !default;
|
|
6083
|
+
/// Border color of disabled checkbox.
|
|
6084
|
+
/// @group checkbox
|
|
5989
6085
|
$checkbox-disabled-border: null !default;
|
|
5990
6086
|
|
|
6087
|
+
/// Background color of disabled and checked checkbox.
|
|
6088
|
+
/// @group checkbox
|
|
5991
6089
|
$checkbox-disabled-checked-bg: null !default;
|
|
6090
|
+
/// Color of disabled and checked checkbox.
|
|
6091
|
+
/// @group checkbox
|
|
5992
6092
|
$checkbox-disabled-checked-text: null !default;
|
|
6093
|
+
/// Border color of disabled and checked checkbox.
|
|
6094
|
+
/// @group checkbox
|
|
5993
6095
|
$checkbox-disabled-checked-border: null !default;
|
|
5994
6096
|
|
|
6097
|
+
/// Background color of invalid checkbox.
|
|
6098
|
+
/// @group checkbox
|
|
5995
6099
|
$checkbox-invalid-bg: null !default;
|
|
6100
|
+
/// Color of invalid checkbox.
|
|
6101
|
+
/// @group checkbox
|
|
5996
6102
|
$checkbox-invalid-text: $invalid-text !default;
|
|
6103
|
+
/// Border color of invalid checkbox.
|
|
6104
|
+
/// @group checkbox
|
|
5997
6105
|
$checkbox-invalid-border: $invalid-border !default;
|
|
5998
6106
|
|
|
5999
6107
|
|
|
6000
6108
|
// Checkbox indicator
|
|
6001
|
-
$checkbox-icon-type: glyph !default;
|
|
6002
6109
|
|
|
6110
|
+
/// Type of checkbox indicator.
|
|
6111
|
+
/// @group checkbox
|
|
6112
|
+
$checkbox-indicator-type: image !default;
|
|
6113
|
+
|
|
6114
|
+
/// Glyph font family of checkbox indicator.
|
|
6115
|
+
/// @group checkbox
|
|
6003
6116
|
$checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
6004
6117
|
$checkbox-glyph-size: 12px !default;
|
|
6118
|
+
/// Glyph of checkbox indicator.
|
|
6119
|
+
/// @group checkbox
|
|
6005
6120
|
$checkbox-checked-glyph: "\e118" !default;
|
|
6121
|
+
/// Glyph of indeterminate checkbox indicator.
|
|
6122
|
+
/// @group checkbox
|
|
6006
6123
|
$checkbox-indeterminate-glyph: "\e121" !default;
|
|
6007
6124
|
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
$checkbox-
|
|
6014
|
-
$checkbox-marker-indeterminate-height: ( $checkbox-size / 2 ) !default;
|
|
6125
|
+
/// Image of checked checkbox indicator.
|
|
6126
|
+
/// @group checkbox
|
|
6127
|
+
$checkbox-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$checkbox-checked-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3,8 l3,3 l7-7'/></svg>") ) !default;
|
|
6128
|
+
/// Image image of checked checkbox indicator.
|
|
6129
|
+
/// @group checkbox
|
|
6130
|
+
$checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$checkbox-indeterminate-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4,8 h8'/></svg>") ) !default;
|
|
6015
6131
|
|
|
6016
6132
|
|
|
6017
6133
|
// Checkbox label
|
|
@@ -6019,17 +6135,26 @@ $checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
|
6019
6135
|
|
|
6020
6136
|
|
|
6021
6137
|
// Checkbox list
|
|
6022
|
-
|
|
6023
|
-
|
|
6138
|
+
|
|
6139
|
+
/// Spacing between items of horizontal checkbox list.
|
|
6140
|
+
/// @group checkbox
|
|
6141
|
+
$checkbox-list-spacing: map-get( $spacing, 4 ) !default;
|
|
6142
|
+
/// Horizontal padding of checkbox list items.
|
|
6143
|
+
/// @group checkbox
|
|
6024
6144
|
$checkbox-list-item-padding-x: 0px !default;
|
|
6145
|
+
/// Vertical padding of checkbox list items.
|
|
6146
|
+
/// @group checkbox
|
|
6025
6147
|
$checkbox-list-item-padding-y: $list-item-padding-y !default;
|
|
6026
|
-
$checkbox-list-horizontal-item-margin-x: 32px !default;
|
|
6027
6148
|
|
|
6028
6149
|
|
|
6029
6150
|
// Checkbox ripple
|
|
6030
6151
|
$checkbox-ripple-size: $checkbox-size * 3 !default;
|
|
6031
|
-
|
|
6032
|
-
|
|
6152
|
+
/// Background color of checkbox ripple.
|
|
6153
|
+
/// @group checkbox
|
|
6154
|
+
$checkbox-ripple-bg: $checkbox-checked-bg !default;
|
|
6155
|
+
/// Opacity of checkbox ripple.
|
|
6156
|
+
/// @group checkbox
|
|
6157
|
+
$checkbox-ripple-opacity: .25 !default;
|
|
6033
6158
|
|
|
6034
6159
|
// #endregion
|
|
6035
6160
|
// #region @import "_layout.scss"; -> packages/default/scss/checkbox/_layout.scss
|
|
@@ -6058,28 +6183,17 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6058
6183
|
-webkit-appearance: none;
|
|
6059
6184
|
}
|
|
6060
6185
|
|
|
6186
|
+
|
|
6061
6187
|
// Checkbox indicator
|
|
6062
6188
|
.k-checkbox::before {
|
|
6063
|
-
@if $checkbox-
|
|
6189
|
+
@if $checkbox-indicator-type == "glyph" {
|
|
6064
6190
|
content: $checkbox-checked-glyph;
|
|
6065
6191
|
width: $checkbox-glyph-size;
|
|
6066
6192
|
height: $checkbox-glyph-size;
|
|
6067
6193
|
font-size: $checkbox-glyph-size;
|
|
6068
6194
|
font-family: $checkbox-glyph-font-family;
|
|
6069
6195
|
line-height: 1;
|
|
6070
|
-
transform:
|
|
6071
|
-
overflow: hidden;
|
|
6072
|
-
position: absolute;
|
|
6073
|
-
top: 50%;
|
|
6074
|
-
left: 50%;
|
|
6075
|
-
}
|
|
6076
|
-
|
|
6077
|
-
@if $checkbox-icon-type == "marker" {
|
|
6078
|
-
content: "";
|
|
6079
|
-
width: $checkbox-marker-checked-width;
|
|
6080
|
-
height: $checkbox-marker-checked-height;
|
|
6081
|
-
background-color: currentColor;
|
|
6082
|
-
transform: scale(0) translate(-50%, -50%);
|
|
6196
|
+
transform: translate(-50%, -50%) scale(0);
|
|
6083
6197
|
overflow: hidden;
|
|
6084
6198
|
position: absolute;
|
|
6085
6199
|
top: 50%;
|
|
@@ -6091,19 +6205,13 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6091
6205
|
// Checked state
|
|
6092
6206
|
.k-checkbox:checked,
|
|
6093
6207
|
.k-checkbox.k-checked {
|
|
6094
|
-
@if $checkbox-
|
|
6208
|
+
@if $checkbox-indicator-type == "image" {
|
|
6095
6209
|
background-image: $checkbox-checked-image;
|
|
6096
6210
|
}
|
|
6097
6211
|
|
|
6098
|
-
@if $checkbox-
|
|
6212
|
+
@if $checkbox-indicator-type == "glyph" {
|
|
6099
6213
|
&::before {
|
|
6100
|
-
transform:
|
|
6101
|
-
}
|
|
6102
|
-
}
|
|
6103
|
-
|
|
6104
|
-
@if $checkbox-icon-type == "marker" {
|
|
6105
|
-
&::before {
|
|
6106
|
-
transform: scale(1) translate(-50%, -50%);
|
|
6214
|
+
transform: translate(-50%, -50%) scale(1);
|
|
6107
6215
|
}
|
|
6108
6216
|
}
|
|
6109
6217
|
}
|
|
@@ -6113,22 +6221,14 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6113
6221
|
.k-checkbox:indeterminate,
|
|
6114
6222
|
.k-checkbox.k-indeterminate,
|
|
6115
6223
|
.k-checkbox.k-state-indeterminate {
|
|
6116
|
-
@if $checkbox-
|
|
6224
|
+
@if $checkbox-indicator-type == "image" {
|
|
6117
6225
|
background-image: $checkbox-indeterminate-image;
|
|
6118
6226
|
}
|
|
6119
6227
|
|
|
6120
|
-
@if $checkbox-
|
|
6228
|
+
@if $checkbox-indicator-type == "glyph" {
|
|
6121
6229
|
&::before {
|
|
6122
6230
|
content: $checkbox-indeterminate-glyph;
|
|
6123
|
-
transform:
|
|
6124
|
-
}
|
|
6125
|
-
}
|
|
6126
|
-
|
|
6127
|
-
@if $checkbox-icon-type == "marker" {
|
|
6128
|
-
&::before {
|
|
6129
|
-
width: $checkbox-maker-indeterminate-width;
|
|
6130
|
-
height: $checkbox-marker-indeterminate-height;
|
|
6131
|
-
transform: scale(1) translate(-50%, -50%);
|
|
6231
|
+
transform: translate(-50%, -50%) scale(1);
|
|
6132
6232
|
}
|
|
6133
6233
|
}
|
|
6134
6234
|
}
|
|
@@ -6136,69 +6236,55 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6136
6236
|
|
|
6137
6237
|
// Disabled state
|
|
6138
6238
|
.k-checkbox:disabled,
|
|
6139
|
-
.k-checkbox.k-disabled
|
|
6140
|
-
.k-checkbox:disabled + .k-checkbox-label,
|
|
6141
|
-
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
6239
|
+
.k-checkbox.k-disabled {
|
|
6142
6240
|
@include disabled( $disabled-styling );
|
|
6143
6241
|
}
|
|
6144
6242
|
|
|
6243
|
+
|
|
6244
|
+
// Checkbox wrap
|
|
6245
|
+
.k-checkbox-wrap {
|
|
6246
|
+
flex: none;
|
|
6247
|
+
display: inline-flex;
|
|
6248
|
+
flex-flow: row nowrap;
|
|
6249
|
+
gap: 0;
|
|
6250
|
+
align-items: center;
|
|
6251
|
+
align-self: flex-start;
|
|
6252
|
+
vertical-align: middle;
|
|
6253
|
+
position: relative;
|
|
6254
|
+
|
|
6255
|
+
&::before {
|
|
6256
|
+
content: "\200b";
|
|
6257
|
+
width: 0px;
|
|
6258
|
+
overflow: hidden;
|
|
6259
|
+
flex: none;
|
|
6260
|
+
display: inline-block;
|
|
6261
|
+
vertical-align: top;
|
|
6262
|
+
}
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
|
|
6145
6266
|
// Checkbox label
|
|
6146
6267
|
.k-checkbox-label {
|
|
6147
6268
|
margin: 0;
|
|
6148
6269
|
padding: 0;
|
|
6149
|
-
line-height: $checkbox-line-height;
|
|
6150
6270
|
display: inline-flex;
|
|
6151
6271
|
align-items: flex-start;
|
|
6272
|
+
gap: $checkbox-label-margin-x;
|
|
6152
6273
|
vertical-align: middle;
|
|
6153
6274
|
position: relative;
|
|
6154
6275
|
cursor: pointer;
|
|
6155
6276
|
|
|
6156
|
-
.k-label {
|
|
6157
|
-
cursor: pointer;
|
|
6158
|
-
}
|
|
6159
|
-
|
|
6160
6277
|
.k-ripple {
|
|
6161
|
-
top: $checkbox-size / 2;
|
|
6162
|
-
left: $checkbox-size / 2;
|
|
6163
|
-
right: auto;
|
|
6164
|
-
bottom: auto;
|
|
6165
|
-
width: $checkbox-size * 5 / 2;
|
|
6166
|
-
height: $checkbox-size * 5 / 2;
|
|
6167
|
-
transform: translate(-50%, -50%);
|
|
6168
|
-
border-radius: 50%;
|
|
6169
|
-
|
|
6170
6278
|
// Hide ripple temporarily
|
|
6171
6279
|
visibility: hidden !important; // sass-lint:disable-line no-important
|
|
6172
6280
|
}
|
|
6173
|
-
|
|
6174
|
-
.k-ripple-blob {
|
|
6175
|
-
// sass-lint:disable-block no-important
|
|
6176
|
-
// use !important until ripple can apply these styles from the script
|
|
6177
|
-
top: 50% !important;
|
|
6178
|
-
left: 50% !important;
|
|
6179
|
-
width: 200% !important;
|
|
6180
|
-
height: 200% !important;
|
|
6181
|
-
}
|
|
6182
|
-
}
|
|
6183
|
-
.k-checkbox + .k-checkbox-label {
|
|
6184
|
-
display: inline;
|
|
6185
6281
|
}
|
|
6282
|
+
.k-checkbox + .k-label,
|
|
6283
|
+
.k-checkbox-wrap + .k-label,
|
|
6186
6284
|
.k-checkbox + .k-checkbox-label,
|
|
6187
|
-
.k-checkbox-
|
|
6188
|
-
margin-left: $checkbox-label-margin-x;
|
|
6189
|
-
}
|
|
6190
|
-
.k-checkbox-label > .k-checkbox {
|
|
6191
|
-
margin-right: $checkbox-label-margin-x;
|
|
6192
|
-
flex-shrink: 0;
|
|
6193
|
-
}
|
|
6194
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
6195
|
-
margin-right: 0;
|
|
6196
|
-
}
|
|
6197
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
6198
|
-
margin-right: $checkbox-label-margin-x;
|
|
6199
|
-
}
|
|
6200
|
-
kendo-label.k-checkbox-label > .k-label {
|
|
6285
|
+
.k-checkbox-wrap + .k-checkbox-label {
|
|
6201
6286
|
display: inline;
|
|
6287
|
+
margin-inline-start: $checkbox-label-margin-x;
|
|
6202
6288
|
}
|
|
6203
6289
|
|
|
6204
6290
|
|
|
@@ -6206,9 +6292,6 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6206
6292
|
.k-checkbox-label:empty {
|
|
6207
6293
|
display: none !important; // sass-lint:disable-line no-important
|
|
6208
6294
|
}
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
// Label with no text
|
|
6212
6295
|
.k-checkbox-label.k-no-text {
|
|
6213
6296
|
min-width: 1px;
|
|
6214
6297
|
}
|
|
@@ -6216,73 +6299,62 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6216
6299
|
|
|
6217
6300
|
// Checkbox list
|
|
6218
6301
|
.k-checkbox-list {
|
|
6219
|
-
margin:
|
|
6220
|
-
padding:
|
|
6302
|
+
margin: 0;
|
|
6303
|
+
padding: 0;
|
|
6304
|
+
display: flex;
|
|
6305
|
+
flex-flow: column nowrap;
|
|
6306
|
+
gap: 0;
|
|
6221
6307
|
list-style: none;
|
|
6222
|
-
|
|
6223
|
-
.k-checkbox-item {
|
|
6224
|
-
padding: $checkbox-list-item-padding-y $checkbox-list-item-padding-x;
|
|
6225
|
-
}
|
|
6226
6308
|
}
|
|
6309
|
+
.k-checkbox-item,
|
|
6310
|
+
.k-checkbox-list-item {
|
|
6311
|
+
padding: $checkbox-list-item-padding-y $checkbox-list-item-padding-x;
|
|
6312
|
+
display: flex;
|
|
6313
|
+
flex-flow: row nowrap;
|
|
6314
|
+
align-items: center;
|
|
6315
|
+
align-content: center;
|
|
6316
|
+
gap: map-get( $spacing, 1 );
|
|
6227
6317
|
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
display: inline-block;
|
|
6231
|
-
margin: 0 $checkbox-list-horizontal-item-margin-x 0 0;
|
|
6232
|
-
|
|
6233
|
-
&:last-child {
|
|
6234
|
-
margin-right: 0;
|
|
6235
|
-
}
|
|
6318
|
+
.k-checkbox-label {
|
|
6319
|
+
margin: 0;
|
|
6236
6320
|
}
|
|
6237
6321
|
}
|
|
6322
|
+
.k-checkbox-list-horizontal,
|
|
6323
|
+
.k-checkbox-list.k-list-horizontal {
|
|
6324
|
+
display: flex;
|
|
6325
|
+
flex-flow: row wrap;
|
|
6326
|
+
gap: $checkbox-list-spacing;
|
|
6327
|
+
}
|
|
6238
6328
|
|
|
6239
6329
|
|
|
6240
|
-
//
|
|
6241
|
-
.k-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
.k-checkbox-label + .k-checkbox {
|
|
6245
|
-
margin-left: 0;
|
|
6246
|
-
margin-right: $checkbox-label-margin-x;
|
|
6247
|
-
}
|
|
6248
|
-
.k-checkbox-label > .k-checkbox {
|
|
6249
|
-
margin-right: 0;
|
|
6250
|
-
margin-left: $checkbox-label-margin-x;
|
|
6251
|
-
}
|
|
6252
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
6253
|
-
margin-left: 0;
|
|
6254
|
-
}
|
|
6255
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
6256
|
-
margin-right: 0;
|
|
6257
|
-
margin-left: $checkbox-label-margin-x;
|
|
6258
|
-
}
|
|
6259
|
-
|
|
6260
|
-
.k-list-horizontal {
|
|
6261
|
-
.k-checkbox-item {
|
|
6262
|
-
margin-right: 0;
|
|
6263
|
-
margin-left: $checkbox-list-horizontal-item-margin-x;
|
|
6264
|
-
|
|
6265
|
-
&:last-child {
|
|
6266
|
-
margin-left: 0;
|
|
6267
|
-
}
|
|
6268
|
-
}
|
|
6269
|
-
}
|
|
6330
|
+
// Ripple
|
|
6331
|
+
.k-checkbox-wrap .k-ripple-blob {
|
|
6332
|
+
width: $checkbox-ripple-size;
|
|
6333
|
+
height: $checkbox-ripple-size;
|
|
6270
6334
|
}
|
|
6271
|
-
|
|
6272
6335
|
.k-ripple-container {
|
|
6273
6336
|
.k-checkbox::after {
|
|
6274
6337
|
content: "";
|
|
6275
6338
|
display: block;
|
|
6276
6339
|
position: absolute;
|
|
6277
|
-
left:
|
|
6278
|
-
top:
|
|
6340
|
+
left: 50%;
|
|
6341
|
+
top: 50%;
|
|
6279
6342
|
width: $checkbox-ripple-size;
|
|
6280
6343
|
height: $checkbox-ripple-size;
|
|
6281
|
-
margin-left: $checkbox-ripple-margin;
|
|
6282
|
-
margin-top: $checkbox-ripple-margin;
|
|
6283
6344
|
border-radius: 100%;
|
|
6284
|
-
z-index: 1;
|
|
6285
|
-
|
|
6345
|
+
z-index: -1;
|
|
6346
|
+
transition: opacity 100ms linear, transform 150ms cubic-bezier(.4, 0, .2, 1);
|
|
6347
|
+
transform: translate(-50%, -50%) scale(0);
|
|
6348
|
+
transform-origin: center center;
|
|
6349
|
+
}
|
|
6350
|
+
|
|
6351
|
+
.k-checkbox:focus,
|
|
6352
|
+
.k-checkbox.k-state-focus {
|
|
6353
|
+
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
6354
|
+
|
|
6355
|
+
&::after {
|
|
6356
|
+
transform: translate(-50%, -50%) scale(1);
|
|
6357
|
+
}
|
|
6286
6358
|
}
|
|
6287
6359
|
|
|
6288
6360
|
.k-checkbox:disabled::after,
|
|
@@ -6293,23 +6365,9 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6293
6365
|
|
|
6294
6366
|
}
|
|
6295
6367
|
|
|
6296
|
-
|
|
6297
|
-
|
|
6298
|
-
|
|
6299
|
-
@include exports( "checkbox/layout/edge" ) {
|
|
6300
|
-
|
|
6301
|
-
.k-checkbox::-ms-check {
|
|
6302
|
-
border-width: 1px;
|
|
6303
|
-
border-color: inherit;
|
|
6304
|
-
color: inherit;
|
|
6305
|
-
background-color: inherit;
|
|
6306
|
-
}
|
|
6307
|
-
|
|
6308
|
-
}
|
|
6309
|
-
|
|
6310
6368
|
// #endregion
|
|
6311
6369
|
// #region @import "_theme.scss"; -> packages/default/scss/checkbox/_theme.scss
|
|
6312
|
-
@include exports("checkbox/theme") {
|
|
6370
|
+
@include exports( "checkbox/theme" ) {
|
|
6313
6371
|
|
|
6314
6372
|
// Checkbox
|
|
6315
6373
|
.k-checkbox {
|
|
@@ -6406,9 +6464,13 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6406
6464
|
|
|
6407
6465
|
|
|
6408
6466
|
// Ripple
|
|
6467
|
+
.k-checkbox-wrap .k-ripple-blob {
|
|
6468
|
+
color: $checkbox-ripple-bg;
|
|
6469
|
+
opacity: $checkbox-ripple-opacity;
|
|
6470
|
+
}
|
|
6409
6471
|
.k-ripple-container {
|
|
6410
6472
|
.k-checkbox::after {
|
|
6411
|
-
background: $checkbox-
|
|
6473
|
+
background: $checkbox-ripple-bg;
|
|
6412
6474
|
opacity: $checkbox-ripple-opacity;
|
|
6413
6475
|
}
|
|
6414
6476
|
}
|
|
@@ -6447,10 +6509,9 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6447
6509
|
|
|
6448
6510
|
.k-list__group-header { // sass-lint:disable-line class-name-format
|
|
6449
6511
|
padding: $list-item-padding-y $list-item-padding-x;
|
|
6450
|
-
min-height: $list-line-height-em;
|
|
6451
6512
|
border-bottom-width: 1px;
|
|
6452
6513
|
border-bottom-style: solid;
|
|
6453
|
-
font-size: $font-size;
|
|
6514
|
+
font-size: $list-font-size;
|
|
6454
6515
|
white-space: normal;
|
|
6455
6516
|
position: relative;
|
|
6456
6517
|
transition: $transition;
|
|
@@ -6489,7 +6550,6 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6489
6550
|
|
|
6490
6551
|
.k-list__item { // sass-lint:disable-line class-name-format
|
|
6491
6552
|
padding: $list-item-padding-y $list-item-padding-x;
|
|
6492
|
-
min-height: $list-line-height-em;
|
|
6493
6553
|
line-height: $list-line-height;
|
|
6494
6554
|
white-space: normal;
|
|
6495
6555
|
display: flex;
|
|
@@ -6503,12 +6563,6 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6503
6563
|
transition-timing-function: ease;
|
|
6504
6564
|
outline: none;
|
|
6505
6565
|
|
|
6506
|
-
.k-checkbox {
|
|
6507
|
-
margin-top: calc( ( #{$list-line-height-em} - #{$checkbox-size} ) / 2 );
|
|
6508
|
-
font-size: inherit;
|
|
6509
|
-
align-self: flex-start;
|
|
6510
|
-
}
|
|
6511
|
-
|
|
6512
6566
|
&.k-first::before {
|
|
6513
6567
|
content: "";
|
|
6514
6568
|
display: block;
|
|
@@ -6591,34 +6645,9 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6591
6645
|
}
|
|
6592
6646
|
|
|
6593
6647
|
|
|
6648
|
+
// No data
|
|
6594
6649
|
.k-list-container {
|
|
6595
|
-
|
|
6596
|
-
.k-button {
|
|
6597
|
-
@include border-radius( 0 );
|
|
6598
|
-
padding: $list-item-padding-y $list-item-padding-x;
|
|
6599
|
-
border-width: 0;
|
|
6600
|
-
color: inherit;
|
|
6601
|
-
background-color: transparent;
|
|
6602
|
-
background-image: none;
|
|
6603
|
-
line-height: inherit;
|
|
6604
|
-
display: flex;
|
|
6605
|
-
justify-content: flex-start;
|
|
6606
|
-
|
|
6607
|
-
.k-ie11 & {
|
|
6608
|
-
display: flex;
|
|
6609
|
-
|
|
6610
|
-
.k-icon {
|
|
6611
|
-
margin: 0 $icon-spacing 0 0;
|
|
6612
|
-
}
|
|
6613
|
-
}
|
|
6614
|
-
}
|
|
6615
|
-
|
|
6616
|
-
// Button disabled state
|
|
6617
|
-
.k-button.k-state-disabled {
|
|
6618
|
-
pointer-events: none;
|
|
6619
|
-
}
|
|
6620
|
-
|
|
6621
|
-
.k-nodata {
|
|
6650
|
+
.k-no-data {
|
|
6622
6651
|
min-height: 138px;
|
|
6623
6652
|
width: 100%;
|
|
6624
6653
|
display: flex;
|
|
@@ -6628,14 +6657,15 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6628
6657
|
font-weight: lighter;
|
|
6629
6658
|
text-align: center;
|
|
6630
6659
|
white-space: normal;
|
|
6631
|
-
|
|
6632
|
-
.k-button {
|
|
6633
|
-
display: inline-flex;
|
|
6634
|
-
border-width: 1px;
|
|
6635
|
-
}
|
|
6636
6660
|
}
|
|
6637
6661
|
}
|
|
6638
6662
|
|
|
6663
|
+
|
|
6664
|
+
// Alias
|
|
6665
|
+
.k-nodata {
|
|
6666
|
+
@extend .k-no-data !optional;
|
|
6667
|
+
}
|
|
6668
|
+
|
|
6639
6669
|
}
|
|
6640
6670
|
|
|
6641
6671
|
// #endregion
|
|
@@ -6647,7 +6677,7 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6647
6677
|
.k-list__group-header { // sass-lint:disable-line class-name-format
|
|
6648
6678
|
color: $component-text;
|
|
6649
6679
|
border-color: $component-border;
|
|
6650
|
-
box-shadow: $list-
|
|
6680
|
+
box-shadow: $list-header-shadow;
|
|
6651
6681
|
}
|
|
6652
6682
|
|
|
6653
6683
|
.k-list__item__group { // sass-lint:disable-line class-name-format
|
|
@@ -6737,8 +6767,9 @@ $checkbox-ripple-opacity: .3 !default;
|
|
|
6737
6767
|
}
|
|
6738
6768
|
|
|
6739
6769
|
|
|
6740
|
-
|
|
6741
|
-
|
|
6770
|
+
// No data
|
|
6771
|
+
.k-no-data {
|
|
6772
|
+
color: $list-no-data-text;
|
|
6742
6773
|
}
|
|
6743
6774
|
|
|
6744
6775
|
}
|
|
@@ -7351,13 +7382,13 @@ $button-active-shadow: null !default;
|
|
|
7351
7382
|
|
|
7352
7383
|
/// The background color of selected buttons.
|
|
7353
7384
|
/// @group button
|
|
7354
|
-
$button-selected-bg: $
|
|
7385
|
+
$button-selected-bg: $button-active-bg !default;
|
|
7355
7386
|
/// The text color of selected buttons.
|
|
7356
7387
|
/// @group button
|
|
7357
|
-
$button-selected-text:
|
|
7388
|
+
$button-selected-text: $button-active-text !default;
|
|
7358
7389
|
/// The border color of selected buttons.
|
|
7359
7390
|
/// @group button
|
|
7360
|
-
$button-selected-border: $button-
|
|
7391
|
+
$button-selected-border: $button-active-border !default;
|
|
7361
7392
|
/// The background gradient of selected buttons.
|
|
7362
7393
|
/// @group button
|
|
7363
7394
|
$button-selected-gradient: null !default;
|
|
@@ -7421,7 +7452,7 @@ $clear-button-focused-opacity: .1 !default;
|
|
|
7421
7452
|
// #region @import "_variables.scss"; -> packages/default/scss/input/_variables.scss
|
|
7422
7453
|
// Input
|
|
7423
7454
|
|
|
7424
|
-
$input-default-width:
|
|
7455
|
+
$input-default-width: 10em !default;
|
|
7425
7456
|
|
|
7426
7457
|
$input-border-width: 1px !default;
|
|
7427
7458
|
$input-border-height: ( $input-border-width * 2 ) !default;
|
|
@@ -7432,19 +7463,19 @@ $input-border-radius-lg: $border-radius !default;
|
|
|
7432
7463
|
$input-padding-x: $padding-x !default;
|
|
7433
7464
|
$input-padding-y: $padding-y !default;
|
|
7434
7465
|
$input-font-family: $font-family !default;
|
|
7435
|
-
$input-font-size: $font-size !default;
|
|
7436
|
-
$input-line-height: $line-height !default;
|
|
7466
|
+
$input-font-size: $font-size-md !default;
|
|
7467
|
+
$input-line-height: $line-height-md !default;
|
|
7437
7468
|
$input-line-height-em: $input-line-height * 1em !default;
|
|
7438
7469
|
|
|
7439
7470
|
$input-padding-x-sm: ($input-padding-x / 2) !default;
|
|
7440
7471
|
$input-padding-y-sm: ($input-padding-y / 2) !default;
|
|
7441
7472
|
$input-font-size-sm: $input-font-size !default;
|
|
7442
|
-
$input-line-height-sm: $line-height
|
|
7473
|
+
$input-line-height-sm: $input-line-height !default;
|
|
7443
7474
|
|
|
7444
7475
|
$input-padding-x-lg: ($input-padding-x * 1.5) !default;
|
|
7445
7476
|
$input-padding-y-lg: ($input-padding-y * 1.5) !default;
|
|
7446
7477
|
$input-font-size-lg: $input-font-size !default;
|
|
7447
|
-
$input-line-height-lg: $line-height
|
|
7478
|
+
$input-line-height-lg: $input-line-height !default;
|
|
7448
7479
|
|
|
7449
7480
|
$input-calc-height: calc( #{$input-line-height * 1em} + #{$input-padding-y * 2} + #{$input-border-height} ) !default;
|
|
7450
7481
|
$input-calc-height-sm: calc( #{$input-line-height-sm * 1em} + #{$input-padding-y-sm * 2} + #{$input-border-height} ) !default;
|
|
@@ -7583,9 +7614,9 @@ $input-separator-opacity: .5 !default;
|
|
|
7583
7614
|
.k-input-prefix,
|
|
7584
7615
|
.k-input-suffix {
|
|
7585
7616
|
display: flex;
|
|
7617
|
+
flex-flow: row nowrap;
|
|
7586
7618
|
align-items: center;
|
|
7587
7619
|
flex-shrink: 0;
|
|
7588
|
-
height: $button-inner-calc-size;
|
|
7589
7620
|
|
|
7590
7621
|
> * {
|
|
7591
7622
|
flex-shrink: 0;
|
|
@@ -8176,7 +8207,7 @@ $menu-item-expanded-gradient: null !default;
|
|
|
8176
8207
|
|
|
8177
8208
|
$menu-item-focus-shadow: $list-item-focused-shadow !default;
|
|
8178
8209
|
|
|
8179
|
-
$menu-separator-spacing:
|
|
8210
|
+
$menu-separator-spacing: map-get( $spacing, 1 ) !default;
|
|
8180
8211
|
|
|
8181
8212
|
$menu-scroll-button-bg: $component-bg !default;
|
|
8182
8213
|
$menu-scroll-button-text: $link-text !default;
|
|
@@ -8344,8 +8375,6 @@ $grid-edit-cell-padding-y: 3px !default;
|
|
|
8344
8375
|
|
|
8345
8376
|
$grid-command-cell-button-spacing: map-get( $spacing, 2 ) !default;
|
|
8346
8377
|
|
|
8347
|
-
$grid-search-width: $input-default-width !default;
|
|
8348
|
-
|
|
8349
8378
|
$grid-sticky-bg: $component-bg !default;
|
|
8350
8379
|
$grid-sticky-text: $grid-text !default;
|
|
8351
8380
|
$grid-sticky-border: rgba( black, .3 ) !default;
|
|
@@ -8365,7 +8394,7 @@ $grid-sticky-selected-alt-bg: shade($grid-sticky-selected-bg, .4) !default;
|
|
|
8365
8394
|
$grid-sticky-hovered-bg: darken($grid-bg, 8%) !default;
|
|
8366
8395
|
$grid-sticky-selected-hovered-bg: shade($grid-sticky-selected-bg, .7) !default;
|
|
8367
8396
|
|
|
8368
|
-
$grid-
|
|
8397
|
+
$grid-column-menu-width: 230px !default;
|
|
8369
8398
|
|
|
8370
8399
|
$grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
8371
8400
|
|
|
@@ -8466,13 +8495,13 @@ $table-footer-border: $grid-footer-border !default;
|
|
|
8466
8495
|
|
|
8467
8496
|
/// Background color of group rows in table.
|
|
8468
8497
|
/// @group table
|
|
8469
|
-
$table-group-row-bg: $
|
|
8498
|
+
$table-group-row-bg: $table-header-bg !default;
|
|
8470
8499
|
/// Text color of group rows in table.
|
|
8471
8500
|
/// @group table
|
|
8472
|
-
$table-group-row-text: $
|
|
8501
|
+
$table-group-row-text: $table-header-text !default;
|
|
8473
8502
|
/// Border color of group rows in table.
|
|
8474
8503
|
/// @group table
|
|
8475
|
-
$table-group-row-border:
|
|
8504
|
+
$table-group-row-border: $table-header-border !default;
|
|
8476
8505
|
|
|
8477
8506
|
|
|
8478
8507
|
/// Background color of alternating rows in table.
|
|
@@ -8523,7 +8552,7 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8523
8552
|
|
|
8524
8553
|
// #endregion
|
|
8525
8554
|
// #region @import "_layout.scss"; -> packages/default/scss/table/_layout.scss
|
|
8526
|
-
@include exports("table/layout") {
|
|
8555
|
+
@include exports( "table/layout" ) {
|
|
8527
8556
|
|
|
8528
8557
|
// Table
|
|
8529
8558
|
.k-table {
|
|
@@ -8555,12 +8584,11 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8555
8584
|
// Table native parts
|
|
8556
8585
|
.k-table-thead,
|
|
8557
8586
|
.k-table-tbody,
|
|
8558
|
-
.k-table-tfoot
|
|
8559
|
-
text-align: inherit;
|
|
8560
|
-
}
|
|
8587
|
+
.k-table-tfoot,
|
|
8561
8588
|
.k-table-row,
|
|
8562
8589
|
.k-table-alt-row {
|
|
8563
8590
|
border-color: inherit;
|
|
8591
|
+
text-align: inherit;
|
|
8564
8592
|
}
|
|
8565
8593
|
.k-table-th,
|
|
8566
8594
|
.k-table-td {
|
|
@@ -8581,6 +8609,9 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8581
8609
|
border-left-width: 0;
|
|
8582
8610
|
}
|
|
8583
8611
|
}
|
|
8612
|
+
.k-table-th {
|
|
8613
|
+
border-bottom-width: 1px;
|
|
8614
|
+
}
|
|
8584
8615
|
|
|
8585
8616
|
|
|
8586
8617
|
// Table header
|
|
@@ -8599,8 +8630,27 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8599
8630
|
width: 100%;
|
|
8600
8631
|
border-width: 0 $table-cell-vertical-border-width 0 0;
|
|
8601
8632
|
border-style: solid;
|
|
8633
|
+
border-color: inherit;
|
|
8602
8634
|
overflow: hidden;
|
|
8603
8635
|
}
|
|
8636
|
+
.k-table-header,
|
|
8637
|
+
.k-table-header-wrap {
|
|
8638
|
+
> .k-table {
|
|
8639
|
+
margin-bottom: -1px;
|
|
8640
|
+
}
|
|
8641
|
+
}
|
|
8642
|
+
.k-table-group-sticky-header {
|
|
8643
|
+
font-size: $table-font-size;
|
|
8644
|
+
line-height: $line-height;
|
|
8645
|
+
flex: none;
|
|
8646
|
+
|
|
8647
|
+
.k-table-th {
|
|
8648
|
+
display: flex;
|
|
8649
|
+
flex-flow: row nowrap;
|
|
8650
|
+
align-items: center;
|
|
8651
|
+
align-content: center;
|
|
8652
|
+
}
|
|
8653
|
+
}
|
|
8604
8654
|
|
|
8605
8655
|
|
|
8606
8656
|
// Table list
|
|
@@ -8637,7 +8687,7 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8637
8687
|
.k-table-group-row {
|
|
8638
8688
|
|
|
8639
8689
|
&::before {
|
|
8640
|
-
content: "
|
|
8690
|
+
content: "\200b";
|
|
8641
8691
|
padding: $table-cell-padding-y 0;
|
|
8642
8692
|
width: 0;
|
|
8643
8693
|
display: block;
|
|
@@ -8679,7 +8729,8 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8679
8729
|
|
|
8680
8730
|
|
|
8681
8731
|
// Virtualization
|
|
8682
|
-
.k-virtual-table .k-table-row
|
|
8732
|
+
.k-virtual-table .k-table-row,
|
|
8733
|
+
.k-virtual-table .k-table-group-row {
|
|
8683
8734
|
position: absolute;
|
|
8684
8735
|
width: 100%;
|
|
8685
8736
|
}
|
|
@@ -8712,6 +8763,7 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8712
8763
|
width: 100%;
|
|
8713
8764
|
border-width: 0 $table-cell-vertical-border-width 0 0;
|
|
8714
8765
|
border-style: solid;
|
|
8766
|
+
border-color: inherit;
|
|
8715
8767
|
overflow: hidden;
|
|
8716
8768
|
}
|
|
8717
8769
|
|
|
@@ -8754,7 +8806,7 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8754
8806
|
|
|
8755
8807
|
// #endregion
|
|
8756
8808
|
// #region @import "_theme.scss"; -> packages/default/scss/table/_theme.scss
|
|
8757
|
-
@include exports("table/theme") {
|
|
8809
|
+
@include exports( "table/theme" ) {
|
|
8758
8810
|
|
|
8759
8811
|
// Table
|
|
8760
8812
|
.k-table,
|
|
@@ -8767,7 +8819,8 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8767
8819
|
|
|
8768
8820
|
// Table header
|
|
8769
8821
|
.k-table-thead,
|
|
8770
|
-
.k-table-header
|
|
8822
|
+
.k-table-header,
|
|
8823
|
+
.k-table-group-sticky-header {
|
|
8771
8824
|
border-color: $table-header-border;
|
|
8772
8825
|
color: $table-header-text;
|
|
8773
8826
|
background-color: $table-header-bg;
|
|
@@ -8918,14 +8971,24 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8918
8971
|
// Component
|
|
8919
8972
|
// #region @import "_variables.scss"; -> packages/default/scss/avatar/_variables.scss
|
|
8920
8973
|
// Avatar
|
|
8974
|
+
|
|
8975
|
+
/// Border width of the avatar.
|
|
8976
|
+
/// @group avatar
|
|
8921
8977
|
$avatar-border-width: 1px !default;
|
|
8922
8978
|
$avatar-border-radius: 2px !default;
|
|
8923
8979
|
|
|
8980
|
+
/// Font family of the avatar.
|
|
8981
|
+
/// @group avatar
|
|
8924
8982
|
$avatar-font-family: $font-family !default;
|
|
8983
|
+
/// Font size of the avatar.
|
|
8984
|
+
/// @group avatar
|
|
8925
8985
|
$avatar-font-size: $font-size !default;
|
|
8986
|
+
/// Line height of the avatar.
|
|
8987
|
+
/// @group avatar
|
|
8926
8988
|
$avatar-line-height: $line-height !default;
|
|
8927
8989
|
|
|
8928
|
-
|
|
8990
|
+
/// The sizes of the avatar.
|
|
8991
|
+
/// @group avatar
|
|
8929
8992
|
$avatar-sizes: (
|
|
8930
8993
|
sm: map-get( $spacing, 4 ),
|
|
8931
8994
|
md: map-get( $spacing, 8 ),
|
|
@@ -10816,7 +10879,7 @@ $skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
|
10816
10879
|
transform: $skeleton-text-transform;
|
|
10817
10880
|
|
|
10818
10881
|
&:empty::before {
|
|
10819
|
-
content: "\
|
|
10882
|
+
content: "\200b";
|
|
10820
10883
|
}
|
|
10821
10884
|
}
|
|
10822
10885
|
|
|
@@ -11099,8 +11162,6 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11099
11162
|
.k-icon-button,
|
|
11100
11163
|
.k-button.k-button-icon {
|
|
11101
11164
|
padding: $button-padding-y;
|
|
11102
|
-
width: $button-calc-size;
|
|
11103
|
-
height: $button-calc-size;
|
|
11104
11165
|
gap: 0;
|
|
11105
11166
|
|
|
11106
11167
|
> .k-text,
|
|
@@ -11110,6 +11171,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11110
11171
|
|
|
11111
11172
|
.k-button-icon {
|
|
11112
11173
|
margin: 0;
|
|
11174
|
+
min-width: calc( #{$button-font-size} * #{$button-line-height} );
|
|
11175
|
+
min-height: calc( #{$button-font-size} * #{$button-line-height} );
|
|
11113
11176
|
}
|
|
11114
11177
|
}
|
|
11115
11178
|
// TODO: REMOVE
|
|
@@ -11857,8 +11920,9 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11857
11920
|
@include border-radius( 0 );
|
|
11858
11921
|
margin: 0;
|
|
11859
11922
|
padding: $toolbar-padding-y;
|
|
11860
|
-
width:
|
|
11923
|
+
width: auto;
|
|
11861
11924
|
height: 100%;
|
|
11925
|
+
aspect-ratio: 1;
|
|
11862
11926
|
border-width: 0;
|
|
11863
11927
|
border-color: inherit;
|
|
11864
11928
|
box-sizing: border-box;
|
|
@@ -11932,6 +11996,14 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11932
11996
|
// Overflow container
|
|
11933
11997
|
.k-overflow-container {
|
|
11934
11998
|
|
|
11999
|
+
> .k-item {
|
|
12000
|
+
border-color: inherit;
|
|
12001
|
+
}
|
|
12002
|
+
|
|
12003
|
+
.k-separator {
|
|
12004
|
+
margin: map-get( $spacing, 1 ) 0;
|
|
12005
|
+
}
|
|
12006
|
+
|
|
11935
12007
|
// Group
|
|
11936
12008
|
.k-overflow-tool-group {
|
|
11937
12009
|
display: block;
|
|
@@ -11939,13 +12011,23 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11939
12011
|
|
|
11940
12012
|
// Button
|
|
11941
12013
|
.k-overflow-button {
|
|
12014
|
+
@include border-radius( 0 );
|
|
12015
|
+
padding: $list-item-padding-y $list-item-padding-x;
|
|
11942
12016
|
width: 100%;
|
|
12017
|
+
border-width: 0;
|
|
12018
|
+
color: inherit;
|
|
12019
|
+
background-color: transparent;
|
|
12020
|
+
background-image: none;
|
|
12021
|
+
line-height: inherit;
|
|
12022
|
+
display: flex;
|
|
12023
|
+
justify-content: flex-start;
|
|
11943
12024
|
}
|
|
11944
12025
|
|
|
11945
12026
|
// Button group
|
|
11946
12027
|
.k-button-group {
|
|
12028
|
+
@include box-shadow( none );
|
|
11947
12029
|
display: flex;
|
|
11948
|
-
flex-
|
|
12030
|
+
flex-flow: column nowrap;
|
|
11949
12031
|
|
|
11950
12032
|
.k-button {
|
|
11951
12033
|
margin: if( $button-border-width == 0, null, 0);
|
|
@@ -12036,13 +12118,6 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
12036
12118
|
@include box-shadow( $toolbar-shadow );
|
|
12037
12119
|
|
|
12038
12120
|
|
|
12039
|
-
// Overflow anchor
|
|
12040
|
-
.k-overflow-anchor {
|
|
12041
|
-
color: inherit;
|
|
12042
|
-
background: transparent;
|
|
12043
|
-
}
|
|
12044
|
-
|
|
12045
|
-
|
|
12046
12121
|
// Separator
|
|
12047
12122
|
.k-separator {
|
|
12048
12123
|
border-color: $toolbar-separator-border;
|
|
@@ -12054,6 +12129,41 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
12054
12129
|
|
|
12055
12130
|
}
|
|
12056
12131
|
|
|
12132
|
+
|
|
12133
|
+
// Overflow container
|
|
12134
|
+
.k-overflow-container {
|
|
12135
|
+
|
|
12136
|
+
.k-button {
|
|
12137
|
+
|
|
12138
|
+
// Hover state
|
|
12139
|
+
&:hover,
|
|
12140
|
+
&.k-state-hover {
|
|
12141
|
+
color: $list-item-hovered-text;
|
|
12142
|
+
background: $list-item-hovered-bg;
|
|
12143
|
+
}
|
|
12144
|
+
|
|
12145
|
+
// Active state
|
|
12146
|
+
&:active,
|
|
12147
|
+
&.k-state-active {
|
|
12148
|
+
color: $list-item-selected-text;
|
|
12149
|
+
background: $list-item-selected-bg;
|
|
12150
|
+
}
|
|
12151
|
+
|
|
12152
|
+
// Button focus state
|
|
12153
|
+
.k-button:focus,
|
|
12154
|
+
.k-button.k-state-focused {
|
|
12155
|
+
box-shadow: $list-item-focused-shadow;
|
|
12156
|
+
}
|
|
12157
|
+
|
|
12158
|
+
// Disabled state
|
|
12159
|
+
&:disabled,
|
|
12160
|
+
&.k-state-disabled {
|
|
12161
|
+
color: inherit;
|
|
12162
|
+
}
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12165
|
+
}
|
|
12166
|
+
|
|
12057
12167
|
}
|
|
12058
12168
|
|
|
12059
12169
|
|
|
@@ -12211,7 +12321,7 @@ $window-titlebar-border-width: 0 0 1px !default;
|
|
|
12211
12321
|
$window-titlebar-border-style: solid !default;
|
|
12212
12322
|
|
|
12213
12323
|
$window-title-font-size: $font-size-lg !default;
|
|
12214
|
-
$window-title-line-height:
|
|
12324
|
+
$window-title-line-height: 1.25 !default;
|
|
12215
12325
|
|
|
12216
12326
|
$window-actions-gap: null !default;
|
|
12217
12327
|
|
|
@@ -12384,10 +12494,6 @@ $fieldset-legend-border: null !default;
|
|
|
12384
12494
|
display: flex;
|
|
12385
12495
|
flex-flow: row nowrap;
|
|
12386
12496
|
}
|
|
12387
|
-
.k-checkbox-label,
|
|
12388
|
-
.k-radio-label {
|
|
12389
|
-
display: inline-flex;
|
|
12390
|
-
}
|
|
12391
12497
|
|
|
12392
12498
|
.k-label + .k-radio {
|
|
12393
12499
|
margin-left: 0;
|
|
@@ -12422,13 +12528,11 @@ $fieldset-legend-border: null !default;
|
|
|
12422
12528
|
padding: 0;
|
|
12423
12529
|
}
|
|
12424
12530
|
|
|
12425
|
-
.k-form-field
|
|
12426
|
-
.k-daterangepicker .k-textbox-container {
|
|
12531
|
+
.k-form-field {
|
|
12427
12532
|
margin-top: $form-field-margin-top;
|
|
12428
12533
|
}
|
|
12429
12534
|
|
|
12430
|
-
>
|
|
12431
|
-
.k-daterangepicker .k-textbox-container {
|
|
12535
|
+
> * {
|
|
12432
12536
|
&:not(.k-hidden):first-child,
|
|
12433
12537
|
&.k-hidden + :not(.k-hidden) {
|
|
12434
12538
|
margin-top: 0;
|
|
@@ -12470,7 +12574,6 @@ $fieldset-legend-border: null !default;
|
|
|
12470
12574
|
.k-dateinput,
|
|
12471
12575
|
.k-datepicker,
|
|
12472
12576
|
.k-datetimepicker,
|
|
12473
|
-
.k-daterangepicker-wrap,
|
|
12474
12577
|
.k-timepicker,
|
|
12475
12578
|
.k-numerictextbox,
|
|
12476
12579
|
.k-maskedtextbox,
|
|
@@ -12479,6 +12582,11 @@ $fieldset-legend-border: null !default;
|
|
|
12479
12582
|
display: inline-flex;
|
|
12480
12583
|
width: 100%;
|
|
12481
12584
|
}
|
|
12585
|
+
.k-daterangepicker {
|
|
12586
|
+
width: 100%;
|
|
12587
|
+
flex-flow: column nowrap;
|
|
12588
|
+
gap: 0;
|
|
12589
|
+
}
|
|
12482
12590
|
}
|
|
12483
12591
|
|
|
12484
12592
|
// Form Buttons Container
|
|
@@ -13507,7 +13615,7 @@ $textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
|
13507
13615
|
// Listbox
|
|
13508
13616
|
$listbox-margin: $padding-x !default;
|
|
13509
13617
|
$listbox-button-margin: $padding-x !default;
|
|
13510
|
-
$listbox-width:
|
|
13618
|
+
$listbox-width: 10em !default;
|
|
13511
13619
|
$listbox-default-height: 200px !default;
|
|
13512
13620
|
|
|
13513
13621
|
$listbox-border-width: 1px !default;
|
|
@@ -14014,56 +14122,109 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
14014
14122
|
// Component
|
|
14015
14123
|
// #region @import "_variables.scss"; -> packages/default/scss/radio/_variables.scss
|
|
14016
14124
|
// Radio button
|
|
14125
|
+
|
|
14017
14126
|
$radio-size: map-get( $spacing, 4 ) !default;
|
|
14127
|
+
/// Border radius of radio button.
|
|
14128
|
+
/// @group radio
|
|
14018
14129
|
$radio-radius: 50% !default;
|
|
14130
|
+
/// Border width of radio button.
|
|
14131
|
+
/// @group radio
|
|
14019
14132
|
$radio-border-width: 1px !default;
|
|
14020
|
-
$radio-line-height: calc(#{$radio-size} + #{$radio-border-width}) !default;
|
|
14021
14133
|
|
|
14134
|
+
/// Background color of radio button.
|
|
14135
|
+
/// @group radio
|
|
14022
14136
|
$radio-bg: $checkbox-bg !default;
|
|
14137
|
+
/// Color of radio button.
|
|
14138
|
+
/// @group radio
|
|
14023
14139
|
$radio-text: $checkbox-text !default;
|
|
14140
|
+
/// Border color of radio button.
|
|
14141
|
+
/// @group radio
|
|
14024
14142
|
$radio-border: $checkbox-border !default;
|
|
14025
14143
|
|
|
14144
|
+
/// Background color of hovered radio button.
|
|
14145
|
+
/// @group radio
|
|
14026
14146
|
$radio-hovered-bg: $checkbox-hovered-bg !default;
|
|
14147
|
+
/// Color of hovered radio button.
|
|
14148
|
+
/// @group radio
|
|
14027
14149
|
$radio-hovered-text: $checkbox-hovered-text !default;
|
|
14150
|
+
/// Border color of hovered radio button.
|
|
14151
|
+
/// @group radio
|
|
14028
14152
|
$radio-hovered-border: $checkbox-hovered-border !default;
|
|
14029
14153
|
|
|
14154
|
+
/// Background color of checked radio button.
|
|
14155
|
+
/// @group radio
|
|
14030
14156
|
$radio-checked-bg: $checkbox-checked-bg !default;
|
|
14157
|
+
/// Color of checked radio button.
|
|
14158
|
+
/// @group radio
|
|
14031
14159
|
$radio-checked-text: $checkbox-checked-text !default;
|
|
14160
|
+
/// Border color of checked radio button.
|
|
14161
|
+
/// @group radio
|
|
14032
14162
|
$radio-checked-border: $checkbox-checked-border !default;
|
|
14033
14163
|
|
|
14034
|
-
|
|
14035
|
-
|
|
14036
|
-
$radio-indeterminate-border: $radio-checked-border !default;
|
|
14037
|
-
|
|
14164
|
+
/// Border color of focused radio button.
|
|
14165
|
+
/// @group radio
|
|
14038
14166
|
$radio-focused-border: $checkbox-hovered-border !default;
|
|
14167
|
+
/// Box shadow of focused radio button.
|
|
14168
|
+
/// @group radio
|
|
14039
14169
|
$radio-focused-shadow: $checkbox-focused-shadow !default;
|
|
14170
|
+
/// Border color of focused and checked radio button.
|
|
14171
|
+
/// @group radio
|
|
14040
14172
|
$radio-focused-checked-border: $checkbox-checked-border !default;
|
|
14173
|
+
/// Box shadow of focused and checked radio button.
|
|
14174
|
+
/// @group radio
|
|
14041
14175
|
$radio-focused-checked-shadow: $checkbox-focused-checked-shadow !default;
|
|
14042
14176
|
|
|
14043
|
-
|
|
14044
|
-
|
|
14045
|
-
$radio-disabled-
|
|
14046
|
-
|
|
14047
|
-
|
|
14048
|
-
$radio-disabled-
|
|
14049
|
-
|
|
14177
|
+
/// Background color of disabled radio button.
|
|
14178
|
+
/// @group radio
|
|
14179
|
+
$radio-disabled-bg: $checkbox-disabled-bg !default;
|
|
14180
|
+
/// Color of disabled radio button.
|
|
14181
|
+
/// @group radio
|
|
14182
|
+
$radio-disabled-text: $checkbox-disabled-text !default;
|
|
14183
|
+
/// Border color of disabled radio button.
|
|
14184
|
+
/// @group radio
|
|
14185
|
+
$radio-disabled-border: $checkbox-disabled-border !default;
|
|
14186
|
+
|
|
14187
|
+
/// Background color of disabled and checked radio button.
|
|
14188
|
+
/// @group radio
|
|
14189
|
+
$radio-disabled-checked-bg: $checkbox-disabled-checked-bg !default;
|
|
14190
|
+
/// Color of disabled and checked radio button.
|
|
14191
|
+
/// @group radio
|
|
14192
|
+
$radio-disabled-checked-text: $checkbox-disabled-checked-text !default;
|
|
14193
|
+
/// Border color of disabled and checked radio button.
|
|
14194
|
+
/// @group radio
|
|
14195
|
+
$radio-disabled-checked-border: $checkbox-disabled-checked-border !default;
|
|
14196
|
+
|
|
14197
|
+
/// Background color of invalid radio button.
|
|
14198
|
+
/// @group radio
|
|
14199
|
+
$radio-invalid-bg: $checkbox-invalid-bg !default;
|
|
14200
|
+
/// Color of invalid radio button.
|
|
14201
|
+
/// @group radio
|
|
14202
|
+
$radio-invalid-text: $checkbox-invalid-text !default;
|
|
14203
|
+
/// Border color of invalid radio button.
|
|
14204
|
+
/// @group radio
|
|
14205
|
+
$radio-invalid-border: $checkbox-invalid-border !default;
|
|
14050
14206
|
|
|
14051
|
-
|
|
14052
|
-
$radio-invalid-text: $invalid-text !default;
|
|
14053
|
-
$radio-invalid-border: $invalid-border !default;
|
|
14207
|
+
// Radio indicator
|
|
14054
14208
|
|
|
14209
|
+
/// Type of radio button indicator.
|
|
14210
|
+
/// @group radio
|
|
14211
|
+
$radio-indicator-type: image !default;
|
|
14055
14212
|
|
|
14056
|
-
// Radio indicator
|
|
14057
|
-
$radio-icon-type: marker !default;
|
|
14058
14213
|
|
|
14214
|
+
/// Glyph font family of radio button indicator.
|
|
14215
|
+
/// @group radio
|
|
14059
14216
|
$radio-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
14060
14217
|
$radio-glyph-size: 12px !default;
|
|
14218
|
+
/// Glyph of radio button indicator.
|
|
14219
|
+
/// @group radio
|
|
14061
14220
|
$radio-checked-glyph: "\e308" !default;
|
|
14062
14221
|
|
|
14063
|
-
|
|
14064
|
-
|
|
14065
|
-
$radio-
|
|
14066
|
-
|
|
14222
|
+
/// Image of checked radio button indicator.
|
|
14223
|
+
/// @group radio
|
|
14224
|
+
$radio-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$radio-checked-text}'/></svg>") ) !default;
|
|
14225
|
+
/// Image of disabled and checked radio button indicator.
|
|
14226
|
+
/// @group radio
|
|
14227
|
+
$radio-disabled-checked-image: null !default;
|
|
14067
14228
|
|
|
14068
14229
|
|
|
14069
14230
|
// Radio label
|
|
@@ -14071,17 +14232,26 @@ $radio-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
|
14071
14232
|
|
|
14072
14233
|
|
|
14073
14234
|
// Radio list
|
|
14074
|
-
|
|
14075
|
-
|
|
14235
|
+
|
|
14236
|
+
/// Spacing between items of horizontal radio button list.
|
|
14237
|
+
/// @group radio
|
|
14238
|
+
$radio-list-spacing: map-get( $spacing, 4 ) !default;
|
|
14239
|
+
/// Horizontal padding of radio button list items.
|
|
14240
|
+
/// @group radio
|
|
14076
14241
|
$radio-list-item-padding-x: 0px !default;
|
|
14242
|
+
/// Vertical padding of radio button list items.
|
|
14243
|
+
/// @group radio
|
|
14077
14244
|
$radio-list-item-padding-y: $list-item-padding-y !default;
|
|
14078
|
-
$radio-list-horizontal-item-margin-x: 32px !default;
|
|
14079
14245
|
|
|
14080
14246
|
|
|
14081
14247
|
// Radio ripple
|
|
14082
14248
|
$radio-ripple-size: $radio-size * 3 !default;
|
|
14083
|
-
|
|
14084
|
-
|
|
14249
|
+
/// Background color of radio button ripple.
|
|
14250
|
+
/// @group radio
|
|
14251
|
+
$radio-ripple-bg: $radio-checked-bg !default;
|
|
14252
|
+
/// Opacity of radio button ripple.
|
|
14253
|
+
/// @group radio
|
|
14254
|
+
$radio-ripple-opacity: .25 !default;
|
|
14085
14255
|
|
|
14086
14256
|
// #endregion
|
|
14087
14257
|
// #region @import "_layout.scss"; -> packages/default/scss/radio/_layout.scss
|
|
@@ -14110,9 +14280,10 @@ $radio-ripple-opacity: .3 !default;
|
|
|
14110
14280
|
-webkit-appearance: none;
|
|
14111
14281
|
}
|
|
14112
14282
|
|
|
14283
|
+
|
|
14113
14284
|
// Radio indicator
|
|
14114
14285
|
.k-radio::before {
|
|
14115
|
-
@if $radio-
|
|
14286
|
+
@if $radio-indicator-type == "glyph" {
|
|
14116
14287
|
content: $radio-checked-glyph;
|
|
14117
14288
|
width: $radio-glyph-size;
|
|
14118
14289
|
height: $radio-glyph-size;
|
|
@@ -14125,179 +14296,151 @@ $radio-ripple-opacity: .3 !default;
|
|
|
14125
14296
|
top: 50%;
|
|
14126
14297
|
left: 50%;
|
|
14127
14298
|
}
|
|
14128
|
-
|
|
14129
|
-
@if $radio-icon-type == "marker" {
|
|
14130
|
-
content: "";
|
|
14131
|
-
width: $radio-marker-checked-width;
|
|
14132
|
-
height: $radio-marker-checked-width;
|
|
14133
|
-
border-radius: 50%;
|
|
14134
|
-
background-color: currentColor;
|
|
14135
|
-
transform: scale(0) translate(-50%, -50%);
|
|
14136
|
-
overflow: hidden;
|
|
14137
|
-
position: absolute;
|
|
14138
|
-
top: 50%;
|
|
14139
|
-
left: 50%;
|
|
14140
|
-
}
|
|
14141
14299
|
}
|
|
14142
14300
|
|
|
14301
|
+
|
|
14143
14302
|
// Checked state
|
|
14144
14303
|
.k-radio:checked,
|
|
14145
14304
|
.k-radio.k-checked {
|
|
14146
|
-
@if $radio-
|
|
14305
|
+
@if $radio-indicator-type == "image" {
|
|
14147
14306
|
background-image: $radio-checked-image;
|
|
14148
14307
|
}
|
|
14149
14308
|
|
|
14150
|
-
@if $radio-
|
|
14151
|
-
&::before {
|
|
14152
|
-
transform: scale(1) translate(-50%, -50%);
|
|
14153
|
-
}
|
|
14154
|
-
}
|
|
14155
|
-
|
|
14156
|
-
@if $radio-icon-type == "marker" {
|
|
14309
|
+
@if $radio-indicator-type == "glyph" {
|
|
14157
14310
|
&::before {
|
|
14158
14311
|
transform: scale(1) translate(-50%, -50%);
|
|
14159
14312
|
}
|
|
14160
14313
|
}
|
|
14161
14314
|
}
|
|
14162
14315
|
|
|
14316
|
+
|
|
14163
14317
|
// Disabled state
|
|
14164
14318
|
.k-radio:disabled,
|
|
14165
|
-
.k-radio.k-disabled
|
|
14166
|
-
.k-radio:disabled + .k-radio-label,
|
|
14167
|
-
.k-radio.k-disabled + .k-radio-label {
|
|
14319
|
+
.k-radio.k-disabled {
|
|
14168
14320
|
@include disabled( $disabled-styling );
|
|
14169
14321
|
}
|
|
14322
|
+
.k-radio:disabled:checked,
|
|
14323
|
+
.k-radio.k-disabled.k-checked {
|
|
14324
|
+
@if $radio-indicator-type == "image" {
|
|
14325
|
+
background-image: $radio-disabled-checked-image;
|
|
14326
|
+
}
|
|
14327
|
+
}
|
|
14170
14328
|
|
|
14171
|
-
|
|
14172
|
-
|
|
14329
|
+
|
|
14330
|
+
// Radio wrap
|
|
14331
|
+
.k-radio-wrap {
|
|
14332
|
+
flex: none;
|
|
14333
|
+
display: inline-flex;
|
|
14334
|
+
flex-flow: row nowrap;
|
|
14335
|
+
gap: 0;
|
|
14336
|
+
align-items: center;
|
|
14337
|
+
align-self: start;
|
|
14338
|
+
vertical-align: middle;
|
|
14339
|
+
position: relative;
|
|
14340
|
+
|
|
14341
|
+
&::before {
|
|
14342
|
+
content: "\200b";
|
|
14343
|
+
width: 0px;
|
|
14344
|
+
overflow: hidden;
|
|
14345
|
+
flex: none;
|
|
14346
|
+
display: inline-block;
|
|
14347
|
+
vertical-align: top;
|
|
14348
|
+
}
|
|
14173
14349
|
}
|
|
14174
14350
|
|
|
14351
|
+
|
|
14175
14352
|
// Radio label
|
|
14176
14353
|
.k-radio-label {
|
|
14177
14354
|
margin: 0;
|
|
14178
14355
|
padding: 0;
|
|
14179
|
-
line-height: $radio-line-height;
|
|
14180
14356
|
display: inline-flex;
|
|
14181
14357
|
align-items: flex-start;
|
|
14358
|
+
gap: $radio-label-margin-x;
|
|
14182
14359
|
vertical-align: middle;
|
|
14183
14360
|
position: relative;
|
|
14184
14361
|
cursor: pointer;
|
|
14185
14362
|
|
|
14186
|
-
.k-label {
|
|
14187
|
-
cursor: pointer;
|
|
14188
|
-
}
|
|
14189
|
-
|
|
14190
|
-
// Hide empty label
|
|
14191
|
-
&:empty {
|
|
14192
|
-
display: none !important; // sass-lint:disable-line no-important
|
|
14193
|
-
}
|
|
14194
|
-
|
|
14195
14363
|
.k-ripple {
|
|
14196
|
-
top: $radio-size / 2;
|
|
14197
|
-
left: $radio-size / 2;
|
|
14198
|
-
right: auto;
|
|
14199
|
-
bottom: auto;
|
|
14200
|
-
width: $radio-size * 5 / 2;
|
|
14201
|
-
height: $radio-size * 5 / 2;
|
|
14202
|
-
transform: translate(-50%, -50%);
|
|
14203
|
-
border-radius: 50%;
|
|
14204
|
-
|
|
14205
14364
|
// Hide ripple temporarily
|
|
14206
14365
|
visibility: hidden !important; // sass-lint:disable-line no-important
|
|
14207
14366
|
}
|
|
14208
|
-
|
|
14209
|
-
.k-ripple-blob {
|
|
14210
|
-
// sass-lint:disable-block no-important
|
|
14211
|
-
// use !important until ripple can apply these styles from the script
|
|
14212
|
-
top: 50% !important;
|
|
14213
|
-
left: 50% !important;
|
|
14214
|
-
width: 200% !important;
|
|
14215
|
-
height: 200% !important;
|
|
14216
|
-
}
|
|
14217
14367
|
}
|
|
14218
|
-
|
|
14368
|
+
.k-radio + .k-label,
|
|
14369
|
+
.k-radio-wrap + .k-label,
|
|
14219
14370
|
.k-radio + .k-radio-label,
|
|
14220
|
-
.k-radio-
|
|
14221
|
-
|
|
14222
|
-
margin-
|
|
14371
|
+
.k-radio-wrap + .k-radio-label {
|
|
14372
|
+
display: inline;
|
|
14373
|
+
margin-inline-start: $radio-label-margin-x;
|
|
14223
14374
|
}
|
|
14224
|
-
|
|
14225
|
-
|
|
14226
|
-
|
|
14375
|
+
|
|
14376
|
+
|
|
14377
|
+
// Empty label
|
|
14378
|
+
.k-radio-label:empty {
|
|
14379
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
14227
14380
|
}
|
|
14228
|
-
|
|
14229
|
-
|
|
14381
|
+
.k-radio-label.k-no-text {
|
|
14382
|
+
min-width: 1px;
|
|
14230
14383
|
}
|
|
14231
14384
|
|
|
14385
|
+
|
|
14232
14386
|
// Radio list
|
|
14233
14387
|
.k-radio-list {
|
|
14234
|
-
margin:
|
|
14235
|
-
padding:
|
|
14388
|
+
margin: 0;
|
|
14389
|
+
padding: 0;
|
|
14390
|
+
display: flex;
|
|
14391
|
+
flex-flow: column nowrap;
|
|
14392
|
+
gap: 0;
|
|
14236
14393
|
list-style: none;
|
|
14237
|
-
|
|
14238
|
-
.k-radio-item {
|
|
14239
|
-
padding: $radio-list-item-padding-y $radio-list-item-padding-x;
|
|
14240
|
-
}
|
|
14241
14394
|
}
|
|
14395
|
+
.k-radio-item,
|
|
14396
|
+
.k-radio-list-item {
|
|
14397
|
+
padding: $radio-list-item-padding-y $radio-list-item-padding-x;
|
|
14398
|
+
display: flex;
|
|
14399
|
+
flex-flow: row nowrap;
|
|
14400
|
+
align-items: center;
|
|
14401
|
+
align-content: center;
|
|
14402
|
+
gap: map-get( $spacing, 1 );
|
|
14242
14403
|
|
|
14243
|
-
|
|
14244
|
-
|
|
14245
|
-
display: inline-block;
|
|
14246
|
-
margin: 0 $radio-list-horizontal-item-margin-x 0 0;
|
|
14247
|
-
|
|
14248
|
-
&:last-child {
|
|
14249
|
-
margin-right: 0;
|
|
14250
|
-
}
|
|
14404
|
+
.k-radio-label {
|
|
14405
|
+
margin: 0;
|
|
14251
14406
|
}
|
|
14252
14407
|
}
|
|
14408
|
+
.k-radio-list-horizontal,
|
|
14409
|
+
.k-radio-list.k-list-horizontal {
|
|
14410
|
+
display: flex;
|
|
14411
|
+
flex-flow: row wrap;
|
|
14412
|
+
gap: $radio-list-spacing;
|
|
14413
|
+
}
|
|
14253
14414
|
|
|
14254
|
-
// RTL
|
|
14255
|
-
.k-rtl,
|
|
14256
|
-
[dir="rtl"] {
|
|
14257
|
-
.k-radio + .k-radio-label,
|
|
14258
|
-
.k-radio-label + .k-radio,
|
|
14259
|
-
.k-label + .k-radio {
|
|
14260
|
-
margin-left: 0;
|
|
14261
|
-
margin-right: $radio-label-margin-x;
|
|
14262
|
-
}
|
|
14263
|
-
.k-radio-label > .k-radio {
|
|
14264
|
-
margin-right: 0;
|
|
14265
|
-
margin-left: $radio-label-margin-x;
|
|
14266
|
-
}
|
|
14267
|
-
kendo-label.k-radio-label > .k-radio:last-child {
|
|
14268
|
-
margin-left: 0;
|
|
14269
|
-
}
|
|
14270
|
-
kendo-label.k-radio-label > .k-label:first-child {
|
|
14271
|
-
margin-right: 0;
|
|
14272
|
-
margin-left: $radio-label-margin-x;
|
|
14273
|
-
}
|
|
14274
|
-
|
|
14275
|
-
.k-list-horizontal {
|
|
14276
|
-
.k-radio-item {
|
|
14277
|
-
margin-right: 0;
|
|
14278
|
-
margin-left: $radio-list-horizontal-item-margin-x;
|
|
14279
14415
|
|
|
14280
|
-
|
|
14281
|
-
|
|
14282
|
-
|
|
14283
|
-
|
|
14284
|
-
}
|
|
14416
|
+
// Ripple
|
|
14417
|
+
.k-radio-wrap .k-ripple-blob {
|
|
14418
|
+
width: $radio-ripple-size;
|
|
14419
|
+
height: $radio-ripple-size;
|
|
14285
14420
|
}
|
|
14286
|
-
|
|
14287
14421
|
.k-ripple-container {
|
|
14288
14422
|
.k-radio::after {
|
|
14289
14423
|
content: "";
|
|
14290
14424
|
display: block;
|
|
14291
14425
|
position: absolute;
|
|
14292
|
-
left:
|
|
14293
|
-
top:
|
|
14426
|
+
left: 50%;
|
|
14427
|
+
top: 50%;
|
|
14294
14428
|
width: $radio-ripple-size;
|
|
14295
14429
|
height: $radio-ripple-size;
|
|
14296
|
-
margin-left: $radio-ripple-margin;
|
|
14297
|
-
margin-top: $radio-ripple-margin;
|
|
14298
14430
|
border-radius: 100%;
|
|
14299
|
-
z-index: 1;
|
|
14300
|
-
|
|
14431
|
+
z-index: -1;
|
|
14432
|
+
transition: opacity 100ms linear, transform 150ms cubic-bezier(.4, 0, .2, 1);
|
|
14433
|
+
transform: translate(-50%, -50%) scale(0);
|
|
14434
|
+
transform-origin: center center;
|
|
14435
|
+
}
|
|
14436
|
+
|
|
14437
|
+
.k-radio:focus,
|
|
14438
|
+
.k-radio.k-state-focus {
|
|
14439
|
+
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
14440
|
+
|
|
14441
|
+
&::after {
|
|
14442
|
+
transform: translate(-50%, -50%) scale(1);
|
|
14443
|
+
}
|
|
14301
14444
|
}
|
|
14302
14445
|
|
|
14303
14446
|
.k-radio:disabled::after,
|
|
@@ -14305,32 +14448,12 @@ $radio-ripple-opacity: .3 !default;
|
|
|
14305
14448
|
display: none;
|
|
14306
14449
|
}
|
|
14307
14450
|
}
|
|
14308
|
-
}
|
|
14309
|
-
|
|
14310
|
-
|
|
14311
|
-
|
|
14312
|
-
|
|
14313
|
-
@include exports( "radio/layout/edge" ) {
|
|
14314
|
-
|
|
14315
|
-
.k-radio::-ms-check {
|
|
14316
|
-
border-width: 0;
|
|
14317
|
-
border-color: inherit;
|
|
14318
|
-
color: inherit;
|
|
14319
|
-
background-color: inherit;
|
|
14320
|
-
}
|
|
14321
|
-
|
|
14322
|
-
// IE 11 hack
|
|
14323
|
-
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
14324
|
-
.k-radio::-ms-check {
|
|
14325
|
-
border-width: 1px;
|
|
14326
|
-
}
|
|
14327
|
-
}
|
|
14328
14451
|
|
|
14329
14452
|
}
|
|
14330
14453
|
|
|
14331
14454
|
// #endregion
|
|
14332
14455
|
// #region @import "_theme.scss"; -> packages/default/scss/radio/_theme.scss
|
|
14333
|
-
@include exports("radio/theme") {
|
|
14456
|
+
@include exports( "radio/theme" ) {
|
|
14334
14457
|
|
|
14335
14458
|
// Radio
|
|
14336
14459
|
.k-radio {
|
|
@@ -14385,7 +14508,6 @@ $radio-ripple-opacity: .3 !default;
|
|
|
14385
14508
|
$radio-checked-border
|
|
14386
14509
|
);
|
|
14387
14510
|
}
|
|
14388
|
-
|
|
14389
14511
|
.k-radio:checked:focus,
|
|
14390
14512
|
.k-radio.k-checked.k-state-focus {
|
|
14391
14513
|
@include fill( $border: $radio-focused-checked-border );
|
|
@@ -14411,6 +14533,7 @@ $radio-ripple-opacity: .3 !default;
|
|
|
14411
14533
|
);
|
|
14412
14534
|
}
|
|
14413
14535
|
|
|
14536
|
+
|
|
14414
14537
|
// Ripple
|
|
14415
14538
|
.k-ripple-container {
|
|
14416
14539
|
.k-radio::after {
|
|
@@ -15543,7 +15666,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
15543
15666
|
display: block;
|
|
15544
15667
|
position: absolute;
|
|
15545
15668
|
bottom: 0;
|
|
15546
|
-
content: "
|
|
15669
|
+
content: "\200b";
|
|
15547
15670
|
height: 0;
|
|
15548
15671
|
line-height: 0;
|
|
15549
15672
|
z-index: 1;
|
|
@@ -15581,7 +15704,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
15581
15704
|
&::after {
|
|
15582
15705
|
display: block;
|
|
15583
15706
|
position: absolute;
|
|
15584
|
-
content: "
|
|
15707
|
+
content: "\200b";
|
|
15585
15708
|
height: 0;
|
|
15586
15709
|
line-height: 0;
|
|
15587
15710
|
z-index: 1;
|
|
@@ -15680,18 +15803,6 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
15680
15803
|
|
|
15681
15804
|
|
|
15682
15805
|
|
|
15683
|
-
|
|
15684
|
-
@include exports("daterangepicker/layout") {
|
|
15685
|
-
|
|
15686
|
-
// jQuery DateRangePicker
|
|
15687
|
-
.k-widget.k-daterangepicker {
|
|
15688
|
-
border: 0;
|
|
15689
|
-
}
|
|
15690
|
-
|
|
15691
|
-
}
|
|
15692
|
-
|
|
15693
|
-
|
|
15694
|
-
|
|
15695
15806
|
@include exports("calendar/layout/rtl") {
|
|
15696
15807
|
|
|
15697
15808
|
.k-rtl .k-calendar,
|
|
@@ -16145,7 +16256,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16145
16256
|
&::before,
|
|
16146
16257
|
&::after {
|
|
16147
16258
|
display: block;
|
|
16148
|
-
content: "
|
|
16259
|
+
content: "\200b";
|
|
16149
16260
|
position: absolute;
|
|
16150
16261
|
width: 100%;
|
|
16151
16262
|
left: 0;
|
|
@@ -16181,7 +16292,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16181
16292
|
&::after {
|
|
16182
16293
|
display: block;
|
|
16183
16294
|
position: absolute;
|
|
16184
|
-
content: "
|
|
16295
|
+
content: "\200b";
|
|
16185
16296
|
height: 0;
|
|
16186
16297
|
line-height: 0;
|
|
16187
16298
|
z-index: 1;
|
|
@@ -16356,25 +16467,6 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16356
16467
|
// Component
|
|
16357
16468
|
// #region @import "_variables.scss"; -> packages/default/scss/autocomplete/_variables.scss
|
|
16358
16469
|
// Autocomplete
|
|
16359
|
-
$autocomplete-bg: $input-bg !default;
|
|
16360
|
-
$autocomplete-text: $input-text !default;
|
|
16361
|
-
$autocomplete-border: $input-border !default;
|
|
16362
|
-
$autocomplete-shadow: $input-shadow !default;
|
|
16363
|
-
|
|
16364
|
-
$autocomplete-hovered-bg: $input-hovered-bg !default;
|
|
16365
|
-
$autocomplete-hovered-text: $input-hovered-text !default;
|
|
16366
|
-
$autocomplete-hovered-border: $input-hovered-border !default;
|
|
16367
|
-
$autocomplete-hovered-shadow: $input-hovered-shadow !default;
|
|
16368
|
-
|
|
16369
|
-
$autocomplete-focused-bg: $input-focused-bg !default;
|
|
16370
|
-
$autocomplete-focused-text: $input-focused-text !default;
|
|
16371
|
-
$autocomplete-focused-border: $input-focused-border !default;
|
|
16372
|
-
$autocomplete-focused-shadow: $input-focused-shadow !default;
|
|
16373
|
-
|
|
16374
|
-
$autocomplete-disabled-bg: null !default;
|
|
16375
|
-
$autocomplete-disabled-text: null !default;
|
|
16376
|
-
$autocomplete-disabled-border: null !default;
|
|
16377
|
-
$autocomplete-disabled-shadow: null !default;
|
|
16378
16470
|
|
|
16379
16471
|
// #endregion
|
|
16380
16472
|
// #region @import "_layout.scss"; -> packages/default/scss/autocomplete/_layout.scss
|
|
@@ -16420,79 +16512,60 @@ $autocomplete-disabled-shadow: null !default;
|
|
|
16420
16512
|
|
|
16421
16513
|
// #endregion
|
|
16422
16514
|
// #region @import "_theme.scss"; -> packages/default/scss/autocomplete/_theme.scss
|
|
16423
|
-
@include exports("autocomplete/theme") {
|
|
16515
|
+
@include exports( "autocomplete/theme" ) {
|
|
16424
16516
|
|
|
16425
|
-
//
|
|
16426
|
-
.k-autocomplete.k-header,
|
|
16517
|
+
// Autocomplete
|
|
16427
16518
|
.k-autocomplete {
|
|
16428
16519
|
@include fill(
|
|
16429
|
-
$
|
|
16430
|
-
$
|
|
16431
|
-
$
|
|
16520
|
+
$input-text,
|
|
16521
|
+
$input-bg,
|
|
16522
|
+
$input-border
|
|
16432
16523
|
);
|
|
16433
|
-
@include box-shadow( $autocomplete-shadow );
|
|
16434
16524
|
|
|
16435
16525
|
// Hover state
|
|
16436
16526
|
&:hover,
|
|
16437
16527
|
&.k-state-hover {
|
|
16438
16528
|
@include fill(
|
|
16439
|
-
$
|
|
16440
|
-
$
|
|
16441
|
-
$
|
|
16529
|
+
$input-hovered-text,
|
|
16530
|
+
$input-hovered-bg,
|
|
16531
|
+
$input-hovered-border
|
|
16442
16532
|
);
|
|
16443
|
-
@include box-shadow( $autocomplete-hovered-shadow );
|
|
16444
16533
|
}
|
|
16445
16534
|
|
|
16446
16535
|
// Focus state
|
|
16447
|
-
|
|
16448
|
-
&.k-state-focused,
|
|
16536
|
+
&:focus,
|
|
16449
16537
|
&.k-state-focus {
|
|
16450
16538
|
@include fill(
|
|
16451
|
-
$
|
|
16452
|
-
$
|
|
16453
|
-
$
|
|
16539
|
+
$input-focused-text,
|
|
16540
|
+
$input-focused-bg,
|
|
16541
|
+
$input-focused-border
|
|
16454
16542
|
);
|
|
16455
|
-
@include box-shadow( $
|
|
16543
|
+
@include box-shadow( $input-focused-shadow );
|
|
16456
16544
|
}
|
|
16457
16545
|
&:focus-within {
|
|
16458
16546
|
@include fill(
|
|
16459
|
-
$
|
|
16460
|
-
$
|
|
16461
|
-
$
|
|
16547
|
+
$input-focused-text,
|
|
16548
|
+
$input-focused-bg,
|
|
16549
|
+
$input-focused-border
|
|
16462
16550
|
);
|
|
16463
|
-
@include box-shadow( $
|
|
16551
|
+
@include box-shadow( $input-focused-shadow );
|
|
16464
16552
|
}
|
|
16465
16553
|
|
|
16466
|
-
// Disabled state
|
|
16467
|
-
&:disabled,
|
|
16468
|
-
&.k-state-disabled {
|
|
16469
|
-
@include fill(
|
|
16470
|
-
$autocomplete-disabled-text,
|
|
16471
|
-
$autocomplete-disabled-bg,
|
|
16472
|
-
$autocomplete-disabled-border
|
|
16473
|
-
);
|
|
16474
|
-
@include box-shadow( $autocomplete-disabled-shadow );
|
|
16475
|
-
}
|
|
16476
16554
|
|
|
16477
16555
|
// Invalid state
|
|
16478
16556
|
&.k-invalid,
|
|
16479
|
-
&.
|
|
16480
|
-
&.
|
|
16481
|
-
&.ng-invalid.ng-dirty {
|
|
16557
|
+
&.ng-invalid,
|
|
16558
|
+
&.k-state-invalid {
|
|
16482
16559
|
border-color: $invalid-border;
|
|
16483
16560
|
|
|
16484
16561
|
.k-input-validation-icon {
|
|
16485
16562
|
color: $invalid-text;
|
|
16486
16563
|
}
|
|
16487
16564
|
|
|
16488
|
-
|
|
16489
|
-
&.k-state-focused,
|
|
16565
|
+
&:focus-within,
|
|
16490
16566
|
&.k-state-focus {
|
|
16491
16567
|
@include box-shadow($invalid-shadow);
|
|
16492
16568
|
}
|
|
16493
|
-
&:focus-within {
|
|
16494
|
-
@include box-shadow($invalid-shadow);
|
|
16495
|
-
}
|
|
16496
16569
|
}
|
|
16497
16570
|
}
|
|
16498
16571
|
|
|
@@ -16799,72 +16872,33 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16799
16872
|
// Component
|
|
16800
16873
|
// #region @import "_variables.scss"; -> packages/default/scss/numerictextbox/_variables.scss
|
|
16801
16874
|
// Numeric Textbox
|
|
16802
|
-
$numeric-bg: $input-bg !default;
|
|
16803
|
-
$numeric-text: $input-text !default;
|
|
16804
|
-
$numeric-border: $input-border !default;
|
|
16805
|
-
|
|
16806
|
-
$numeric-hovered-bg: $input-hovered-bg !default;
|
|
16807
|
-
$numeric-hovered-text: $input-hovered-text !default;
|
|
16808
|
-
$numeric-hovered-border: $input-hovered-border !default;
|
|
16809
|
-
|
|
16810
|
-
$numeric-focused-bg: $input-focused-bg !default;
|
|
16811
|
-
$numeric-focused-text: $input-focused-text !default;
|
|
16812
|
-
$numeric-focused-border: $input-focused-border !default;
|
|
16813
|
-
$numeric-focused-shadow: $input-focused-shadow !default;
|
|
16814
|
-
|
|
16815
|
-
$numeric-button-bg: $button-bg !default;
|
|
16816
|
-
$numeric-button-text: $button-text !default;
|
|
16817
|
-
$numeric-button-border: $button-border !default;
|
|
16818
|
-
$numeric-button-gradient: $button-gradient !default;
|
|
16819
|
-
|
|
16820
|
-
$numeric-button-hovered-bg: $button-hovered-bg !default;
|
|
16821
|
-
$numeric-button-hovered-text: $button-hovered-text !default;
|
|
16822
|
-
$numeric-button-hovered-border: $button-hovered-border !default;
|
|
16823
|
-
$numeric-button-hovered-gradient: $button-hovered-gradient !default;
|
|
16824
|
-
|
|
16825
|
-
$numeric-button-pressed-bg: $button-active-bg !default;
|
|
16826
|
-
$numeric-button-pressed-text: $button-active-text !default;
|
|
16827
|
-
$numeric-button-pressed-border: $button-active-border !default;
|
|
16828
|
-
$numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
16829
16875
|
|
|
16830
16876
|
// #endregion
|
|
16831
16877
|
// #region @import "_layout.scss"; -> packages/default/scss/numerictextbox/_layout.scss
|
|
16832
|
-
@include exports("numerictextbox/layout") {
|
|
16878
|
+
@include exports( "numerictextbox/layout" ) {
|
|
16833
16879
|
|
|
16834
16880
|
// Numeric textbox
|
|
16835
16881
|
.k-numerictextbox {
|
|
16882
|
+
@include border-radius( $input-border-radius );
|
|
16836
16883
|
width: $input-default-width;
|
|
16837
|
-
border-width:
|
|
16884
|
+
border-width: $input-border-width;
|
|
16885
|
+
border-style: solid;
|
|
16838
16886
|
box-sizing: border-box;
|
|
16839
16887
|
outline: 0;
|
|
16840
|
-
background: none;
|
|
16841
16888
|
font-family: $input-font-family;
|
|
16842
16889
|
font-size: $input-font-size;
|
|
16843
16890
|
line-height: $input-line-height;
|
|
16844
|
-
text-align:
|
|
16891
|
+
text-align: start;
|
|
16845
16892
|
white-space: nowrap;
|
|
16846
16893
|
display: inline-flex;
|
|
16894
|
+
flex-flow: row nowrap;
|
|
16847
16895
|
vertical-align: middle;
|
|
16848
16896
|
position: relative;
|
|
16897
|
+
overflow: hidden;
|
|
16898
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
16849
16899
|
-webkit-touch-callout: none;
|
|
16850
16900
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
16851
16901
|
|
|
16852
|
-
.k-numeric-wrap {
|
|
16853
|
-
@include border-radius( $input-border-radius );
|
|
16854
|
-
padding: 0;
|
|
16855
|
-
width: 100%;
|
|
16856
|
-
border-width: $input-border-width;
|
|
16857
|
-
border-style: solid;
|
|
16858
|
-
box-sizing: border-box;
|
|
16859
|
-
position: relative;
|
|
16860
|
-
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
16861
|
-
cursor: default;
|
|
16862
|
-
outline: 0;
|
|
16863
|
-
display: flex;
|
|
16864
|
-
flex-flow: row nowrap;
|
|
16865
|
-
overflow: hidden;
|
|
16866
|
-
}
|
|
16867
|
-
|
|
16868
16902
|
|
|
16869
16903
|
// Input
|
|
16870
16904
|
.k-input {
|
|
@@ -16880,6 +16914,7 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
16880
16914
|
border-inline-start-width: $picker-select-border-width;
|
|
16881
16915
|
border-style: solid;
|
|
16882
16916
|
box-sizing: border-box;
|
|
16917
|
+
outline: 0;
|
|
16883
16918
|
display: flex;
|
|
16884
16919
|
flex-direction: column;
|
|
16885
16920
|
align-items: stretch;
|
|
@@ -16912,13 +16947,6 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
16912
16947
|
.k-link-decrease .k-icon {
|
|
16913
16948
|
top: -$spinner-icon-offset;
|
|
16914
16949
|
}
|
|
16915
|
-
|
|
16916
|
-
|
|
16917
|
-
// RTL
|
|
16918
|
-
.k-rtl &,
|
|
16919
|
-
&[dir="rtl"] {
|
|
16920
|
-
text-align: right;
|
|
16921
|
-
}
|
|
16922
16950
|
}
|
|
16923
16951
|
|
|
16924
16952
|
}
|
|
@@ -16927,110 +16955,90 @@ $numeric-button-pressed-gradient: $button-active-gradient !default;
|
|
|
16927
16955
|
// #region @import "_theme.scss"; -> packages/default/scss/numerictextbox/_theme.scss
|
|
16928
16956
|
@include exports( "numerictextbox/theme" ) {
|
|
16929
16957
|
|
|
16930
|
-
// Numeric
|
|
16958
|
+
// Numeric textbox
|
|
16931
16959
|
.k-numerictextbox {
|
|
16960
|
+
@include fill(
|
|
16961
|
+
$input-text,
|
|
16962
|
+
$input-bg,
|
|
16963
|
+
$input-border
|
|
16964
|
+
);
|
|
16932
16965
|
|
|
16933
|
-
|
|
16934
|
-
|
|
16966
|
+
// Hover state
|
|
16967
|
+
&:hover,
|
|
16968
|
+
&.k-state-hover {
|
|
16969
|
+
@include fill(
|
|
16970
|
+
$input-hovered-text,
|
|
16971
|
+
$input-hovered-bg,
|
|
16972
|
+
$input-hovered-border
|
|
16973
|
+
);
|
|
16935
16974
|
}
|
|
16936
16975
|
|
|
16937
|
-
//
|
|
16938
|
-
|
|
16976
|
+
// Focus state
|
|
16977
|
+
&:focus,
|
|
16978
|
+
&.k-state-focus {
|
|
16939
16979
|
@include fill(
|
|
16940
|
-
$
|
|
16941
|
-
$
|
|
16942
|
-
$
|
|
16980
|
+
$input-focused-text,
|
|
16981
|
+
$input-focused-bg,
|
|
16982
|
+
$input-focused-border
|
|
16943
16983
|
);
|
|
16984
|
+
@include box-shadow( $input-focused-shadow );
|
|
16985
|
+
}
|
|
16986
|
+
&:focus-within {
|
|
16987
|
+
@include fill(
|
|
16988
|
+
$input-focused-text,
|
|
16989
|
+
$input-focused-bg,
|
|
16990
|
+
$input-focused-border
|
|
16991
|
+
);
|
|
16992
|
+
@include box-shadow( $input-focused-shadow );
|
|
16993
|
+
}
|
|
16944
16994
|
|
|
16945
16995
|
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
|
|
16949
|
-
|
|
16950
|
-
|
|
16951
|
-
$numeric-hovered-bg,
|
|
16952
|
-
$numeric-hovered-border
|
|
16953
|
-
);
|
|
16954
|
-
}
|
|
16955
|
-
|
|
16996
|
+
// Invalid state
|
|
16997
|
+
&.k-invalid,
|
|
16998
|
+
&.ng-invalid,
|
|
16999
|
+
&.k-state-invalid {
|
|
17000
|
+
border-color: $invalid-border;
|
|
16956
17001
|
|
|
16957
|
-
|
|
16958
|
-
|
|
16959
|
-
@include fill(
|
|
16960
|
-
$numeric-focused-text,
|
|
16961
|
-
$numeric-focused-bg,
|
|
16962
|
-
$numeric-focused-border
|
|
16963
|
-
);
|
|
16964
|
-
@include box-shadow($numeric-focused-shadow);
|
|
17002
|
+
.k-input-validation-icon {
|
|
17003
|
+
color: $invalid-text;
|
|
16965
17004
|
}
|
|
16966
17005
|
|
|
16967
|
-
|
|
16968
|
-
&.k-
|
|
16969
|
-
|
|
16970
|
-
&.k-state-invalid {
|
|
16971
|
-
border-color: $invalid-border;
|
|
16972
|
-
|
|
16973
|
-
.k-input-validation-icon {
|
|
16974
|
-
color: $invalid-text;
|
|
16975
|
-
}
|
|
16976
|
-
|
|
16977
|
-
&:focus,
|
|
16978
|
-
&.k-state-focused {
|
|
16979
|
-
@include box-shadow($invalid-shadow);
|
|
16980
|
-
}
|
|
17006
|
+
&:focus-within,
|
|
17007
|
+
&.k-state-focus {
|
|
17008
|
+
@include box-shadow($invalid-shadow);
|
|
16981
17009
|
}
|
|
16982
17010
|
}
|
|
16983
17011
|
|
|
16984
17012
|
|
|
16985
|
-
//
|
|
17013
|
+
// Spinner
|
|
16986
17014
|
.k-select {
|
|
16987
17015
|
@include fill(
|
|
16988
|
-
$
|
|
16989
|
-
$
|
|
16990
|
-
$
|
|
16991
|
-
$
|
|
17016
|
+
$picker-select-text,
|
|
17017
|
+
$picker-select-bg,
|
|
17018
|
+
$picker-select-border,
|
|
17019
|
+
$picker-select-gradient
|
|
16992
17020
|
);
|
|
16993
|
-
|
|
16994
|
-
.k-link:hover,
|
|
16995
|
-
.k-link.k-state-hover {
|
|
16996
|
-
@include fill(
|
|
16997
|
-
$numeric-button-hovered-text,
|
|
16998
|
-
$numeric-button-hovered-bg,
|
|
16999
|
-
$numeric-button-hovered-border,
|
|
17000
|
-
$numeric-button-hovered-gradient
|
|
17001
|
-
);
|
|
17002
|
-
}
|
|
17003
|
-
|
|
17004
|
-
.k-link:active,
|
|
17005
|
-
.k-link.k-state-active,
|
|
17006
|
-
.k-link.k-state-selected {
|
|
17007
|
-
@include fill(
|
|
17008
|
-
$numeric-button-pressed-text,
|
|
17009
|
-
$numeric-button-pressed-bg,
|
|
17010
|
-
$numeric-button-pressed-border,
|
|
17011
|
-
$numeric-button-pressed-gradient
|
|
17012
|
-
);
|
|
17013
|
-
}
|
|
17014
17021
|
}
|
|
17015
|
-
|
|
17016
|
-
|
|
17017
|
-
|
|
17018
|
-
|
|
17019
|
-
|
|
17020
|
-
|
|
17021
|
-
|
|
17022
|
-
|
|
17023
|
-
|
|
17024
|
-
|
|
17025
|
-
|
|
17026
|
-
|
|
17027
|
-
|
|
17028
|
-
|
|
17029
|
-
|
|
17030
|
-
|
|
17031
|
-
|
|
17022
|
+
.k-link:hover,
|
|
17023
|
+
.k-link.k-state-hover {
|
|
17024
|
+
@include fill(
|
|
17025
|
+
$picker-select-hovered-text,
|
|
17026
|
+
$picker-select-hovered-bg,
|
|
17027
|
+
$picker-select-hovered-border,
|
|
17028
|
+
$picker-select-hovered-gradient
|
|
17029
|
+
);
|
|
17030
|
+
}
|
|
17031
|
+
.k-link:active,
|
|
17032
|
+
.k-link.k-state-active {
|
|
17033
|
+
@include fill(
|
|
17034
|
+
$picker-select-pressed-text,
|
|
17035
|
+
$picker-select-pressed-bg,
|
|
17036
|
+
$picker-select-pressed-border,
|
|
17037
|
+
$picker-select-pressed-gradient
|
|
17038
|
+
);
|
|
17032
17039
|
}
|
|
17033
17040
|
}
|
|
17041
|
+
|
|
17034
17042
|
}
|
|
17035
17043
|
|
|
17036
17044
|
// #endregion
|
|
@@ -18550,6 +18558,58 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18550
18558
|
|
|
18551
18559
|
// #endregion
|
|
18552
18560
|
|
|
18561
|
+
// #endregion
|
|
18562
|
+
// #region @import "daterangepicker/_index.scss"; -> packages/default/scss/daterangepicker/_index.scss
|
|
18563
|
+
// #region @import "../core/_index.scss"; -> packages/default/scss/core/_index.scss
|
|
18564
|
+
// File already imported_once. Skipping output.
|
|
18565
|
+
// #endregion
|
|
18566
|
+
|
|
18567
|
+
|
|
18568
|
+
// Dependencies
|
|
18569
|
+
|
|
18570
|
+
|
|
18571
|
+
// Component
|
|
18572
|
+
// #region @import "_variables.scss"; -> packages/default/scss/daterangepicker/_variables.scss
|
|
18573
|
+
// Daterangepicker
|
|
18574
|
+
|
|
18575
|
+
// #endregion
|
|
18576
|
+
// #region @import "_layout.scss"; -> packages/default/scss/daterangepicker/_layout.scss
|
|
18577
|
+
@include exports( "daterangepicker/layout" ) {
|
|
18578
|
+
|
|
18579
|
+
// Daterange picker
|
|
18580
|
+
.k-daterangepicker {
|
|
18581
|
+
border: 0;
|
|
18582
|
+
display: inline-flex;
|
|
18583
|
+
flex-flow: row nowrap;
|
|
18584
|
+
align-items: flex-start;
|
|
18585
|
+
gap: map-get( $spacing, 2 );
|
|
18586
|
+
}
|
|
18587
|
+
|
|
18588
|
+
|
|
18589
|
+
// Angular specific
|
|
18590
|
+
kendo-daterange {
|
|
18591
|
+
// @extend .k-daterangepicker;
|
|
18592
|
+
}
|
|
18593
|
+
|
|
18594
|
+
|
|
18595
|
+
// React specific
|
|
18596
|
+
.k-daterangepicker-wrap {
|
|
18597
|
+
display: inherit;
|
|
18598
|
+
flex-flow: inherit;
|
|
18599
|
+
align-items: inherit;
|
|
18600
|
+
gap: inherit;
|
|
18601
|
+
}
|
|
18602
|
+
|
|
18603
|
+
}
|
|
18604
|
+
|
|
18605
|
+
// #endregion
|
|
18606
|
+
// #region @import "_theme.scss"; -> packages/default/scss/daterangepicker/_theme.scss
|
|
18607
|
+
@include exports("daterangepicker/theme") {
|
|
18608
|
+
|
|
18609
|
+
}
|
|
18610
|
+
|
|
18611
|
+
// #endregion
|
|
18612
|
+
|
|
18553
18613
|
// #endregion
|
|
18554
18614
|
// #region @import "dropdowngrid/_index.scss"; -> packages/default/scss/dropdowngrid/_index.scss
|
|
18555
18615
|
// #region @import "../core/_index.scss"; -> packages/default/scss/core/_index.scss
|
|
@@ -19548,60 +19608,114 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19548
19608
|
// Component
|
|
19549
19609
|
// #region @import "_variables.scss"; -> packages/default/scss/treeview/_variables.scss
|
|
19550
19610
|
// Treeview
|
|
19551
|
-
$treeview-padding-x: 0px !default;
|
|
19552
|
-
$treeview-padding-y: 0px !default;
|
|
19553
|
-
$treeview-font-family: $font-family !default;
|
|
19554
|
-
$treeview-font-size: $font-size !default;
|
|
19555
|
-
$treeview-line-height: $line-height !default;
|
|
19556
19611
|
|
|
19612
|
+
/// Font family of the treeview component.
|
|
19613
|
+
/// @group treeview
|
|
19614
|
+
$treeview-font-family: $font-family !default;
|
|
19615
|
+
/// Font size of the treeview component.
|
|
19616
|
+
/// @group treeview
|
|
19617
|
+
$treeview-font-size: $font-size-md !default;
|
|
19618
|
+
/// Line height of the treeview component.
|
|
19619
|
+
/// @group treeview
|
|
19620
|
+
$treeview-line-height: $line-height-md !default;
|
|
19621
|
+
|
|
19622
|
+
/// Indentation of child groups in treeview component.
|
|
19623
|
+
/// @group treeview
|
|
19557
19624
|
$treeview-indent: 16px !default;
|
|
19558
19625
|
|
|
19626
|
+
/// Horizontal padding of treeview items.
|
|
19627
|
+
/// @group treeview
|
|
19559
19628
|
$treeview-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
19629
|
+
/// Vertical padding of treeview items.
|
|
19630
|
+
/// @group treeview
|
|
19560
19631
|
$treeview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
19632
|
+
/// Border width of treeview items.
|
|
19633
|
+
/// @group treeview
|
|
19561
19634
|
$treeview-item-border-width: 0px !default;
|
|
19635
|
+
/// Border radius of treeview items.
|
|
19636
|
+
/// @group treeview
|
|
19562
19637
|
$treeview-item-border-radius: null !default;
|
|
19563
19638
|
|
|
19639
|
+
/// Background color of the treeview component.
|
|
19640
|
+
/// @group treeview
|
|
19564
19641
|
$treeview-bg: null !default;
|
|
19642
|
+
/// Text color of the treeview component.
|
|
19643
|
+
/// @group treeview
|
|
19565
19644
|
$treeview-text: $component-text !default;
|
|
19645
|
+
/// Border color of the treeview component.
|
|
19646
|
+
/// @group treeview
|
|
19566
19647
|
$treeview-border: null !default;
|
|
19567
19648
|
|
|
19649
|
+
/// Background color of hovered treeview items.
|
|
19650
|
+
/// @group treeview
|
|
19568
19651
|
$treeview-item-hovered-bg: $hovered-bg !default;
|
|
19652
|
+
/// Text color of hovered treeview items.
|
|
19653
|
+
/// @group treeview
|
|
19569
19654
|
$treeview-item-hovered-text: $hovered-text !default;
|
|
19655
|
+
/// Border color of hovered treeview items.
|
|
19656
|
+
/// @group treeview
|
|
19570
19657
|
$treeview-item-hovered-border: null !default;
|
|
19658
|
+
/// Background gradient of hovered treeview items.
|
|
19659
|
+
/// @group treeview
|
|
19571
19660
|
$treeview-item-hovered-gradient: null !default;
|
|
19572
19661
|
|
|
19662
|
+
/// Background color of selected treeview items.
|
|
19663
|
+
/// @group treeview
|
|
19573
19664
|
$treeview-item-selected-bg: $selected-bg !default;
|
|
19665
|
+
/// Text color of selected treeview items.
|
|
19666
|
+
/// @group treeview
|
|
19574
19667
|
$treeview-item-selected-text: $selected-text !default;
|
|
19668
|
+
/// Border color of selected treeview items.
|
|
19669
|
+
/// @group treeview
|
|
19575
19670
|
$treeview-item-selected-border: null !default;
|
|
19671
|
+
/// Background gradient of selected treeview items.
|
|
19672
|
+
/// @group treeview
|
|
19576
19673
|
$treeview-item-selected-gradient: null !default;
|
|
19577
19674
|
|
|
19675
|
+
/// Box shadow of focused treeview items.
|
|
19676
|
+
/// @group treeview
|
|
19578
19677
|
$treeview-item-focused-shadow: $focused-shadow !default;
|
|
19579
|
-
$treeview-item-selected-focused-shadow: null !default;
|
|
19580
|
-
|
|
19581
|
-
$treeview-loadmore-checkboxes-padding-x: calc( #{$icon-spacing} + #{$checkbox-size} + #{$treeview-indent} ) !default;
|
|
19582
|
-
$treeview-loadmore-checkboxes-icon-indent: calc( -1 * (#{$icon-spacing} + #{$treeview-indent}) ) !default;
|
|
19583
|
-
$treeview-loadmore-checkboxes-icon-margin-x: $icon-spacing !default;
|
|
19584
19678
|
|
|
19679
|
+
/// Background color of load more.
|
|
19680
|
+
/// @group treeview
|
|
19585
19681
|
$treeview-loadmore-bg: transparent !default;
|
|
19586
|
-
|
|
19682
|
+
/// Text color of load more.
|
|
19683
|
+
/// @group treeview
|
|
19684
|
+
$treeview-loadmore-text: $link-text !default;
|
|
19685
|
+
/// Border color of load more.
|
|
19686
|
+
/// @group treeview
|
|
19587
19687
|
$treeview-loadmore-border: null !default;
|
|
19588
19688
|
|
|
19689
|
+
/// Background color of a hovered load more.
|
|
19690
|
+
/// @group treeview
|
|
19589
19691
|
$treeview-loadmore-hover-bg: transparent !default;
|
|
19590
|
-
|
|
19692
|
+
/// Text color of a hovered load more.
|
|
19693
|
+
/// @group treeview
|
|
19694
|
+
$treeview-loadmore-hover-text: $link-hover-text !default;
|
|
19695
|
+
/// Border color of a hovered load more.
|
|
19696
|
+
/// @group treeview
|
|
19591
19697
|
$treeview-loadmore-hover-border: null !default;
|
|
19592
19698
|
|
|
19699
|
+
/// Background color of a focused load more.
|
|
19700
|
+
/// @group treeview
|
|
19593
19701
|
$treeview-loadmore-focus-bg: transparent !default;
|
|
19594
|
-
|
|
19702
|
+
/// Text color of a focused load more.
|
|
19703
|
+
/// @group treeview
|
|
19704
|
+
$treeview-loadmore-focus-text: $link-hover-text !default;
|
|
19705
|
+
/// Border color of a focused load more.
|
|
19706
|
+
/// @group treeview
|
|
19595
19707
|
$treeview-loadmore-focus-border: null !default;
|
|
19596
|
-
|
|
19708
|
+
/// Box shadow of a focused load more.
|
|
19709
|
+
/// @group treeview
|
|
19710
|
+
$treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
19597
19711
|
|
|
19598
19712
|
// #endregion
|
|
19599
19713
|
// #region @import "_layout.scss"; -> packages/default/scss/treeview/_layout.scss
|
|
19600
19714
|
@include exports("treeview/layout") {
|
|
19601
19715
|
|
|
19602
|
-
//
|
|
19716
|
+
// Treeview
|
|
19603
19717
|
.k-treeview {
|
|
19604
|
-
padding:
|
|
19718
|
+
padding: 0;
|
|
19605
19719
|
border-width: 0;
|
|
19606
19720
|
background: none;
|
|
19607
19721
|
box-sizing: border-box;
|
|
@@ -19615,158 +19729,178 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19615
19729
|
white-space: nowrap;
|
|
19616
19730
|
-webkit-touch-callout: none;
|
|
19617
19731
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19732
|
+
}
|
|
19618
19733
|
|
|
19619
|
-
> .k-group {
|
|
19620
|
-
outline: 0;
|
|
19621
|
-
-webkit-touch-callout: none;
|
|
19622
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19623
|
-
}
|
|
19624
19734
|
|
|
19625
|
-
|
|
19626
|
-
|
|
19627
|
-
|
|
19628
|
-
|
|
19629
|
-
|
|
19630
|
-
|
|
19631
|
-
|
|
19632
|
-
|
|
19735
|
+
// Treeview group
|
|
19736
|
+
.k-treeview-group,
|
|
19737
|
+
.k-treeview .k-group {
|
|
19738
|
+
margin: 0;
|
|
19739
|
+
padding: 0;
|
|
19740
|
+
background: none;
|
|
19741
|
+
list-style: none;
|
|
19742
|
+
position: relative;
|
|
19743
|
+
outline: 0;
|
|
19744
|
+
-webkit-touch-callout: none;
|
|
19745
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19633
19746
|
|
|
19634
|
-
|
|
19635
|
-
|
|
19636
|
-
}
|
|
19747
|
+
&.ng-animating {
|
|
19748
|
+
overflow: hidden;
|
|
19637
19749
|
}
|
|
19750
|
+
}
|
|
19638
19751
|
|
|
19639
|
-
// Wrappers
|
|
19640
|
-
.k-top,
|
|
19641
|
-
.k-mid,
|
|
19642
|
-
.k-bot {
|
|
19643
|
-
display: flex;
|
|
19644
|
-
flex-direction: row;
|
|
19645
|
-
align-items: center;
|
|
19646
|
-
align-content: center;
|
|
19647
|
-
}
|
|
19648
19752
|
|
|
19649
|
-
|
|
19650
|
-
|
|
19651
|
-
|
|
19652
|
-
|
|
19653
|
-
|
|
19654
|
-
|
|
19655
|
-
|
|
19656
|
-
|
|
19753
|
+
// Treeview wrappers
|
|
19754
|
+
.k-treeview-top,
|
|
19755
|
+
.k-treeview .k-top,
|
|
19756
|
+
.k-treeview-mid,
|
|
19757
|
+
.k-treeview .k-mid,
|
|
19758
|
+
.k-treeview-bot,
|
|
19759
|
+
.k-treeview .k-bot {
|
|
19760
|
+
display: flex;
|
|
19761
|
+
flex-direction: row;
|
|
19762
|
+
align-items: center;
|
|
19763
|
+
align-content: center;
|
|
19764
|
+
}
|
|
19657
19765
|
|
|
19658
|
-
// Link
|
|
19659
|
-
.k-in {
|
|
19660
|
-
@include border-radius( $treeview-item-border-radius );
|
|
19661
|
-
margin: 0;
|
|
19662
|
-
padding: $treeview-item-padding-y $treeview-item-padding-x;
|
|
19663
|
-
border: $treeview-item-border-width solid transparent;
|
|
19664
|
-
text-decoration: none;
|
|
19665
|
-
display: inline-flex;
|
|
19666
|
-
align-items: center;
|
|
19667
|
-
align-content: center;
|
|
19668
|
-
vertical-align: middle;
|
|
19669
|
-
position: relative;
|
|
19670
|
-
}
|
|
19671
|
-
.k-in.k-state-focused {
|
|
19672
|
-
z-index: 1;
|
|
19673
|
-
}
|
|
19674
19766
|
|
|
19675
|
-
|
|
19676
|
-
|
|
19677
|
-
|
|
19767
|
+
// Treeview item
|
|
19768
|
+
.k-treeview-item,
|
|
19769
|
+
.k-treeview .k-item {
|
|
19770
|
+
outline-style: none;
|
|
19771
|
+
margin: 0;
|
|
19772
|
+
padding: 0 0 0 $treeview-indent;
|
|
19773
|
+
border-width: 0;
|
|
19774
|
+
display: block;
|
|
19775
|
+
}
|
|
19678
19776
|
|
|
19679
|
-
&:hover,
|
|
19680
|
-
&.k-state-hover,
|
|
19681
|
-
&:focus,
|
|
19682
|
-
&.k-state-focused {
|
|
19683
|
-
text-decoration: underline;
|
|
19684
|
-
}
|
|
19685
|
-
}
|
|
19686
|
-
.k-treeview-load-more-checkboxes-container {
|
|
19687
|
-
padding-left: $treeview-loadmore-checkboxes-padding-x;
|
|
19688
19777
|
|
|
19689
|
-
|
|
19690
|
-
|
|
19691
|
-
|
|
19692
|
-
|
|
19693
|
-
|
|
19778
|
+
// Treeview toggle
|
|
19779
|
+
.k-treeview-toggle {
|
|
19780
|
+
flex: none;
|
|
19781
|
+
display: inline-flex;
|
|
19782
|
+
flex-flow: row nowrap;
|
|
19783
|
+
align-items: center;
|
|
19694
19784
|
|
|
19695
|
-
// Expand / collapse
|
|
19696
19785
|
.k-i-expand,
|
|
19697
19786
|
.k-i-collapse {
|
|
19698
|
-
margin-
|
|
19699
|
-
|
|
19787
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
19788
|
+
}
|
|
19789
|
+
}
|
|
19790
|
+
.k-treeview-toggle,
|
|
19791
|
+
.k-treeview .k-i-expand,
|
|
19792
|
+
.k-treeview .k-i-collapse {
|
|
19793
|
+
margin-left: -$treeview-indent;
|
|
19794
|
+
cursor: pointer;
|
|
19700
19795
|
|
|
19701
|
-
|
|
19702
|
-
|
|
19703
|
-
|
|
19796
|
+
+ .k-checkbox-wrap,
|
|
19797
|
+
+ .k-checkbox-wrapper {
|
|
19798
|
+
margin-left: $icon-spacing;
|
|
19704
19799
|
}
|
|
19800
|
+
}
|
|
19705
19801
|
|
|
19706
|
-
|
|
19707
|
-
|
|
19802
|
+
|
|
19803
|
+
// Loading icon
|
|
19804
|
+
.k-treeview-loading {
|
|
19805
|
+
margin-right: $icon-spacing;
|
|
19806
|
+
}
|
|
19807
|
+
|
|
19808
|
+
|
|
19809
|
+
// Checkbox
|
|
19810
|
+
.k-treeview .k-checkbox-wrap,
|
|
19811
|
+
.k-treeview .k-checkbox-wrapper {
|
|
19812
|
+
margin-right: $icon-spacing;
|
|
19813
|
+
align-self: center;
|
|
19814
|
+
}
|
|
19815
|
+
|
|
19816
|
+
|
|
19817
|
+
// Treeview leaf
|
|
19818
|
+
.k-treeview-leaf,
|
|
19819
|
+
.k-treeview .k-in {
|
|
19820
|
+
@include border-radius( $treeview-item-border-radius );
|
|
19821
|
+
margin: 0;
|
|
19822
|
+
padding: $treeview-item-padding-y $treeview-item-padding-x;
|
|
19823
|
+
border: $treeview-item-border-width solid transparent;
|
|
19824
|
+
text-decoration: none;
|
|
19825
|
+
display: inline-flex;
|
|
19826
|
+
align-items: center;
|
|
19827
|
+
align-content: center;
|
|
19828
|
+
vertical-align: middle;
|
|
19829
|
+
position: relative;
|
|
19830
|
+
|
|
19831
|
+
.k-icon,
|
|
19832
|
+
.k-image,
|
|
19833
|
+
.k-sprite {
|
|
19708
19834
|
margin-right: $icon-spacing;
|
|
19709
19835
|
}
|
|
19710
19836
|
|
|
19711
|
-
|
|
19712
|
-
|
|
19713
|
-
|
|
19714
|
-
position: absolute;
|
|
19715
|
-
transform: translate(-50%, -50%);
|
|
19716
|
-
z-index: 1000;
|
|
19837
|
+
&.k-state-focus,
|
|
19838
|
+
&.k-state-focused {
|
|
19839
|
+
z-index: 1;
|
|
19717
19840
|
}
|
|
19841
|
+
}
|
|
19718
19842
|
|
|
19719
|
-
|
|
19720
|
-
|
|
19721
|
-
|
|
19722
|
-
|
|
19723
|
-
|
|
19843
|
+
|
|
19844
|
+
// Treeview load more button
|
|
19845
|
+
.k-treeview .k-treeview-load-more-button {
|
|
19846
|
+
cursor: pointer;
|
|
19847
|
+
|
|
19848
|
+
&:hover,
|
|
19849
|
+
&.k-state-hover,
|
|
19850
|
+
&:focus,
|
|
19851
|
+
&.k-state-focus,
|
|
19852
|
+
&.k-state-focused {
|
|
19853
|
+
text-decoration: underline;
|
|
19724
19854
|
}
|
|
19725
19855
|
}
|
|
19726
19856
|
|
|
19857
|
+
|
|
19727
19858
|
// RTL
|
|
19728
19859
|
.k-rtl .k-treeview,
|
|
19729
19860
|
.k-treeview[dir="rtl"] {
|
|
19730
19861
|
|
|
19731
|
-
//
|
|
19732
|
-
.k-item
|
|
19862
|
+
// Treeview item
|
|
19863
|
+
.k-item,
|
|
19864
|
+
.k-treeview-item {
|
|
19733
19865
|
padding-left: 0;
|
|
19734
19866
|
padding-right: $treeview-indent;
|
|
19735
19867
|
}
|
|
19736
19868
|
|
|
19737
|
-
|
|
19738
|
-
padding-left: 0;
|
|
19739
|
-
padding-right: $treeview-loadmore-checkboxes-padding-x;
|
|
19740
|
-
|
|
19741
|
-
.k-i-loading {
|
|
19742
|
-
margin-left: $treeview-loadmore-checkboxes-icon-margin-x;
|
|
19743
|
-
margin-right: $treeview-loadmore-checkboxes-icon-indent;
|
|
19744
|
-
}
|
|
19745
|
-
}
|
|
19746
|
-
|
|
19747
|
-
// Expand / collapse
|
|
19869
|
+
// Treeview toggle
|
|
19748
19870
|
.k-i-expand,
|
|
19749
|
-
.k-i-collapse
|
|
19871
|
+
.k-i-collapse,
|
|
19872
|
+
.k-treeview-toggle {
|
|
19750
19873
|
margin-left: 0;
|
|
19751
19874
|
margin-right: -$treeview-indent;
|
|
19752
19875
|
|
|
19876
|
+
+ .k-checkbox-wrap,
|
|
19753
19877
|
+ .k-checkbox-wrapper {
|
|
19754
19878
|
margin-right: $icon-spacing;
|
|
19755
19879
|
}
|
|
19756
19880
|
}
|
|
19757
19881
|
|
|
19758
|
-
//
|
|
19759
|
-
.k-
|
|
19882
|
+
// Loading
|
|
19883
|
+
.k-treeview-loading {
|
|
19760
19884
|
margin-right: 0;
|
|
19761
19885
|
margin-left: $icon-spacing;
|
|
19762
19886
|
}
|
|
19763
19887
|
|
|
19764
|
-
//
|
|
19765
|
-
.k-
|
|
19766
|
-
.k-
|
|
19767
|
-
.k-in .k-sprite {
|
|
19768
|
-
margin-left: $icon-spacing;
|
|
19888
|
+
// Checkbox
|
|
19889
|
+
.k-checkbox-wrap,
|
|
19890
|
+
.k-checkbox-wrapper {
|
|
19769
19891
|
margin-right: 0;
|
|
19892
|
+
margin-left: $icon-spacing;
|
|
19893
|
+
}
|
|
19894
|
+
|
|
19895
|
+
// Treeview leaf
|
|
19896
|
+
.k-treeview-leaf,
|
|
19897
|
+
.k-in {
|
|
19898
|
+
.k-icon,
|
|
19899
|
+
.k-image,
|
|
19900
|
+
.k-sprite {
|
|
19901
|
+
margin-right: 0;
|
|
19902
|
+
margin-left: $icon-spacing;
|
|
19903
|
+
}
|
|
19770
19904
|
}
|
|
19771
19905
|
|
|
19772
19906
|
}
|
|
@@ -19776,22 +19910,27 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19776
19910
|
// #region @import "_theme.scss"; -> packages/default/scss/treeview/_theme.scss
|
|
19777
19911
|
@include exports("treeview/theme") {
|
|
19778
19912
|
|
|
19779
|
-
//
|
|
19913
|
+
// Treeview
|
|
19780
19914
|
.k-treeview {
|
|
19781
19915
|
@include fill(
|
|
19782
19916
|
$treeview-text,
|
|
19783
19917
|
$treeview-bg,
|
|
19784
19918
|
$treeview-border
|
|
19785
19919
|
);
|
|
19920
|
+
}
|
|
19786
19921
|
|
|
19787
19922
|
|
|
19788
|
-
|
|
19789
|
-
|
|
19923
|
+
// Treeview item
|
|
19924
|
+
.k-treeview-item {}
|
|
19790
19925
|
|
|
19791
19926
|
|
|
19792
|
-
|
|
19793
|
-
|
|
19794
|
-
|
|
19927
|
+
// Treeview leaf
|
|
19928
|
+
.k-treeview-leaf,
|
|
19929
|
+
.k-treeview .k-in {
|
|
19930
|
+
|
|
19931
|
+
// Hover state
|
|
19932
|
+
&:hover,
|
|
19933
|
+
&.k-state-hover {
|
|
19795
19934
|
@include fill(
|
|
19796
19935
|
$treeview-item-hovered-text,
|
|
19797
19936
|
$treeview-item-hovered-bg,
|
|
@@ -19799,7 +19938,15 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19799
19938
|
$treeview-item-hovered-gradient
|
|
19800
19939
|
);
|
|
19801
19940
|
}
|
|
19802
|
-
|
|
19941
|
+
|
|
19942
|
+
// Focus state
|
|
19943
|
+
&.k-state-focus,
|
|
19944
|
+
&.k-state-focused {
|
|
19945
|
+
@include box-shadow( $treeview-item-focused-shadow );
|
|
19946
|
+
}
|
|
19947
|
+
|
|
19948
|
+
// Selected state
|
|
19949
|
+
&.k-state-selected {
|
|
19803
19950
|
@include fill(
|
|
19804
19951
|
$treeview-item-selected-text,
|
|
19805
19952
|
$treeview-item-selected-bg,
|
|
@@ -19807,24 +19954,20 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19807
19954
|
$treeview-item-selected-gradient
|
|
19808
19955
|
);
|
|
19809
19956
|
}
|
|
19810
|
-
|
|
19811
|
-
@include box-shadow( $treeview-item-focused-shadow );
|
|
19812
|
-
}
|
|
19813
|
-
.k-in.k-state-selected.k-state-focused {
|
|
19814
|
-
@include box-shadow( $treeview-item-selected-focused-shadow );
|
|
19815
|
-
}
|
|
19957
|
+
}
|
|
19816
19958
|
|
|
19817
|
-
// LoadMore button
|
|
19818
|
-
.k-treeview-load-more-button {
|
|
19819
|
-
@include fill(
|
|
19820
|
-
$treeview-loadmore-text,
|
|
19821
|
-
$treeview-loadmore-bg,
|
|
19822
|
-
$treeview-loadmore-border
|
|
19823
|
-
);
|
|
19824
|
-
}
|
|
19825
19959
|
|
|
19826
|
-
|
|
19827
|
-
|
|
19960
|
+
// Treeview load more button
|
|
19961
|
+
.k-treeview .k-treeview-load-more-button {
|
|
19962
|
+
@include fill(
|
|
19963
|
+
$treeview-loadmore-text,
|
|
19964
|
+
$treeview-loadmore-bg,
|
|
19965
|
+
$treeview-loadmore-border
|
|
19966
|
+
);
|
|
19967
|
+
|
|
19968
|
+
// Hover state
|
|
19969
|
+
&:hover,
|
|
19970
|
+
&.k-state-hover {
|
|
19828
19971
|
@include fill(
|
|
19829
19972
|
$treeview-loadmore-hover-text,
|
|
19830
19973
|
$treeview-loadmore-hover-bg,
|
|
@@ -19832,8 +19975,10 @@ $treeview-loadmore-focus-shadow: none !default;
|
|
|
19832
19975
|
);
|
|
19833
19976
|
}
|
|
19834
19977
|
|
|
19835
|
-
|
|
19836
|
-
|
|
19978
|
+
// Focus state
|
|
19979
|
+
&:focus,
|
|
19980
|
+
&.k-state-focus,
|
|
19981
|
+
&.k-state-focused {
|
|
19837
19982
|
@include fill(
|
|
19838
19983
|
$treeview-loadmore-focus-text,
|
|
19839
19984
|
$treeview-loadmore-focus-bg,
|
|
@@ -20224,26 +20369,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20224
20369
|
// Component
|
|
20225
20370
|
// #region @import "_variables.scss"; -> packages/default/scss/searchbox/_variables.scss
|
|
20226
20371
|
// Searchbox
|
|
20227
|
-
$searchbox-padding-x: $input-padding-x !default;
|
|
20228
|
-
$searchbox-padding-y: $input-padding-y !default;
|
|
20229
|
-
$searchbox-border-width: $input-border-width !default;
|
|
20230
|
-
$searchbox-border-radius: $input-border-radius !default;
|
|
20231
|
-
|
|
20232
|
-
$searchbox-font-family: $input-font-family !default;
|
|
20233
|
-
$searchbox-font-size: $input-font-size !default;
|
|
20234
|
-
$searchbox-line-height: $input-line-height !default;
|
|
20235
|
-
|
|
20236
|
-
$searchbox-bg: $input-bg !default;
|
|
20237
|
-
$searchbox-text: $input-text !default;
|
|
20238
|
-
$searchbox-border: $input-border !default;
|
|
20239
|
-
|
|
20240
|
-
$searchbox-hover-bg: $input-hovered-bg !default;
|
|
20241
|
-
$searchbox-hover-text: $input-hovered-text !default;
|
|
20242
|
-
$searchbox-hover-border: $input-hovered-border !default;
|
|
20243
|
-
|
|
20244
|
-
$searchbox-focus-bg: $input-focused-bg !default;
|
|
20245
|
-
$searchbox-focus-text: $input-focused-text !default;
|
|
20246
|
-
$searchbox-focus-border: $input-focused-border !default;
|
|
20247
20372
|
|
|
20248
20373
|
// #endregion
|
|
20249
20374
|
// #region @import "_layout.scss"; -> packages/default/scss/searchbox/_layout.scss
|
|
@@ -20251,22 +20376,36 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
20251
20376
|
|
|
20252
20377
|
// Searchbox
|
|
20253
20378
|
.k-searchbox {
|
|
20254
|
-
@include border-radius( $
|
|
20255
|
-
|
|
20379
|
+
@include border-radius( $input-border-radius );
|
|
20380
|
+
width: $input-default-width;
|
|
20381
|
+
border-width: $input-border-width;
|
|
20256
20382
|
border-style: solid;
|
|
20257
20383
|
box-sizing: border-box;
|
|
20258
|
-
|
|
20259
|
-
font-
|
|
20260
|
-
|
|
20384
|
+
outline: 0;
|
|
20385
|
+
font-family: $input-font-family;
|
|
20386
|
+
font-size: $input-font-size;
|
|
20387
|
+
line-height: $input-line-height;
|
|
20388
|
+
text-align: start;
|
|
20389
|
+
white-space: nowrap;
|
|
20261
20390
|
display: inline-flex;
|
|
20262
|
-
align-items: center;
|
|
20263
|
-
vertical-align: middle;
|
|
20264
20391
|
flex-flow: row nowrap;
|
|
20392
|
+
vertical-align: middle;
|
|
20265
20393
|
position: relative;
|
|
20266
20394
|
overflow: hidden;
|
|
20395
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
20396
|
+
-webkit-touch-callout: none;
|
|
20397
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20267
20398
|
|
|
20399
|
+
// Input
|
|
20268
20400
|
> .k-input {
|
|
20269
|
-
padding: $
|
|
20401
|
+
padding: $input-padding-y $input-padding-x;
|
|
20402
|
+
}
|
|
20403
|
+
|
|
20404
|
+
|
|
20405
|
+
// Loading icon
|
|
20406
|
+
.k-i-loading {
|
|
20407
|
+
width: $input-icon-width;
|
|
20408
|
+
height: $input-icon-height;
|
|
20270
20409
|
}
|
|
20271
20410
|
}
|
|
20272
20411
|
|
|
@@ -20279,53 +20418,44 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
20279
20418
|
// Searchbox
|
|
20280
20419
|
.k-searchbox {
|
|
20281
20420
|
@include fill(
|
|
20282
|
-
$
|
|
20283
|
-
$
|
|
20284
|
-
$
|
|
20421
|
+
$input-text,
|
|
20422
|
+
$input-bg,
|
|
20423
|
+
$input-border
|
|
20285
20424
|
);
|
|
20286
20425
|
|
|
20287
|
-
|
|
20288
20426
|
// Hover state
|
|
20289
20427
|
&:hover,
|
|
20290
20428
|
&.k-state-hover {
|
|
20291
20429
|
@include fill(
|
|
20292
|
-
$
|
|
20293
|
-
$
|
|
20294
|
-
$
|
|
20430
|
+
$input-hovered-text,
|
|
20431
|
+
$input-hovered-bg,
|
|
20432
|
+
$input-hovered-border
|
|
20295
20433
|
);
|
|
20296
20434
|
}
|
|
20297
20435
|
|
|
20298
|
-
|
|
20299
20436
|
// Focus state
|
|
20300
20437
|
&:focus,
|
|
20301
|
-
// &:focus-within,
|
|
20302
20438
|
&.k-state-focus {
|
|
20303
20439
|
@include fill(
|
|
20304
|
-
$
|
|
20305
|
-
$
|
|
20306
|
-
$
|
|
20440
|
+
$input-focused-text,
|
|
20441
|
+
$input-focused-bg,
|
|
20442
|
+
$input-focused-border
|
|
20307
20443
|
);
|
|
20308
20444
|
@include box-shadow( $input-focused-shadow );
|
|
20309
20445
|
}
|
|
20310
20446
|
&:focus-within {
|
|
20311
20447
|
@include fill(
|
|
20312
|
-
$
|
|
20313
|
-
$
|
|
20314
|
-
$
|
|
20448
|
+
$input-focused-text,
|
|
20449
|
+
$input-focused-bg,
|
|
20450
|
+
$input-focused-border
|
|
20315
20451
|
);
|
|
20316
20452
|
@include box-shadow( $input-focused-shadow );
|
|
20317
20453
|
}
|
|
20318
20454
|
|
|
20319
20455
|
|
|
20320
|
-
//
|
|
20321
|
-
&:disabled,
|
|
20322
|
-
&.k-state-disabled {
|
|
20323
|
-
@include disabled( $disabled-styling );
|
|
20324
|
-
}
|
|
20325
|
-
|
|
20326
|
-
|
|
20327
|
-
// Invalid
|
|
20456
|
+
// Invalid state
|
|
20328
20457
|
&.k-invalid,
|
|
20458
|
+
&.ng-invalid,
|
|
20329
20459
|
&.k-state-invalid {
|
|
20330
20460
|
border-color: $invalid-border;
|
|
20331
20461
|
|
|
@@ -20333,13 +20463,13 @@ $searchbox-focus-border: $input-focused-border !default;
|
|
|
20333
20463
|
color: $invalid-text;
|
|
20334
20464
|
}
|
|
20335
20465
|
|
|
20336
|
-
&:focus,
|
|
20466
|
+
&:focus-within,
|
|
20337
20467
|
&.k-state-focus {
|
|
20338
20468
|
@include box-shadow($invalid-shadow);
|
|
20339
20469
|
}
|
|
20340
20470
|
}
|
|
20341
|
-
|
|
20342
20471
|
}
|
|
20472
|
+
|
|
20343
20473
|
}
|
|
20344
20474
|
|
|
20345
20475
|
// #endregion
|
|
@@ -21532,7 +21662,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21532
21662
|
$appbar-margin-y: null !default;
|
|
21533
21663
|
$appbar-margin-x: null !default;
|
|
21534
21664
|
$appbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
21535
|
-
$appbar-padding-x: map-get( $spacing,
|
|
21665
|
+
$appbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
21536
21666
|
$appbar-border-width: 0px !default;
|
|
21537
21667
|
|
|
21538
21668
|
$appbar-zindex: 1000 !default;
|
|
@@ -22159,10 +22289,12 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22159
22289
|
|
|
22160
22290
|
// Menu item
|
|
22161
22291
|
.k-menu-item {
|
|
22292
|
+
box-sizing: border-box;
|
|
22162
22293
|
border-width: 0;
|
|
22163
22294
|
outline: 0;
|
|
22164
22295
|
display: flex;
|
|
22165
|
-
flex:
|
|
22296
|
+
flex-flow: column nowrap;
|
|
22297
|
+
flex: none;
|
|
22166
22298
|
position: relative;
|
|
22167
22299
|
user-select: none;
|
|
22168
22300
|
}
|
|
@@ -22174,7 +22306,7 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22174
22306
|
outline: 0;
|
|
22175
22307
|
color: inherit;
|
|
22176
22308
|
display: flex;
|
|
22177
|
-
flex-
|
|
22309
|
+
flex-flow: row nowrap;
|
|
22178
22310
|
flex: 1 1 auto;
|
|
22179
22311
|
align-items: center;
|
|
22180
22312
|
position: relative;
|
|
@@ -22189,10 +22321,22 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22189
22321
|
}
|
|
22190
22322
|
|
|
22191
22323
|
|
|
22324
|
+
// Menu item text
|
|
22325
|
+
.k-menu-link-text {
|
|
22326
|
+
flex: 1 1 auto;
|
|
22327
|
+
overflow: hidden;
|
|
22328
|
+
text-overflow: ellipsis;
|
|
22329
|
+
}
|
|
22330
|
+
|
|
22331
|
+
|
|
22192
22332
|
// Expand arrow
|
|
22193
22333
|
.k-menu-expand-arrow {
|
|
22194
22334
|
margin-left: $icon-spacing;
|
|
22195
22335
|
margin-right: -$icon-spacing;
|
|
22336
|
+
display: inline-flex;
|
|
22337
|
+
flex-flow: row wrap;
|
|
22338
|
+
align-items: center;
|
|
22339
|
+
flex: none;
|
|
22196
22340
|
position: relative;
|
|
22197
22341
|
}
|
|
22198
22342
|
.k-menu-expand-arrow.k-i-arrow-60-left,
|
|
@@ -22239,6 +22383,14 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22239
22383
|
> .k-menu-item > .k-menu-link {
|
|
22240
22384
|
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
22241
22385
|
padding-right: $menu-popup-item-padding-end;
|
|
22386
|
+
|
|
22387
|
+
.k-menu-expand-arrow {
|
|
22388
|
+
margin: 0;
|
|
22389
|
+
position: absolute;
|
|
22390
|
+
top: 50%;
|
|
22391
|
+
transform: translateY(-50%);
|
|
22392
|
+
right: $icon-spacing;
|
|
22393
|
+
}
|
|
22242
22394
|
}
|
|
22243
22395
|
|
|
22244
22396
|
> .k-separator {
|
|
@@ -22291,6 +22443,14 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22291
22443
|
.k-menu-link {
|
|
22292
22444
|
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
22293
22445
|
padding-right: $menu-popup-item-padding-end;
|
|
22446
|
+
|
|
22447
|
+
.k-menu-expand-arrow {
|
|
22448
|
+
margin: 0;
|
|
22449
|
+
position: absolute;
|
|
22450
|
+
top: 50%;
|
|
22451
|
+
transform: translateY(-50%);
|
|
22452
|
+
right: $icon-spacing;
|
|
22453
|
+
}
|
|
22294
22454
|
}
|
|
22295
22455
|
|
|
22296
22456
|
.k-separator {
|
|
@@ -22298,7 +22458,7 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22298
22458
|
height: 0;
|
|
22299
22459
|
border-width: 1px 0 0;
|
|
22300
22460
|
border-style: solid;
|
|
22301
|
-
border-color: $
|
|
22461
|
+
border-color: $component-border;
|
|
22302
22462
|
display: block;
|
|
22303
22463
|
}
|
|
22304
22464
|
}
|
|
@@ -22326,11 +22486,14 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22326
22486
|
.k-context-menu-popup {
|
|
22327
22487
|
z-index: 12000;
|
|
22328
22488
|
|
|
22329
|
-
> .k-popup:not(.k-menu-popup),
|
|
22330
22489
|
.k-context-menu {
|
|
22331
|
-
border: 0;
|
|
22490
|
+
border-width: 0;
|
|
22332
22491
|
}
|
|
22333
22492
|
}
|
|
22493
|
+
.k-popup .k-context-menu,
|
|
22494
|
+
.k-context-menu-popup .k-context-menu {
|
|
22495
|
+
border-width: 0;
|
|
22496
|
+
}
|
|
22334
22497
|
|
|
22335
22498
|
|
|
22336
22499
|
// Scrolling
|
|
@@ -22420,6 +22583,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22420
22583
|
> .k-menu-item > .k-menu-link {
|
|
22421
22584
|
padding-right: $menu-popup-item-padding-x;
|
|
22422
22585
|
padding-left: $menu-popup-item-padding-end;
|
|
22586
|
+
|
|
22587
|
+
.k-menu-expand-arrow {
|
|
22588
|
+
right: auto;
|
|
22589
|
+
left: $icon-spacing;
|
|
22590
|
+
}
|
|
22423
22591
|
}
|
|
22424
22592
|
}
|
|
22425
22593
|
|
|
@@ -22430,6 +22598,11 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22430
22598
|
.k-menu-link {
|
|
22431
22599
|
padding-right: $menu-popup-item-padding-x;
|
|
22432
22600
|
padding-left: $menu-popup-item-padding-end;
|
|
22601
|
+
|
|
22602
|
+
.k-menu-expand-arrow {
|
|
22603
|
+
right: auto;
|
|
22604
|
+
left: $icon-spacing;
|
|
22605
|
+
}
|
|
22433
22606
|
}
|
|
22434
22607
|
|
|
22435
22608
|
}
|
|
@@ -22468,7 +22641,8 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22468
22641
|
);
|
|
22469
22642
|
}
|
|
22470
22643
|
|
|
22471
|
-
> .k-state-active
|
|
22644
|
+
> .k-state-active,
|
|
22645
|
+
&.k-state-selected {
|
|
22472
22646
|
@include fill(
|
|
22473
22647
|
$menu-item-expanded-text,
|
|
22474
22648
|
$menu-item-expanded-bg,
|
|
@@ -22478,6 +22652,7 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22478
22652
|
}
|
|
22479
22653
|
|
|
22480
22654
|
&:focus,
|
|
22655
|
+
&.k-state-focus,
|
|
22481
22656
|
&.k-state-focused {
|
|
22482
22657
|
@include box-shadow( $menu-item-focus-shadow );
|
|
22483
22658
|
}
|
|
@@ -22511,7 +22686,8 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22511
22686
|
);
|
|
22512
22687
|
}
|
|
22513
22688
|
|
|
22514
|
-
> .k-state-active
|
|
22689
|
+
> .k-state-active,
|
|
22690
|
+
&.k-state-selected {
|
|
22515
22691
|
@include fill(
|
|
22516
22692
|
$menu-popup-item-expanded-text,
|
|
22517
22693
|
$menu-popup-item-expanded-bg,
|
|
@@ -22521,6 +22697,7 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22521
22697
|
}
|
|
22522
22698
|
|
|
22523
22699
|
&:focus,
|
|
22700
|
+
&.k-state-focus,
|
|
22524
22701
|
&.k-state-focused {
|
|
22525
22702
|
@include box-shadow( $menu-popup-item-focus-shadow );
|
|
22526
22703
|
}
|
|
@@ -23845,15 +24022,15 @@ $card-footer-text: $header-text !default;
|
|
|
23845
24022
|
$card-footer-border: $header-border !default;
|
|
23846
24023
|
|
|
23847
24024
|
$card-title-margin-bottom: map-get( $spacing, sm ) !default;
|
|
23848
|
-
$card-title-font-size: $font-size
|
|
23849
|
-
$card-title-font-family:
|
|
23850
|
-
$card-title-line-height:
|
|
24025
|
+
$card-title-font-size: $h5-font-size !default;
|
|
24026
|
+
$card-title-font-family: null !default;
|
|
24027
|
+
$card-title-line-height: 1.25 !default;
|
|
23851
24028
|
$card-title-font-weight: $font-weight-normal !default;
|
|
23852
24029
|
$card-title-letter-spacing: null !default;
|
|
23853
24030
|
|
|
23854
24031
|
$card-subtitle-margin-bottom: map-get( $spacing, sm ) !default;
|
|
23855
24032
|
$card-subtitle-font-size: $font-size-sm !default;
|
|
23856
|
-
$card-subtitle-font-family:
|
|
24033
|
+
$card-subtitle-font-family: null !default;
|
|
23857
24034
|
$card-subtitle-line-height: normal !default;
|
|
23858
24035
|
$card-subtitle-font-weight: $font-weight-normal !default;
|
|
23859
24036
|
$card-subtitle-letter-spacing: null !default;
|
|
@@ -25262,7 +25439,7 @@ $pager-number-focus-opacity: .12 !default;
|
|
|
25262
25439
|
$pager-number-focus-bg: transparent !default;
|
|
25263
25440
|
$pager-number-focus-shadow: inset 0 0 0 2px rgba($pager-number-selected-bg, $pager-number-focus-opacity) !default;
|
|
25264
25441
|
|
|
25265
|
-
$pager-input-width:
|
|
25442
|
+
$pager-input-width: 5em !default;
|
|
25266
25443
|
$pager-dropdown-width: 5em !default;
|
|
25267
25444
|
|
|
25268
25445
|
// #endregion
|
|
@@ -28283,14 +28460,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28283
28460
|
}
|
|
28284
28461
|
}
|
|
28285
28462
|
|
|
28286
|
-
.k-grid-filter-menu {
|
|
28287
|
-
|
|
28288
|
-
.k-filter-selected-items {
|
|
28289
|
-
margin: 1em;
|
|
28290
|
-
font-weight: normal;
|
|
28291
|
-
}
|
|
28292
|
-
}
|
|
28293
|
-
|
|
28294
28463
|
.k-grid-edit-form {
|
|
28295
28464
|
|
|
28296
28465
|
.k-popup-edit-form,
|
|
@@ -28299,10 +28468,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28299
28468
|
min-width: auto;
|
|
28300
28469
|
}
|
|
28301
28470
|
}
|
|
28302
|
-
|
|
28303
|
-
.k-grid .k-grid-search {
|
|
28304
|
-
width: 100%;
|
|
28305
|
-
}
|
|
28306
28471
|
}
|
|
28307
28472
|
|
|
28308
28473
|
.k-grid.k-grid-mobile {
|
|
@@ -28569,39 +28734,18 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28569
28734
|
|
|
28570
28735
|
.k-pane-wrapper {
|
|
28571
28736
|
|
|
28572
|
-
.k-
|
|
28573
|
-
|
|
28574
|
-
.k-grid-filter-menu,
|
|
28575
|
-
.k-scheduler-edit-form {
|
|
28576
|
-
|
|
28577
|
-
> .k-header {
|
|
28578
|
-
display: flex;
|
|
28579
|
-
justify-content: space-between;
|
|
28580
|
-
padding: .3em .6em;
|
|
28581
|
-
width: auto;
|
|
28582
|
-
line-height: 2em;
|
|
28583
|
-
|
|
28584
|
-
.k-header-done,
|
|
28585
|
-
.k-header-cancel {
|
|
28586
|
-
display: flex;
|
|
28587
|
-
flex-direction: row;
|
|
28588
|
-
align-items: center;
|
|
28589
|
-
|
|
28590
|
-
.k-icon {
|
|
28591
|
-
font-size: 1.5em;
|
|
28592
|
-
}
|
|
28593
|
-
}
|
|
28594
|
-
}
|
|
28737
|
+
.k-appbar {
|
|
28738
|
+
padding: map-get( $spacing, 1 );
|
|
28595
28739
|
}
|
|
28596
28740
|
|
|
28597
28741
|
.k-list-title,
|
|
28598
|
-
.k-filter-help-text
|
|
28599
|
-
.k-list-group-header {
|
|
28742
|
+
.k-filter-help-text {
|
|
28600
28743
|
padding: $listgroup-item-padding-y $listgroup-item-padding-x;
|
|
28601
28744
|
display: block;
|
|
28602
28745
|
}
|
|
28603
28746
|
|
|
28604
|
-
.k-
|
|
28747
|
+
.k-listgroup-title {
|
|
28748
|
+
padding: $listgroup-item-padding-y $listgroup-item-padding-x;
|
|
28605
28749
|
font-weight: bold;
|
|
28606
28750
|
text-transform: uppercase;
|
|
28607
28751
|
}
|
|
@@ -28613,31 +28757,56 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28613
28757
|
}
|
|
28614
28758
|
}
|
|
28615
28759
|
.k-listgroup + .k-listgroup {
|
|
28616
|
-
margin-top:
|
|
28760
|
+
margin-top: map-get( $spacing, 4 );
|
|
28617
28761
|
}
|
|
28618
28762
|
|
|
28619
28763
|
// Column menu
|
|
28620
28764
|
.k-column-menu {
|
|
28765
|
+
padding: map-get( $spacing, 2 );
|
|
28766
|
+
display: flex;
|
|
28767
|
+
flex-flow: column nowrap;
|
|
28768
|
+
gap: map-get( $spacing, 2 );
|
|
28621
28769
|
|
|
28622
28770
|
.k-filter-item .k-filterable * {
|
|
28623
28771
|
pointer-events: none;
|
|
28624
28772
|
}
|
|
28773
|
+
|
|
28774
|
+
.k-list-title,
|
|
28775
|
+
.k-listgroup-title {
|
|
28776
|
+
padding: 0;
|
|
28777
|
+
}
|
|
28778
|
+
|
|
28779
|
+
.k-listgroup {
|
|
28780
|
+
margin-inline: -#{map-get( $spacing, 2 )};
|
|
28781
|
+
}
|
|
28625
28782
|
}
|
|
28626
28783
|
|
|
28627
28784
|
// Filter menu
|
|
28628
28785
|
.k-filter-menu {
|
|
28786
|
+
padding: map-get( $spacing, 2 );
|
|
28787
|
+
display: flex;
|
|
28788
|
+
flex-flow: column nowrap;
|
|
28789
|
+
gap: map-get( $spacing, 2 );
|
|
28629
28790
|
|
|
28630
|
-
.k-
|
|
28631
|
-
|
|
28632
|
-
|
|
28791
|
+
.k-list-title {
|
|
28792
|
+
padding: 0;
|
|
28793
|
+
}
|
|
28794
|
+
|
|
28795
|
+
.k-list-filter {
|
|
28796
|
+
padding: 0;
|
|
28633
28797
|
display: flex;
|
|
28634
|
-
|
|
28798
|
+
flex-flow: column nowrap;
|
|
28799
|
+
gap: inherit;
|
|
28635
28800
|
}
|
|
28636
28801
|
|
|
28637
28802
|
.k-filter-tools {
|
|
28638
|
-
margin: 1em;
|
|
28639
28803
|
display: flex;
|
|
28640
|
-
|
|
28804
|
+
flex-flow: row nowrap;
|
|
28805
|
+
gap: inherit;
|
|
28806
|
+
}
|
|
28807
|
+
|
|
28808
|
+
.k-listgroup {
|
|
28809
|
+
margin-inline: -#{map-get( $spacing, 2 )};
|
|
28641
28810
|
}
|
|
28642
28811
|
}
|
|
28643
28812
|
|
|
@@ -28661,7 +28830,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28661
28830
|
}
|
|
28662
28831
|
|
|
28663
28832
|
// Pager
|
|
28664
|
-
|
|
28665
28833
|
.k-pager-wrap.k-pager-sm {
|
|
28666
28834
|
justify-content: center;
|
|
28667
28835
|
|
|
@@ -28671,47 +28839,14 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28671
28839
|
|
|
28672
28840
|
}
|
|
28673
28841
|
|
|
28674
|
-
// IE
|
|
28675
|
-
|
|
28676
|
-
.k-ie & {
|
|
28677
|
-
|
|
28678
|
-
.k-scheduler {
|
|
28679
|
-
.k-scheduler-toolbar,
|
|
28680
|
-
.k-scheduler-footer {
|
|
28681
|
-
line-height: 2em;
|
|
28682
|
-
}
|
|
28683
|
-
}
|
|
28684
|
-
|
|
28685
|
-
.k-grid {
|
|
28686
|
-
|
|
28687
|
-
.k-icon {
|
|
28688
|
-
text-indent: 0;
|
|
28689
|
-
}
|
|
28690
|
-
}
|
|
28691
|
-
}
|
|
28692
|
-
|
|
28693
28842
|
// RTL
|
|
28694
|
-
|
|
28695
28843
|
.k-rtl &,
|
|
28696
28844
|
&[dir="rtl"],
|
|
28697
28845
|
[dir="rtl"] & {
|
|
28698
28846
|
|
|
28699
|
-
.k-
|
|
28700
|
-
.k-
|
|
28701
|
-
|
|
28702
|
-
.k-scheduler-edit-form {
|
|
28703
|
-
|
|
28704
|
-
> .k-header {
|
|
28705
|
-
flex-direction: row-reverse;
|
|
28706
|
-
}
|
|
28707
|
-
}
|
|
28708
|
-
|
|
28709
|
-
.k-filter-menu {
|
|
28710
|
-
|
|
28711
|
-
.k-space-right > .k-i-zoom {
|
|
28712
|
-
left: 15px;
|
|
28713
|
-
right: auto;
|
|
28714
|
-
}
|
|
28847
|
+
.k-header-cancel .k-i-arrow-chevron-left,
|
|
28848
|
+
.k-listgroup-item .k-select .k-i-arrow-chevron-right {
|
|
28849
|
+
transform: scaleX( -1 );
|
|
28715
28850
|
}
|
|
28716
28851
|
|
|
28717
28852
|
.k-scheduler-mobile {
|
|
@@ -28733,10 +28868,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28733
28868
|
margin-right: 0;
|
|
28734
28869
|
}
|
|
28735
28870
|
}
|
|
28736
|
-
|
|
28737
|
-
.k-scheduler-edit-form .k-item .k-i-arrow-chevron-right {
|
|
28738
|
-
transform: scaleX(-1);
|
|
28739
|
-
}
|
|
28740
28871
|
}
|
|
28741
28872
|
}
|
|
28742
28873
|
}
|
|
@@ -28811,15 +28942,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28811
28942
|
.k-grid-filter-menu,
|
|
28812
28943
|
.k-scheduler-edit-form {
|
|
28813
28944
|
|
|
28814
|
-
.k-header {
|
|
28815
|
-
color: $adaptive-menu-text;
|
|
28816
|
-
background-color: $adaptive-menu-bg;
|
|
28817
|
-
|
|
28818
|
-
.k-link {
|
|
28819
|
-
color: inherit;
|
|
28820
|
-
}
|
|
28821
|
-
}
|
|
28822
|
-
|
|
28823
28945
|
.k-item,
|
|
28824
28946
|
.k-link {
|
|
28825
28947
|
color: $base-text;
|
|
@@ -28933,7 +29055,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28933
29055
|
// be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
|
|
28934
29056
|
$grid-command-cell-padding-y: calc( #{$table-cell-padding-y} - (#{$button-calc-size} - #{$line-height-em}) / 2 ) !default;
|
|
28935
29057
|
|
|
28936
|
-
$grid-form-component-vertical-align: middle !default;
|
|
28937
29058
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
28938
29059
|
|
|
28939
29060
|
$grid-group-indicator-border-radius: $border-radius !default;
|
|
@@ -29331,12 +29452,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29331
29452
|
}
|
|
29332
29453
|
|
|
29333
29454
|
|
|
29334
|
-
// Grid search
|
|
29335
|
-
.k-grid-search {
|
|
29336
|
-
width: $grid-search-width;
|
|
29337
|
-
}
|
|
29338
|
-
|
|
29339
|
-
|
|
29340
29455
|
// Grouping header
|
|
29341
29456
|
.k-grouping-header {
|
|
29342
29457
|
padding: $grid-grouping-header-padding-y $grid-grouping-header-padding-x;
|
|
@@ -29634,14 +29749,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29634
29749
|
padding: 4px 8px;
|
|
29635
29750
|
}
|
|
29636
29751
|
|
|
29637
|
-
.k-grid-columnmenu-popup {
|
|
29638
|
-
width: 230px;
|
|
29639
|
-
|
|
29640
|
-
&.k-popup {
|
|
29641
|
-
padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
|
|
29642
|
-
}
|
|
29643
|
-
}
|
|
29644
|
-
|
|
29645
29752
|
// Filter row
|
|
29646
29753
|
.k-filter-row {
|
|
29647
29754
|
line-height: $form-line-height;
|
|
@@ -29725,6 +29832,18 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29725
29832
|
}
|
|
29726
29833
|
|
|
29727
29834
|
|
|
29835
|
+
// Checkboxes
|
|
29836
|
+
.k-grid th,
|
|
29837
|
+
.k-grid td {
|
|
29838
|
+
> .k-radio,
|
|
29839
|
+
> .k-radio-wrap,
|
|
29840
|
+
> .k-checkbox,
|
|
29841
|
+
> .k-checkbox-wrap {
|
|
29842
|
+
vertical-align: top;
|
|
29843
|
+
}
|
|
29844
|
+
}
|
|
29845
|
+
|
|
29846
|
+
|
|
29728
29847
|
// Edit row
|
|
29729
29848
|
.k-grid .k-edit-cell,
|
|
29730
29849
|
.k-grid .k-command-cell,
|
|
@@ -29741,13 +29860,19 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29741
29860
|
> .k-textbox,
|
|
29742
29861
|
> .k-widget:not(.k-switch) {
|
|
29743
29862
|
width: 100%;
|
|
29744
|
-
vertical-align:
|
|
29863
|
+
vertical-align: middle;
|
|
29745
29864
|
box-sizing: border-box;
|
|
29746
29865
|
}
|
|
29866
|
+
> .k-radio,
|
|
29867
|
+
> .k-checkbox,
|
|
29868
|
+
> .k-radio-wrap,
|
|
29869
|
+
> .k-checkbox-wrap {
|
|
29870
|
+
vertical-align: middle;
|
|
29871
|
+
}
|
|
29747
29872
|
}
|
|
29748
29873
|
|
|
29749
29874
|
.k-grid .k-command-cell > .k-button {
|
|
29750
|
-
vertical-align:
|
|
29875
|
+
vertical-align: middle;
|
|
29751
29876
|
}
|
|
29752
29877
|
.k-grid .k-command-cell > .k-button + .k-button {
|
|
29753
29878
|
margin-left: $grid-command-cell-button-spacing;
|
|
@@ -30126,79 +30251,89 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30126
30251
|
|
|
30127
30252
|
@include exports( "filtermenu/layout" ) {
|
|
30128
30253
|
|
|
30129
|
-
|
|
30130
|
-
.k-
|
|
30131
|
-
|
|
30132
|
-
.k-filter-menu-container {
|
|
30133
|
-
width: $grid-filter-menu-width;
|
|
30134
|
-
}
|
|
30254
|
+
// Filter menu
|
|
30255
|
+
.k-filter-menu-popup {
|
|
30256
|
+
width: $grid-column-menu-width;
|
|
30135
30257
|
}
|
|
30258
|
+
.k-filter-menu {
|
|
30259
|
+
box-sizing: border-box;
|
|
30260
|
+
}
|
|
30261
|
+
.k-filter-menu-container {
|
|
30262
|
+
padding: map-get( $spacing, 2 );
|
|
30263
|
+
box-sizing: border-box;
|
|
30264
|
+
display: flex;
|
|
30265
|
+
flex-flow: column nowrap;
|
|
30266
|
+
align-items: stretch;
|
|
30267
|
+
gap: map-get( $spacing, 2 );
|
|
30136
30268
|
|
|
30137
|
-
|
|
30138
|
-
|
|
30139
|
-
.k-popup .k-filter-menu,
|
|
30140
|
-
.k-popup .k-grid-filter-popup {
|
|
30141
|
-
.k-multicheck-wrap {
|
|
30142
|
-
padding: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x 0;
|
|
30143
|
-
|
|
30144
|
-
.k-item {
|
|
30145
|
-
padding: $grid-column-menu-list-item-padding-y 0;
|
|
30146
|
-
}
|
|
30147
|
-
|
|
30148
|
-
.k-check-all-wrap {
|
|
30149
|
-
padding-bottom: ($grid-column-menu-list-item-padding-y * 2);
|
|
30150
|
-
border-bottom-width: $grid-filter-menu-check-all-border-bottom-width;
|
|
30151
|
-
border-bottom-style: solid;
|
|
30152
|
-
}
|
|
30269
|
+
> * {
|
|
30270
|
+
width: 100%;
|
|
30153
30271
|
}
|
|
30154
30272
|
|
|
30155
|
-
.k-
|
|
30156
|
-
|
|
30273
|
+
.k-switch,
|
|
30274
|
+
.k-filter-and {
|
|
30275
|
+
width: min-content;
|
|
30276
|
+
align-self: start;
|
|
30157
30277
|
}
|
|
30158
30278
|
|
|
30159
|
-
.k-
|
|
30160
|
-
|
|
30279
|
+
.k-actions {
|
|
30280
|
+
margin: 0;
|
|
30281
|
+
padding: 0;
|
|
30161
30282
|
}
|
|
30162
|
-
}
|
|
30163
30283
|
|
|
30164
|
-
|
|
30165
|
-
|
|
30166
|
-
|
|
30167
|
-
|
|
30284
|
+
// Angular specific
|
|
30285
|
+
kendo-numeric-filter-menu,
|
|
30286
|
+
kendo-grid-string-filter-menu,
|
|
30287
|
+
kendo-grid-date-filter-menu,
|
|
30288
|
+
kendo-grid-filter-menu-input-wrapper {
|
|
30289
|
+
display: flex;
|
|
30290
|
+
flex-flow: column nowrap;
|
|
30291
|
+
align-items: stretch;
|
|
30292
|
+
gap: map-get( $spacing, 2 );
|
|
30168
30293
|
|
|
30169
|
-
|
|
30170
|
-
|
|
30294
|
+
> * {
|
|
30295
|
+
width: 100%;
|
|
30296
|
+
}
|
|
30171
30297
|
}
|
|
30298
|
+
}
|
|
30299
|
+
.k-ie .k-filter-menu-container {
|
|
30300
|
+
> * { margin-top: map-get( $spacing, 2 ); }
|
|
30301
|
+
> :first-child { margin-top: 0; }
|
|
30172
30302
|
|
|
30173
|
-
|
|
30174
|
-
.k-
|
|
30175
|
-
|
|
30176
|
-
|
|
30177
|
-
margin: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x 0;
|
|
30178
|
-
width: calc( 100% - ( 2 * #{$grid-filter-menu-item-spacing-x} ) );
|
|
30179
|
-
box-sizing: border-box;
|
|
30180
|
-
display: flex;
|
|
30303
|
+
// Angular specific
|
|
30304
|
+
.k-filter-and,
|
|
30305
|
+
kendo-grid-filter-menu-input-wrapper > * {
|
|
30306
|
+
margin-top: map-get( $spacing, 2 );
|
|
30181
30307
|
}
|
|
30182
|
-
|
|
30183
|
-
|
|
30184
|
-
width: 6em;
|
|
30308
|
+
kendo-grid-filter-menu-input-wrapper > :first-child {
|
|
30309
|
+
margin-top: 0;
|
|
30185
30310
|
}
|
|
30311
|
+
}
|
|
30186
30312
|
|
|
30187
|
-
|
|
30188
|
-
|
|
30189
|
-
display: inline-flex;
|
|
30190
|
-
}
|
|
30313
|
+
.k-filter-menu.k-popup,
|
|
30314
|
+
.k-grid-filter-popup.k-popup {
|
|
30191
30315
|
|
|
30192
|
-
.k-
|
|
30193
|
-
width: $
|
|
30194
|
-
display: inline-flex;
|
|
30316
|
+
.k-filter-menu-container {
|
|
30317
|
+
width: $grid-column-menu-width;
|
|
30195
30318
|
}
|
|
30196
30319
|
}
|
|
30197
30320
|
|
|
30198
|
-
.k-multicheck-wrap {
|
|
30321
|
+
.k-popup .k-multicheck-wrap {
|
|
30322
|
+
margin: 0;
|
|
30323
|
+
padding: 0;
|
|
30199
30324
|
max-height: 300px;
|
|
30325
|
+
font-size: $list-font-size;
|
|
30326
|
+
line-height: $list-line-height;
|
|
30200
30327
|
white-space: nowrap;
|
|
30201
30328
|
overflow: auto;
|
|
30329
|
+
list-style: none;
|
|
30330
|
+
|
|
30331
|
+
.k-item,
|
|
30332
|
+
.k-check-all-wrap {
|
|
30333
|
+
padding: $grid-column-menu-list-item-padding-y $grid-column-menu-list-item-padding-x;
|
|
30334
|
+
display: flex;
|
|
30335
|
+
flex-flow: row nowrap;
|
|
30336
|
+
}
|
|
30202
30337
|
}
|
|
30203
30338
|
|
|
30204
30339
|
.k-filter-selected-items {
|
|
@@ -30233,6 +30368,43 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30233
30368
|
}
|
|
30234
30369
|
|
|
30235
30370
|
@include exports("columnmenu/layout") {
|
|
30371
|
+
|
|
30372
|
+
// Column menu
|
|
30373
|
+
.k-column-menu-popup,
|
|
30374
|
+
.k-grid-columnmenu-popup {
|
|
30375
|
+
width: $grid-column-menu-width;
|
|
30376
|
+
box-sizing: border-box;
|
|
30377
|
+
|
|
30378
|
+
&.k-popup {
|
|
30379
|
+
padding: $grid-column-menu-popup-padding-y $grid-column-menu-popup-padding-x;
|
|
30380
|
+
}
|
|
30381
|
+
.k-popup > & {
|
|
30382
|
+
width: 100%;
|
|
30383
|
+
}
|
|
30384
|
+
|
|
30385
|
+
.k-actions {
|
|
30386
|
+
margin: 0;
|
|
30387
|
+
}
|
|
30388
|
+
|
|
30389
|
+
}
|
|
30390
|
+
.k-column-menu {
|
|
30391
|
+
box-sizing: border-box;
|
|
30392
|
+
|
|
30393
|
+
.k-menu:not(.k-context-menu) {
|
|
30394
|
+
font-weight: 400;
|
|
30395
|
+
}
|
|
30396
|
+
|
|
30397
|
+
.k-expander {
|
|
30398
|
+
border: 0;
|
|
30399
|
+
background: inherit;
|
|
30400
|
+
|
|
30401
|
+
.k-columnmenu-item {
|
|
30402
|
+
display: flex;
|
|
30403
|
+
align-items: center;
|
|
30404
|
+
}
|
|
30405
|
+
}
|
|
30406
|
+
}
|
|
30407
|
+
|
|
30236
30408
|
.k-column-list {
|
|
30237
30409
|
padding: 0;
|
|
30238
30410
|
margin: 0;
|
|
@@ -30248,10 +30420,17 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30248
30420
|
}
|
|
30249
30421
|
|
|
30250
30422
|
.k-column-list-item {
|
|
30251
|
-
position: relative;
|
|
30252
|
-
display: block;
|
|
30253
30423
|
margin: 0;
|
|
30424
|
+
display: flex;
|
|
30425
|
+
flex-flow: row nowrap;
|
|
30426
|
+
align-items: center;
|
|
30427
|
+
gap: 4px;
|
|
30254
30428
|
cursor: pointer;
|
|
30429
|
+
position: relative;
|
|
30430
|
+
|
|
30431
|
+
.k-checkbox-label {
|
|
30432
|
+
margin: 0;
|
|
30433
|
+
}
|
|
30255
30434
|
}
|
|
30256
30435
|
|
|
30257
30436
|
.k-columns-items-wrap {
|
|
@@ -30277,16 +30456,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30277
30456
|
overflow: hidden;
|
|
30278
30457
|
}
|
|
30279
30458
|
|
|
30280
|
-
.k-filter-menu,
|
|
30281
|
-
.k-column-list-wrapper,
|
|
30282
|
-
.k-columnmenu-item-content {
|
|
30283
|
-
|
|
30284
|
-
.k-actions {
|
|
30285
|
-
margin-top: ($grid-filter-menu-item-spacing-y / 2);
|
|
30286
|
-
padding: $grid-filter-menu-item-spacing-y $grid-filter-menu-item-spacing-x;
|
|
30287
|
-
}
|
|
30288
|
-
}
|
|
30289
|
-
|
|
30290
30459
|
.k-column-menu-group-header {
|
|
30291
30460
|
padding: $grid-column-menu-group-header-padding-y $grid-column-menu-group-header-padding-x;
|
|
30292
30461
|
display: flex;
|
|
@@ -30305,22 +30474,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30305
30474
|
flex: 1 1 auto;
|
|
30306
30475
|
}
|
|
30307
30476
|
|
|
30308
|
-
.k-column-menu {
|
|
30309
|
-
.k-menu:not(.k-context-menu) {
|
|
30310
|
-
font-weight: 400;
|
|
30311
|
-
}
|
|
30312
|
-
|
|
30313
|
-
.k-expander {
|
|
30314
|
-
border: 0;
|
|
30315
|
-
background: inherit;
|
|
30316
|
-
|
|
30317
|
-
.k-columnmenu-item {
|
|
30318
|
-
display: flex;
|
|
30319
|
-
align-items: center;
|
|
30320
|
-
}
|
|
30321
|
-
}
|
|
30322
|
-
}
|
|
30323
|
-
|
|
30324
30477
|
[dir="rtl"],
|
|
30325
30478
|
.k-rtl {
|
|
30326
30479
|
.k-columnmenu-item > .k-icon {
|
|
@@ -30888,7 +31041,7 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
30888
31041
|
.k-listview {
|
|
30889
31042
|
margin: 0;
|
|
30890
31043
|
padding: 0;
|
|
30891
|
-
border-width:
|
|
31044
|
+
border-width: 0;
|
|
30892
31045
|
border-style: solid;
|
|
30893
31046
|
box-sizing: border-box;
|
|
30894
31047
|
outline: 0;
|
|
@@ -30908,7 +31061,6 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
30908
31061
|
// Header
|
|
30909
31062
|
.k-listview-header {
|
|
30910
31063
|
border-width: 0;
|
|
30911
|
-
border-bottom-width: $listview-border-width;
|
|
30912
31064
|
border-style: solid;
|
|
30913
31065
|
border-color: inherit;
|
|
30914
31066
|
}
|
|
@@ -30917,7 +31069,7 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
30917
31069
|
}
|
|
30918
31070
|
|
|
30919
31071
|
|
|
30920
|
-
// Listview
|
|
31072
|
+
// Listview content
|
|
30921
31073
|
.k-listview-content {
|
|
30922
31074
|
margin: 0;
|
|
30923
31075
|
padding: 0;
|
|
@@ -30972,7 +31124,6 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
30972
31124
|
// Listview footer
|
|
30973
31125
|
.k-listview-footer {
|
|
30974
31126
|
border-width: 0;
|
|
30975
|
-
border-top-width: $listview-border-width;
|
|
30976
31127
|
border-style: solid;
|
|
30977
31128
|
border-color: inherit;
|
|
30978
31129
|
}
|
|
@@ -30984,14 +31135,9 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
30984
31135
|
// Listview pager
|
|
30985
31136
|
.k-listview-pager {
|
|
30986
31137
|
border-width: 0;
|
|
30987
|
-
border-top-width: $listview-border-width;
|
|
30988
31138
|
border-color: inherit;
|
|
30989
31139
|
font: inherit;
|
|
30990
31140
|
}
|
|
30991
|
-
.k-listview-pager-top {
|
|
30992
|
-
border-top-width: 0;
|
|
30993
|
-
border-bottom-width: $listview-border-width;
|
|
30994
|
-
}
|
|
30995
31141
|
.k-listview-bordered > .k-listview-pager-top {
|
|
30996
31142
|
border-bottom-width: $listview-border-width;
|
|
30997
31143
|
}
|
|
@@ -31445,6 +31591,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31445
31591
|
font-family: Arial, Verdana, Sans-serif;
|
|
31446
31592
|
flex: 1;
|
|
31447
31593
|
position: relative;
|
|
31594
|
+
overflow: hidden;
|
|
31448
31595
|
|
|
31449
31596
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
31450
31597
|
.k-state-disabled {
|
|
@@ -31803,37 +31950,48 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31803
31950
|
}
|
|
31804
31951
|
|
|
31805
31952
|
// Details
|
|
31806
|
-
.k-details
|
|
31953
|
+
.k-details,
|
|
31954
|
+
.k-expander {
|
|
31807
31955
|
padding: 0;
|
|
31808
31956
|
border-width: 1px 0 0;
|
|
31809
31957
|
border-style: solid;
|
|
31810
31958
|
border-color: inherit;
|
|
31811
31959
|
}
|
|
31812
|
-
.k-
|
|
31813
|
-
|
|
31960
|
+
.k-expander {
|
|
31961
|
+
border: 0;
|
|
31962
|
+
background: inherit;
|
|
31963
|
+
}
|
|
31964
|
+
.k-details-summary,
|
|
31965
|
+
.k-columnmenu-item {
|
|
31966
|
+
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
31967
|
+
display: flex;
|
|
31968
|
+
align-items: center;
|
|
31814
31969
|
cursor: pointer;
|
|
31815
31970
|
|
|
31816
31971
|
> .k-icon {
|
|
31817
31972
|
margin-right: $padding-y;
|
|
31818
31973
|
}
|
|
31819
31974
|
}
|
|
31820
|
-
.k-details-content
|
|
31821
|
-
|
|
31975
|
+
.k-details-content,
|
|
31976
|
+
.k-columnmenu-item-content {
|
|
31977
|
+
padding: map-get( $spacing, 2 );
|
|
31978
|
+
display: flex;
|
|
31979
|
+
flex-flow: column nowrap;
|
|
31980
|
+
gap: map-get( $spacing, 2 );
|
|
31822
31981
|
|
|
31823
|
-
|
|
31824
|
-
|
|
31825
|
-
|
|
31826
|
-
margin-bottom: 3px;
|
|
31982
|
+
.k-filter-and {
|
|
31983
|
+
width: min-content;
|
|
31984
|
+
align-self: flex-start;
|
|
31827
31985
|
}
|
|
31828
31986
|
|
|
31829
|
-
.k-
|
|
31830
|
-
|
|
31987
|
+
.k-searchbox {
|
|
31988
|
+
width: 100%;
|
|
31831
31989
|
}
|
|
31990
|
+
}
|
|
31832
31991
|
|
|
31833
|
-
|
|
31834
|
-
|
|
31835
|
-
|
|
31836
|
-
}
|
|
31992
|
+
.k-actions {
|
|
31993
|
+
margin: 0;
|
|
31994
|
+
padding: 0;
|
|
31837
31995
|
}
|
|
31838
31996
|
}
|
|
31839
31997
|
|
|
@@ -35088,10 +35246,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35088
35246
|
visibility: hidden;
|
|
35089
35247
|
|
|
35090
35248
|
.k-overflow-anchor {
|
|
35091
|
-
border-width: 0;
|
|
35092
|
-
padding: $toolbar-padding-y;
|
|
35093
|
-
width: $toolbar-inner-calc-size;
|
|
35094
|
-
height: $toolbar-inner-calc-size;
|
|
35095
35249
|
position: relative;
|
|
35096
35250
|
}
|
|
35097
35251
|
}
|
|
@@ -35234,10 +35388,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35234
35388
|
display: flex;
|
|
35235
35389
|
flex-direction: column;
|
|
35236
35390
|
padding: 10px 0 40px;
|
|
35237
|
-
|
|
35238
|
-
> span {
|
|
35239
|
-
padding-bottom: $padding-y;
|
|
35240
|
-
}
|
|
35241
35391
|
}
|
|
35242
35392
|
|
|
35243
35393
|
.k-matches-container {
|
|
@@ -35473,12 +35623,12 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35473
35623
|
width: 10em;
|
|
35474
35624
|
|
|
35475
35625
|
& + .k-dropdown {
|
|
35476
|
-
width:
|
|
35626
|
+
width: 5em;
|
|
35477
35627
|
}
|
|
35478
35628
|
|
|
35479
35629
|
& + .k-colorpicker,
|
|
35480
35630
|
& + .k-dropdown {
|
|
35481
|
-
margin-left: $
|
|
35631
|
+
margin-left: map-get( $spacing, 2 );
|
|
35482
35632
|
}
|
|
35483
35633
|
}
|
|
35484
35634
|
|
|
@@ -36542,7 +36692,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
36542
36692
|
position: relative;
|
|
36543
36693
|
vertical-align: middle;
|
|
36544
36694
|
}
|
|
36545
|
-
td::after { content: "\
|
|
36695
|
+
td::after { content: "\200b"; }
|
|
36546
36696
|
}
|
|
36547
36697
|
.k-task-wrap {
|
|
36548
36698
|
margin: 0 -21px;
|
|
@@ -38258,7 +38408,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38258
38408
|
// TODO: add this class to jQuery rendering
|
|
38259
38409
|
// after refactoring jQuery scheduler layout to be flex
|
|
38260
38410
|
.k-recurrence-editor {
|
|
38261
|
-
display:
|
|
38411
|
+
display: flex;
|
|
38262
38412
|
flex-direction: column;
|
|
38263
38413
|
}
|
|
38264
38414
|
kendo-scheduler .k-recurrence-editor {
|
|
@@ -38510,27 +38660,40 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38510
38660
|
|
|
38511
38661
|
.k-scheduler-edit-form {
|
|
38512
38662
|
|
|
38513
|
-
.k-edit-form-container { width:
|
|
38663
|
+
.k-edit-form-container { width: 100%; }
|
|
38514
38664
|
.k-edit-label { width: 17%; }
|
|
38515
38665
|
.k-edit-field { width: 77%; }
|
|
38516
38666
|
|
|
38517
|
-
.k-
|
|
38518
|
-
|
|
38667
|
+
.k-edit-field > ul > li {
|
|
38668
|
+
display: flex;
|
|
38669
|
+
flex-flow: row nowrap;
|
|
38670
|
+
align-items: center;
|
|
38671
|
+
}
|
|
38672
|
+
.k-recurrence-editor {
|
|
38673
|
+
.k-radio-list .k-radio-wrap,
|
|
38674
|
+
.k-checkbox-list .k-checkbox-wrap {
|
|
38675
|
+
align-self: center;
|
|
38676
|
+
}
|
|
38519
38677
|
}
|
|
38520
38678
|
|
|
38521
|
-
|
|
38522
|
-
.k-
|
|
38523
|
-
.k-
|
|
38524
|
-
.k-widget.k-recur-monthday {
|
|
38679
|
+
.k-recur-interval,
|
|
38680
|
+
.k-recur-count,
|
|
38681
|
+
.k-recur-monthday {
|
|
38525
38682
|
width: 5em;
|
|
38526
38683
|
}
|
|
38527
|
-
.k-
|
|
38528
|
-
.k-
|
|
38529
|
-
.k-
|
|
38530
|
-
.k-
|
|
38684
|
+
.k-recur-until,
|
|
38685
|
+
.k-recur-month,
|
|
38686
|
+
.k-recur-weekday,
|
|
38687
|
+
.k-recur-weekday-offset {
|
|
38531
38688
|
width: 10em;
|
|
38532
38689
|
}
|
|
38533
38690
|
|
|
38691
|
+
.k-scheduler-datetime-picker {
|
|
38692
|
+
display: flex;
|
|
38693
|
+
flex-flow: row nowrap;
|
|
38694
|
+
gap: map-get( $spacing, 2 );
|
|
38695
|
+
}
|
|
38696
|
+
|
|
38534
38697
|
}
|
|
38535
38698
|
|
|
38536
38699
|
}
|
|
@@ -39148,13 +39311,6 @@ $chat-quick-reply-hover-bg: $primary !default;
|
|
|
39148
39311
|
$chat-quick-reply-hover-text: $primary-contrast !default;
|
|
39149
39312
|
$chat-quick-reply-hover-border: $primary !default;
|
|
39150
39313
|
|
|
39151
|
-
$chat-message-box-bg: $input-bg !default;
|
|
39152
|
-
$chat-message-box-text: $input-text !default;
|
|
39153
|
-
$chat-message-box-border: inherit !default;
|
|
39154
|
-
$chat-message-box-focus-shadow: 0 0 40px rgba( $input-text, .1 ) !default;
|
|
39155
|
-
|
|
39156
|
-
$chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
39157
|
-
|
|
39158
39314
|
// #endregion
|
|
39159
39315
|
// #region @import "_layout.scss"; -> packages/default/scss/chat/_layout.scss
|
|
39160
39316
|
@include exports("chat/layout") {
|
|
@@ -39430,7 +39586,8 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39430
39586
|
box-sizing: border-box;
|
|
39431
39587
|
border-width: 1px 0 0;
|
|
39432
39588
|
border-style: solid;
|
|
39433
|
-
border-
|
|
39589
|
+
border-color: inherit !important; // sass-lint:disable-line no-important
|
|
39590
|
+
border-radius: 0 !important; // sass-lint:disable-line no-important
|
|
39434
39591
|
flex: none;
|
|
39435
39592
|
display: flex;
|
|
39436
39593
|
flex-flow: row nowrap;
|
|
@@ -39447,6 +39604,7 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39447
39604
|
.k-input {}
|
|
39448
39605
|
|
|
39449
39606
|
.k-button {
|
|
39607
|
+
border-width: 0;
|
|
39450
39608
|
flex-shrink: 0;
|
|
39451
39609
|
|
|
39452
39610
|
svg {
|
|
@@ -39456,11 +39614,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39456
39614
|
display: inline-block;
|
|
39457
39615
|
}
|
|
39458
39616
|
|
|
39459
|
-
&::before,
|
|
39460
|
-
&::after {
|
|
39461
|
-
display: none;
|
|
39462
|
-
}
|
|
39463
|
-
|
|
39464
39617
|
.k-rtl &,
|
|
39465
39618
|
&[dir="rtl"] {
|
|
39466
39619
|
transform: scaleX(-1);
|
|
@@ -39601,9 +39754,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39601
39754
|
}
|
|
39602
39755
|
|
|
39603
39756
|
.k-button {
|
|
39604
|
-
border-color: transparent;
|
|
39605
|
-
color: inherit;
|
|
39606
|
-
background: none;
|
|
39607
39757
|
flex: none;
|
|
39608
39758
|
}
|
|
39609
39759
|
|
|
@@ -39786,19 +39936,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39786
39936
|
);
|
|
39787
39937
|
}
|
|
39788
39938
|
|
|
39789
|
-
|
|
39790
|
-
// Message box
|
|
39791
|
-
.k-message-box {
|
|
39792
|
-
@include fill(
|
|
39793
|
-
$chat-message-box-text,
|
|
39794
|
-
$chat-message-box-bg,
|
|
39795
|
-
$chat-message-box-border
|
|
39796
|
-
);
|
|
39797
|
-
}
|
|
39798
|
-
.k-message-box.k-state-focused {
|
|
39799
|
-
@include box-shadow( $chat-message-box-focus-shadow );
|
|
39800
|
-
}
|
|
39801
|
-
|
|
39802
39939
|
}
|
|
39803
39940
|
|
|
39804
39941
|
|
|
@@ -39810,14 +39947,6 @@ $chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
|
39810
39947
|
$chat-toolbar-bg,
|
|
39811
39948
|
$chat-toolbar-border
|
|
39812
39949
|
);
|
|
39813
|
-
|
|
39814
|
-
.k-scroll-button {
|
|
39815
|
-
@include fill( $bg: $chat-bg );
|
|
39816
|
-
@include box-shadow( $chat-toolbar-box-scroll-button-shadow );
|
|
39817
|
-
}
|
|
39818
|
-
.k-scroll-button:hover {
|
|
39819
|
-
@include fill( $bg: $chat-bg );
|
|
39820
|
-
}
|
|
39821
39950
|
}
|
|
39822
39951
|
|
|
39823
39952
|
}
|
|
@@ -40638,11 +40767,8 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
40638
40767
|
$pdf-viewer-page-border: $component-border !default;
|
|
40639
40768
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
40640
40769
|
|
|
40641
|
-
$pdf-viewer-search-dialog-
|
|
40642
|
-
$pdf-viewer-search-dialog-
|
|
40643
|
-
$pdf-viewer-search-dialog-textbox-padding-x: $input-padding-y !default;
|
|
40644
|
-
$pdf-viewer-search-dialog-input-button-height: $line-height-em !default;
|
|
40645
|
-
$pdf-viewer-search-dialog-matches-width: 4.5em !default;
|
|
40770
|
+
$pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
|
|
40771
|
+
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
40646
40772
|
|
|
40647
40773
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
40648
40774
|
|
|
@@ -40738,51 +40864,42 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40738
40864
|
|
|
40739
40865
|
// Search
|
|
40740
40866
|
.k-pdf-viewer-search-dialog {
|
|
40741
|
-
padding: $pdf-viewer-search-dialog-
|
|
40867
|
+
padding: $pdf-viewer-search-dialog-padding;
|
|
40742
40868
|
|
|
40743
40869
|
.k-search-container {
|
|
40744
40870
|
display: flex;
|
|
40871
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
40872
|
+
flex-flow: row nowrap;
|
|
40745
40873
|
flex: 0 0 auto;
|
|
40746
40874
|
justify-content: flex-start;
|
|
40747
40875
|
align-items: center;
|
|
40748
40876
|
|
|
40749
|
-
.k-
|
|
40750
|
-
|
|
40751
|
-
|
|
40752
|
-
margin: 0 $pdf-viewer-search-dialog-spacing;
|
|
40753
|
-
align-items: center;
|
|
40754
|
-
background: none;
|
|
40877
|
+
.k-search-dialog-draghandle {
|
|
40878
|
+
cursor: move;
|
|
40879
|
+
margin-left: 0;
|
|
40755
40880
|
}
|
|
40756
|
-
.k-textbox .k-icon {
|
|
40757
|
-
position: absolute;
|
|
40758
|
-
font-size: inherit;
|
|
40759
40881
|
|
|
40760
|
-
|
|
40761
|
-
|
|
40762
|
-
|
|
40763
|
-
}
|
|
40882
|
+
.k-textbox {
|
|
40883
|
+
width: 10em;
|
|
40884
|
+
flex: none;
|
|
40764
40885
|
|
|
40765
|
-
|
|
40766
|
-
|
|
40767
|
-
|
|
40768
|
-
justify-content: center;
|
|
40886
|
+
.k-button {
|
|
40887
|
+
border-width: 0;
|
|
40888
|
+
}
|
|
40769
40889
|
}
|
|
40770
40890
|
|
|
40771
40891
|
.k-search-matches {
|
|
40772
|
-
|
|
40773
|
-
min-width: $pdf-viewer-search-dialog-matches-width;
|
|
40774
|
-
margin: 0 $pdf-viewer-search-dialog-spacing 0 $pdf-viewer-search-dialog-button-spacing;
|
|
40775
|
-
vertical-align: middle;
|
|
40892
|
+
flex: 1 1 auto;
|
|
40776
40893
|
}
|
|
40894
|
+
}
|
|
40895
|
+
}
|
|
40777
40896
|
|
|
40778
|
-
> .k-button {
|
|
40779
|
-
margin-left: $pdf-viewer-search-dialog-button-spacing;
|
|
40780
|
-
}
|
|
40781
40897
|
|
|
40782
|
-
|
|
40783
|
-
|
|
40784
|
-
|
|
40785
|
-
|
|
40898
|
+
// IE
|
|
40899
|
+
.k-ie .k-pdf-viewer-search-dialog {
|
|
40900
|
+
|
|
40901
|
+
.k-search-container > * + * {
|
|
40902
|
+
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
40786
40903
|
}
|
|
40787
40904
|
}
|
|
40788
40905
|
|
|
@@ -42274,6 +42391,11 @@ $map-marker-fill: $primary !default;
|
|
|
42274
42391
|
line-height: 1;
|
|
42275
42392
|
box-shadow: none;
|
|
42276
42393
|
position: absolute;
|
|
42394
|
+
|
|
42395
|
+
.k-icon {
|
|
42396
|
+
min-width: 0;
|
|
42397
|
+
min-height: 0;
|
|
42398
|
+
}
|
|
42277
42399
|
}
|
|
42278
42400
|
.k-navigator-n,
|
|
42279
42401
|
.k-navigator-up {
|
|
@@ -42437,10 +42559,10 @@ $orgchart-card-shadow: $card-shadow !default;
|
|
|
42437
42559
|
$orgchart-card-focus-shadow: $card-focus-shadow !default;
|
|
42438
42560
|
|
|
42439
42561
|
$orgchart-card-title-margin-bottom: 0px !default;
|
|
42440
|
-
$orgchart-card-title-font-size:
|
|
42562
|
+
$orgchart-card-title-font-size: null !default;
|
|
42441
42563
|
|
|
42442
42564
|
$orgchart-card-subtitle-margin-bottom: 0px !default;
|
|
42443
|
-
$orgchart-card-subtitle-font-size:
|
|
42565
|
+
$orgchart-card-subtitle-font-size: null !default;
|
|
42444
42566
|
|
|
42445
42567
|
$orgchart-card-body-border-width: 2px 0 0 !default;
|
|
42446
42568
|
$orgchart-card-body-border-color: transparent !default;
|