@progress/kendo-theme-bootstrap 7.0.3-dev.2 → 7.1.0-dev.0

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.scss CHANGED
@@ -18922,6 +18922,7 @@ $kendo-popup-shadow: k-elevation(4) !default;
18922
18922
  .k-popup.k-popup-transparent {
18923
18923
  border-width: 0;
18924
18924
  background-color: transparent;
18925
+ box-shadow: none;
18925
18926
  }
18926
18927
 
18927
18928
  // Flush popup
@@ -22246,15 +22247,27 @@ $_kendo-module-meta: (
22246
22247
  // Component
22247
22248
  // #region @import "./_variables.scss"; -> scss/skeleton/_variables.scss
22248
22249
  // Skeleton
22250
+
22251
+ /// The transform scale of the Skeleton text.
22252
+ /// @group skeleton
22249
22253
  $kendo-skeleton-text-transform: scale( 1, .6 ) !default;
22254
+ /// The border radius of the Skeleton text.
22255
+ /// @group skeleton
22250
22256
  $kendo-skeleton-text-border-radius: $kendo-border-radius-md !default;
22251
22257
 
22258
+ /// The border radius of the rectangular Skeleton.
22259
+ /// @group skeleton
22252
22260
  $kendo-skeleton-rect-border-radius: 0 !default;
22253
22261
 
22262
+ /// The border radius of the circular Skeleton.
22263
+ /// @group skeleton
22254
22264
  $kendo-skeleton-circle-border-radius: 9999px !default;
22255
22265
 
22266
+ /// The background color of the Skeleton item.
22267
+ /// @group skeleton
22256
22268
  $kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
22257
-
22269
+ /// The background color of the Skeleton wave animation.
22270
+ /// @group skeleton
22258
22271
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
22259
22272
 
22260
22273
  // #endregion
@@ -25072,43 +25085,75 @@ $kendo-picker-flat-hover-focus-border: null !default;
25072
25085
  // #endregion
25073
25086
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
25074
25087
  // Tooltip
25088
+
25089
+ /// The vertical padding of the Tooltip.
25090
+ /// @group tooltip
25075
25091
  $kendo-tooltip-padding-y: $tooltip-padding-y !default;
25092
+ /// The horizontal padding of the Tooltip.
25093
+ /// @group tooltip
25076
25094
  $kendo-tooltip-padding-x: $tooltip-padding-x !default;
25077
- $kendo-tooltip-max-width: $tooltip-max-width !default;
25095
+ /// The width of the border around the Tooltip.
25096
+ /// @group tooltip
25078
25097
  $kendo-tooltip-border-width: 0px !default;
25098
+ /// The border radius of the Tooltip.
25099
+ /// @group tooltip
25079
25100
  $kendo-tooltip-border-radius: $tooltip-border-radius !default;
25080
25101
 
25102
+ /// The font family of the Tooltip.
25103
+ /// @group tooltip
25081
25104
  $kendo-tooltip-font-family: $kendo-font-family !default;
25105
+ /// The font size of the Tooltip.
25106
+ /// @group tooltip
25082
25107
  $kendo-tooltip-font-size: $kendo-font-size-sm !default;
25108
+ /// The line height of the Tooltip.
25109
+ /// @group tooltip
25083
25110
  $kendo-tooltip-line-height: $kendo-line-height-md !default;
25084
25111
 
25112
+ /// The font size of the Tooltip title.
25113
+ /// @group tooltip
25085
25114
  $kendo-tooltip-title-font-size: ($kendo-tooltip-font-size * 1.25) !default;
25115
+ /// The line height of the Tooltip title.
25116
+ /// @group tooltip
25086
25117
  $kendo-tooltip-title-line-height: 1 !default;
25087
25118
 
25119
+ /// The size of the Tooltip callout.
25120
+ /// @group tooltip
25088
25121
  $kendo-tooltip-callout-size: $tooltip-arrow-height !default;
25089
25122
 
25123
+ /// The default background of the Tooltip.
25124
+ /// @group tooltip
25090
25125
  $kendo-tooltip-bg: if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) !default;
25126
+ /// The default text color of the Tooltip.
25127
+ /// @group tooltip
25091
25128
  $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
25129
+ /// The default border color of the Tooltip.
25130
+ /// @group tooltip
25092
25131
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
25093
25132
 
25133
+ /// The box-shadow of the Tooltip.
25134
+ /// @group tooltip
25094
25135
  $kendo-tooltip-shadow: k-elevation(2) !default;
25095
25136
 
25096
- $kendo-tooltip-primary-bg: $kendo-color-primary !default;
25097
- $kendo-tooltip-primary-text: k-contrast-color( $kendo-tooltip-primary-bg ) !default;
25098
- $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
25099
- $kendo-tooltip-info-bg: $kendo-color-info !default;
25100
- $kendo-tooltip-info-text: k-contrast-color( $kendo-tooltip-info-bg ) !default;
25101
- $kendo-tooltip-info-border: $kendo-tooltip-info-bg !default;
25102
- $kendo-tooltip-success-bg: $kendo-color-success !default;
25103
- $kendo-tooltip-success-text: k-contrast-color( $kendo-tooltip-success-bg ) !default;
25104
- $kendo-tooltip-success-border: $kendo-tooltip-success-bg !default;
25105
- $kendo-tooltip-warning-bg: $kendo-color-warning !default;
25106
- $kendo-tooltip-warning-text: k-contrast-color( $kendo-tooltip-warning-bg ) !default;
25107
- $kendo-tooltip-warning-border: $kendo-tooltip-warning-bg !default;
25108
- $kendo-tooltip-error-bg: $kendo-color-error !default;
25109
- $kendo-tooltip-error-text: k-contrast-color( $kendo-tooltip-error-bg ) !default;
25110
- $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
25137
+ @function tooltip-theme( $colors ) {
25138
+ $_theme: ();
25139
+
25140
+ @each $name, $color in $colors {
25141
+ $_theme: k-map-merge(( $name: (
25142
+ color: k-contrast-legacy( $color ),
25143
+ background-color: $color,
25144
+ border: $color,
25145
+ )), $_theme );
25146
+ }
25147
+
25148
+ @return $_theme;
25149
+ }
25111
25150
 
25151
+ /// The theme colors map for the Tooltip.
25152
+ /// @group tooltip
25153
+ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
25154
+ /// The generated theme colors map for the Tooltip.
25155
+ /// @group tooltip
25156
+ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
25112
25157
  // #endregion
25113
25158
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
25114
25159
  // File already imported_once. Skipping output.
@@ -25991,7 +26036,6 @@ $_kendo-module-meta: (
25991
26036
  margin: 0;
25992
26037
  padding-block: $kendo-tooltip-padding-y;
25993
26038
  padding-inline: $kendo-tooltip-padding-x;
25994
- // max-width: $kendo-tooltip-max-width;
25995
26039
  border-width: $kendo-tooltip-border-width;
25996
26040
  border-style: solid;
25997
26041
  box-sizing: border-box;
@@ -26114,14 +26158,6 @@ $_kendo-module-meta: (
26114
26158
  // #region @import "./_theme.scss"; -> scss/tooltip/_theme.scss
26115
26159
  // #region @import "@progress/kendo-theme-default/scss/tooltip/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/tooltip/_theme.scss
26116
26160
  @mixin kendo-tooltip--theme-base() {
26117
-
26118
- .k-tooltip-wrapper {
26119
- .k-tooltip {
26120
- box-shadow: $kendo-tooltip-shadow;
26121
- }
26122
- }
26123
-
26124
-
26125
26161
  // Default tooltip
26126
26162
  .k-tooltip {
26127
26163
  @include fill(
@@ -26129,67 +26165,26 @@ $_kendo-module-meta: (
26129
26165
  $kendo-tooltip-bg,
26130
26166
  $kendo-tooltip-border
26131
26167
  );
26168
+
26169
+ @include box-shadow( $kendo-tooltip-shadow );
26132
26170
 
26133
26171
  .k-callout {
26134
26172
  color: $kendo-tooltip-bg;
26135
26173
  }
26136
26174
  }
26137
26175
 
26138
-
26139
26176
  // Tooltip variants
26140
- .k-tooltip-primary {
26141
- @include fill(
26142
- $kendo-tooltip-primary-text,
26143
- $kendo-tooltip-primary-bg,
26144
- $kendo-tooltip-primary-border
26145
- );
26146
-
26147
- .k-callout {
26148
- color: $kendo-tooltip-primary-bg;
26149
- }
26150
- }
26151
- .k-tooltip-info {
26152
- @include fill(
26153
- $kendo-tooltip-info-text,
26154
- $kendo-tooltip-info-bg,
26155
- $kendo-tooltip-info-border
26156
- );
26157
-
26158
- .k-callout {
26159
- color: $kendo-tooltip-info-bg;
26160
- }
26161
- }
26162
- .k-tooltip-success {
26163
- @include fill(
26164
- $kendo-tooltip-success-text,
26165
- $kendo-tooltip-success-bg,
26166
- $kendo-tooltip-success-border
26167
- );
26168
-
26169
- .k-callout {
26170
- color: $kendo-tooltip-success-bg;
26171
- }
26172
- }
26173
- .k-tooltip-warning {
26174
- @include fill(
26175
- $kendo-tooltip-warning-text,
26176
- $kendo-tooltip-warning-bg,
26177
- $kendo-tooltip-warning-border
26178
- );
26179
-
26180
- .k-callout {
26181
- color: $kendo-tooltip-warning-bg;
26182
- }
26183
- }
26184
- .k-tooltip-error {
26185
- @include fill(
26186
- $kendo-tooltip-error-text,
26187
- $kendo-tooltip-error-bg,
26188
- $kendo-tooltip-error-border
26189
- );
26190
-
26191
- .k-callout {
26192
- color: $kendo-tooltip-error-bg;
26177
+ @each $name, $props in $kendo-tooltip-theme {
26178
+ .k-tooltip-#{$name} {
26179
+ @include fill(
26180
+ k-map-get( $props, color ),
26181
+ k-map-get( $props, background-color ),
26182
+ k-map-get( $props, border )
26183
+ );
26184
+
26185
+ .k-callout {
26186
+ color: k-map-get( $props, background-color );
26187
+ }
26193
26188
  }
26194
26189
  }
26195
26190
 
@@ -29556,19 +29551,6 @@ $kendo-slider-disabled-opacity: null !default;
29556
29551
  }
29557
29552
  }
29558
29553
 
29559
-
29560
- // Slider wrap
29561
- .k-slider-wrap {
29562
- width: 100%;
29563
- height: 100%;
29564
- display: flex;
29565
- flex-flow: inherit;
29566
- align-items: inherit;
29567
- gap: inherit;
29568
- position: relative;
29569
- }
29570
-
29571
-
29572
29554
  // New rendering
29573
29555
  .k-slider {
29574
29556
  width: min-content;
@@ -29900,15 +29882,7 @@ $kendo-slider-disabled-opacity: null !default;
29900
29882
  .k-slider kendo-resize-sensor {
29901
29883
  position: absolute;
29902
29884
  }
29903
- .k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
29904
- padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
29905
- padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
29906
- }
29907
- .k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
29908
- padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
29909
- padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
29910
- }
29911
-
29885
+
29912
29886
  // Aliases
29913
29887
  .k-draghandle { @extend .k-slider-thumb !optional; }
29914
29888
  .k-draghandle-start { @extend .k-slider-thumb-start !optional; }
@@ -31669,23 +31643,51 @@ $_kendo-module-meta: (
31669
31643
  // Component
31670
31644
  // #region @import "./_variables.scss"; -> scss/captcha/_variables.scss
31671
31645
  // Captcha
31646
+
31647
+ /// The spacer of the Captcha.
31648
+ /// @group captcha
31672
31649
  $kendo-captcha-spacer: k-map-get( $kendo-spacing, 2 ) !default;
31673
31650
 
31651
+ /// The width of the Captcha.
31652
+ /// @group captcha
31674
31653
  $kendo-captcha-width: 335px !default;
31654
+ /// The font family of the Captcha.
31655
+ /// @group captcha
31675
31656
  $kendo-captcha-font-family: $kendo-font-family !default;
31657
+ /// The font size of the Captcha.
31658
+ /// @group captcha
31676
31659
  $kendo-captcha-font-size: $kendo-font-size-md !default;
31660
+ /// The line height of the Captcha.
31661
+ /// @group captcha
31677
31662
  $kendo-captcha-line-height: $kendo-line-height-md !default;
31663
+ /// The gap of the Captcha.
31664
+ /// @group captcha
31678
31665
  $kendo-captcha-gap: $kendo-captcha-spacer !default;
31666
+ /// The background color of the Captcha.
31667
+ /// @group captcha
31679
31668
  $kendo-captcha-bg: $kendo-component-bg !default;
31669
+ /// The text color of the Captcha.
31670
+ /// @group captcha
31680
31671
  $kendo-captcha-text: $kendo-component-bg !default;
31672
+ /// The border color of the Captcha.
31673
+ /// @group captcha
31681
31674
  $kendo-captcha-border: $kendo-component-bg !default;
31682
31675
 
31676
+ /// The gap of the Captcha image wrapper.
31677
+ /// @group captcha
31683
31678
  $kendo-captcha-image-wrap-gap: $kendo-captcha-spacer !default;
31684
-
31679
+ /// The gap of the Captcha image controls.
31680
+ /// @group captcha
31685
31681
  $kendo-captcha-image-controls-gap: $kendo-captcha-spacer !default;
31686
31682
 
31683
+ /// The top margin of the Captcha validation message.
31684
+ /// @group captcha
31687
31685
  $kendo-captcha-validation-message-margin-top: k-math-div( $kendo-captcha-spacer, 2 ) !default;
31686
+ /// The font size of the Captcha validation message.
31687
+ /// @group captcha
31688
31688
  $kendo-captcha-validation-message-font-size: $kendo-font-size-sm !default;
31689
+ /// The font style of the Captcha validation message.
31690
+ /// @group captcha
31689
31691
  $kendo-captcha-validation-message-font-style: italic !default;
31690
31692
 
31691
31693
  // #endregion
@@ -32415,7 +32417,6 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
32415
32417
  z-index: -1;
32416
32418
  }
32417
32419
 
32418
- .k-slider-wrap,
32419
32420
  .k-slider-track-wrap {
32420
32421
  z-index: 1;
32421
32422
  }
@@ -35113,25 +35114,56 @@ $_kendo-module-meta: (
35113
35114
  // Component
35114
35115
  // #region @import "./_variables.scss"; -> scss/rating/_variables.scss
35115
35116
  // Rating
35117
+
35118
+ /// The font family of the Rating.
35119
+ /// @group rating
35116
35120
  $kendo-rating-font-family: $kendo-font-family !default;
35121
+ /// The font size of the Rating.
35122
+ /// @group rating
35117
35123
  $kendo-rating-font-size: $kendo-font-size-md !default;
35124
+ /// The line height of the Rating.
35125
+ /// @group rating
35118
35126
  $kendo-rating-line-height: $kendo-line-height-md !default;
35119
35127
 
35128
+ /// The horizontal margin of the Rating container.
35129
+ /// @group rating
35120
35130
  $kendo-rating-container-margin-x: $kendo-padding-sm-x !default;
35121
35131
 
35132
+ /// The horizontal padding of the Rating item.
35133
+ /// @group rating
35122
35134
  $kendo-rating-item-padding-x: $kendo-padding-sm-x !default;
35135
+ /// The vertical padding of the Rating item.
35136
+ /// @group rating
35123
35137
  $kendo-rating-item-padding-y: $kendo-padding-md-y !default;
35124
35138
 
35139
+ /// The horizontal margin of the Rating label.
35140
+ /// @group rating
35125
35141
  $kendo-rating-label-margin-x: $kendo-padding-md-x !default;
35142
+ /// The vertical margin of the Rating label.
35143
+ /// @group rating
35126
35144
  $kendo-rating-label-margin-y: $kendo-padding-md-y !default;
35145
+ /// The line height of the Rating label.
35146
+ /// @group rating
35127
35147
  $kendo-rating-label-line-height: $kendo-line-height-lg !default;
35128
35148
 
35149
+ /// The text color of the Rating icon.
35150
+ /// @group rating
35129
35151
  $kendo-rating-icon-text: $kendo-subtle-text !default;
35152
+ /// The text color of the selected Rating icon.
35153
+ /// @group rating
35130
35154
  $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
35155
+ /// The text color of the hovered Rating icon.
35156
+ /// @group rating
35131
35157
  $kendo-rating-icon-hover-text: $kendo-selected-bg !default;
35158
+ /// The text color of the focused Rating icon.
35159
+ /// @group rating
35132
35160
  $kendo-rating-icon-focus-text: $kendo-selected-bg !default;
35133
35161
 
35162
+ /// The shadow of the focused Rating icon.
35163
+ /// @group rating
35134
35164
  $kendo-rating-icon-focus-shadow: 0 2px 4px rgba( black, .1 ) !default;
35165
+ /// The shadow of the focused and selected Rating icon.
35166
+ /// @group rating
35135
35167
  $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
35136
35168
 
35137
35169
  // #endregion
@@ -36080,31 +36112,69 @@ $_kendo-module-meta: (
36080
36112
 
36081
36113
  // Component
36082
36114
  // #region @import "./_variables.scss"; -> scss/dropzone/_variables.scss
36083
- // Dropzone
36115
+ // DropZone
36084
36116
 
36117
+ /// The horizontal padding of the DropZone.
36118
+ /// @group dropzone
36085
36119
  $kendo-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
36120
+ /// The vertical padding of the DropZone.
36121
+ /// @group dropzone
36086
36122
  $kendo-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36123
+ /// The border width of the DropZone.
36124
+ /// @group dropzone
36087
36125
  $kendo-dropzone-border-width: 1px !default;
36126
+ /// The minimum height of the DropZone.
36127
+ /// @group dropzone
36088
36128
  $kendo-dropzone-min-height: 220px !default;
36089
36129
 
36130
+ /// The font family of the DropZone.
36131
+ /// @group dropzone
36090
36132
  $kendo-dropzone-font-family: $kendo-font-family !default;
36133
+ /// The font size of the DropZone.
36134
+ /// @group dropzone
36091
36135
  $kendo-dropzone-font-size: $kendo-font-size-md !default;
36136
+ /// The line height of the DropZone.
36137
+ /// @group dropzone
36092
36138
  $kendo-dropzone-line-height: $kendo-line-height-md !default;
36093
36139
 
36140
+ /// The background color of the DropZone.
36141
+ /// @group dropzone
36094
36142
  $kendo-dropzone-bg: if( k-is-light( $kendo-component-bg ), $gray-100, $gray-900 ) !default;
36143
+ /// The text color of the DropZone.
36144
+ /// @group dropzone
36095
36145
  $kendo-dropzone-text: $kendo-component-text !default;
36146
+ /// The border color of the DropZone.
36147
+ /// @group dropzone
36096
36148
  $kendo-dropzone-border: $kendo-component-border !default;
36097
36149
 
36150
+ /// The spacing below the DropZone icon.
36151
+ /// @group dropzone
36098
36152
  $kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
36153
+ /// The text color of the DropZone icon.
36154
+ /// @group dropzone
36099
36155
  $kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 8 ) !default;
36156
+ /// The text color of the hovered DropZone icon.
36157
+ /// @group dropzone
36100
36158
  $kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
36101
36159
 
36160
+ /// The font size of the DropZone hint.
36161
+ /// @group dropzone
36102
36162
  $kendo-dropzone-hint-font-size: null !default;
36163
+ /// The spacing below the DropZone hint.
36164
+ /// @group dropzone
36103
36165
  $kendo-dropzone-hint-spacing: k-map-get( $kendo-spacing, 2 ) !default;
36166
+ /// The text color of the DropZone hint.
36167
+ /// @group dropzone
36104
36168
  $kendo-dropzone-hint-text: null !default;
36105
36169
 
36170
+ /// The font size of the DropZone note.
36171
+ /// @group dropzone
36106
36172
  $kendo-dropzone-note-font-size: $kendo-font-size-xs !default;
36173
+ /// The spacing below the DropZone note.
36174
+ /// @group dropzone
36107
36175
  $kendo-dropzone-note-spacing: null !default;
36176
+ /// The text color of the DropZone note.
36177
+ /// @group dropzone
36108
36178
  $kendo-dropzone-note-text: $kendo-subtle-text !default;
36109
36179
 
36110
36180
  // #endregion
@@ -39803,6 +39873,15 @@ $kendo-card-callout-height: 1.3em !default;
39803
39873
  *::after {
39804
39874
  box-sizing: border-box;
39805
39875
  }
39876
+
39877
+ // Card avatar
39878
+ .k-card-avatar,
39879
+ .k-avatar {
39880
+ margin-right: $kendo-card-avatar-spacing;
39881
+ width: $kendo-card-avatar-size;
39882
+ height: $kendo-card-avatar-size;
39883
+ flex-basis: $kendo-card-avatar-size;
39884
+ }
39806
39885
  }
39807
39886
  .k-card > .k-card-inner {
39808
39887
  @include border-radius( $kendo-card-inner-border-radius );
@@ -39812,11 +39891,9 @@ $kendo-card-callout-height: 1.3em !default;
39812
39891
  position: relative;
39813
39892
  }
39814
39893
 
39815
-
39816
39894
  // Card orientation
39817
- .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
39818
- .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
39819
-
39895
+ .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
39896
+ .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
39820
39897
 
39821
39898
  // Header
39822
39899
  .k-card-header {
@@ -39873,30 +39950,13 @@ $kendo-card-callout-height: 1.3em !default;
39873
39950
  }
39874
39951
  }
39875
39952
 
39876
-
39877
- // Card avatar
39878
- .k-card-avatar,
39879
- .k-card .k-avatar {
39880
- margin-right: $kendo-card-avatar-spacing;
39881
- width: $kendo-card-avatar-size;
39882
- height: $kendo-card-avatar-size;
39883
- flex-basis: $kendo-card-avatar-size;
39884
- }
39885
-
39886
-
39887
- // Card image
39888
- .k-card-image,
39953
+ // Card media
39889
39954
  .k-card-media {
39890
39955
  border: 0;
39891
39956
  max-width: 100%;
39892
39957
  flex-shrink: 0;
39893
39958
  overflow: hidden;
39894
39959
 
39895
- > img {
39896
- border: 0;
39897
- max-width: 100%;
39898
- }
39899
-
39900
39960
  .k-card-horizontal & {
39901
39961
  max-width: $kendo-card-img-max-width;
39902
39962
  object-fit: cover;
@@ -39940,22 +40000,23 @@ $kendo-card-callout-height: 1.3em !default;
39940
40000
  flex: 0 0 auto;
39941
40001
  align-self: stretch;
39942
40002
  }
39943
- .k-card-separator.k-separator-vertical,
39944
- .k-card-horizontal > .k-card-separator {
39945
- border-left-width: 1px;
39946
- }
40003
+
39947
40004
  .k-card-separator.k-separator-horizontal,
39948
40005
  .k-card-vertical > .k-card-separator {
39949
40006
  border-top-width: 1px;
39950
40007
  }
39951
40008
 
40009
+ .k-card-separator.k-separator-vertical,
40010
+ .k-card-horizontal > .k-card-separator {
40011
+ border-left-width: 1px;
40012
+ }
40013
+
39952
40014
  .k-card > .k-hr {
39953
40015
  margin: 0;
39954
40016
  flex: 0 0 auto;
39955
40017
  border-color: inherit;
39956
40018
  }
39957
40019
 
39958
-
39959
40020
  // Card actions
39960
40021
  .k-card-actions {
39961
40022
  padding-block: $kendo-card-actions-padding-y;
@@ -39970,33 +40031,6 @@ $kendo-card-callout-height: 1.3em !default;
39970
40031
  gap: $kendo-card-actions-gap;
39971
40032
  }
39972
40033
 
39973
-
39974
- // Actions align
39975
- .k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
39976
- .k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
39977
- .k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
39978
-
39979
-
39980
- // Actions orientation
39981
- .k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
39982
- .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
39983
-
39984
-
39985
- // Stretched actions
39986
- .k-card-actions-stretched > * {
39987
- flex: 1 1 auto;
39988
- }
39989
-
39990
-
39991
- // Card action
39992
- .k-card-action {
39993
- border-width: 0;
39994
- border-style: solid;
39995
- border-color: inherit;
39996
- display: inline-flex;
39997
- }
39998
-
39999
-
40000
40034
  // List
40001
40035
  .k-card-list {
40002
40036
  display: flex;
@@ -40088,9 +40122,6 @@ $kendo-card-callout-height: 1.3em !default;
40088
40122
  }
40089
40123
  }
40090
40124
 
40091
-
40092
-
40093
-
40094
40125
  // Card with callout
40095
40126
  .k-card-with-callout {
40096
40127
  overflow: visible;
@@ -45209,18 +45240,6 @@ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
45209
45240
  height: 0;
45210
45241
  border-width: $kendo-dock-manager-border-width 0 0;
45211
45242
  }
45212
-
45213
- // Needed because of a bug in Chrome - Issue 1473554
45214
- // A fix will be shipped likely in milestone 118 and then we can revisit this
45215
- @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
45216
- .k-toolbar-button {
45217
- padding-block: $kendo-button-padding-x;
45218
- padding-inline: $kendo-button-padding-y;
45219
- }
45220
- .k-toolbar-button .k-button-text {
45221
- writing-mode: vertical-lr;
45222
- }
45223
- }
45224
45243
  }
45225
45244
 
45226
45245
  // Panes
@@ -47539,6 +47558,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
47539
47558
  $_selection-aggregates-padding-x: k-map-get( $size-props, selection-aggregates-padding-x );
47540
47559
  $_selection-aggregates-padding-y: k-map-get( $size-props, selection-aggregates-padding-y );
47541
47560
 
47561
+ .k-grid .k-grid-#{$size},
47542
47562
  .k-grid-#{$size} {
47543
47563
 
47544
47564
  .k-table-th {
@@ -52392,72 +52412,187 @@ $_kendo-module-meta: (
52392
52412
 
52393
52413
  // Component
52394
52414
  // #region @import "./_variables.scss"; -> scss/filemanager/_variables.scss
52395
- // File manager
52415
+ // FileManager
52416
+
52417
+ /// The space between the FileManager items.
52418
+ /// @group filemanager
52396
52419
  $kendo-file-manager-spacer: k-map-get( $kendo-spacing, 4 ) !default;
52420
+ /// The border width of the FileManager.
52421
+ /// @group filemanager
52397
52422
  $kendo-file-manager-border-width: 1px !default;
52423
+ /// The font family of the FileManager.
52424
+ /// @group filemanager
52398
52425
  $kendo-file-manager-font-family: $kendo-font-family !default;
52426
+ /// The font size of the FileManager.
52427
+ /// @group filemanager
52399
52428
  $kendo-file-manager-font-size: $kendo-font-size-md !default;
52429
+ /// The line height of the FileManager.
52430
+ /// @group filemanager
52400
52431
  $kendo-file-manager-line-height: $kendo-line-height-md !default;
52432
+ /// The background color of the FileManager.
52433
+ /// @group filemanager
52401
52434
  $kendo-file-manager-bg: $kendo-component-bg !default;
52435
+ /// The text color of the FileManager.
52436
+ /// @group filemanager
52402
52437
  $kendo-file-manager-text: $kendo-component-text !default;
52438
+ /// The border color of the FileManager.
52439
+ /// @group filemanager
52403
52440
  $kendo-file-manager-border: $kendo-component-border !default;
52404
52441
 
52442
+ /// The border width of the FileManager Toolbar.
52443
+ /// @group filemanager
52405
52444
  $kendo-file-manager-toolbar-border-width: $kendo-file-manager-border-width !default;
52445
+ /// The background color of the FileManager Toolbar.
52446
+ /// @group filemanager
52406
52447
  $kendo-file-manager-toolbar-bg: null !default;
52448
+ /// The text color of the FileManager Toolbar.
52449
+ /// @group filemanager
52407
52450
  $kendo-file-manager-toolbar-text: null !default;
52451
+ /// The border color of the FileManager Toolbar.
52452
+ /// @group filemanager
52408
52453
  $kendo-file-manager-toolbar-border: null !default;
52454
+ /// The gradient of the FileManager Toolbar.
52455
+ /// @group filemanager
52409
52456
  $kendo-file-manager-toolbar-gradient: null !default;
52410
52457
 
52458
+ /// The horizontal padding of the FileManager Navigation.
52459
+ /// @group filemanager
52411
52460
  $kendo-file-manager-navigation-padding-x: $kendo-file-manager-spacer !default;
52461
+ /// The vertical padding of the FileManager Navigation.
52462
+ /// @group filemanager
52412
52463
  $kendo-file-manager-navigation-padding-y: $kendo-file-manager-spacer !default;
52464
+ /// The width of the FileManager Navigation.
52465
+ /// @group filemanager
52413
52466
  $kendo-file-manager-navigation-width: 20% !default;
52467
+ /// The border width of the FileManager Navigation.
52468
+ /// @group filemanager
52414
52469
  $kendo-file-manager-navigation-border-width: $kendo-file-manager-border-width !default;
52470
+ /// The background color of the FileManager Navigation.
52471
+ /// @group filemanager
52415
52472
  $kendo-file-manager-navigation-bg: null !default;
52473
+ /// The text color of the FileManager Navigation.
52474
+ /// @group filemanager
52416
52475
  $kendo-file-manager-navigation-text: null !default;
52476
+ /// The border color of the FileManager Navigation.
52477
+ /// @group filemanager
52417
52478
  $kendo-file-manager-navigation-border: null !default;
52418
52479
 
52480
+ /// The horizontal padding of the FileManager Breadcrumb.
52481
+ /// @group filemanager
52419
52482
  $kendo-file-manager-breadcrumb-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
52483
+ /// The vertical padding of the FileManager Breadcrumb.
52484
+ /// @group filemanager
52420
52485
  $kendo-file-manager-breadcrumb-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
52486
+ /// The border width of the FileManager Breadcrumb.
52487
+ /// @group filemanager
52421
52488
  $kendo-file-manager-breadcrumb-border-width: $kendo-file-manager-border-width !default;
52489
+ /// The background color of the FileManager Breadcrumb.
52490
+ /// @group filemanager
52422
52491
  $kendo-file-manager-breadcrumb-bg: $kendo-toolbar-bg !default;
52492
+ /// The text color of the FileManager Breadcrumb.
52493
+ /// @group filemanager
52423
52494
  $kendo-file-manager-breadcrumb-text: null !default;
52495
+ /// The border color of the FileManager Breadcrumb.
52496
+ /// @group filemanager
52424
52497
  $kendo-file-manager-breadcrumb-border: null !default;
52425
52498
 
52499
+ /// The background color of the FileManager ListView.
52500
+ /// @group filemanager
52426
52501
  $kendo-file-manager-listview-bg: null !default;
52502
+ /// The text color of the FileManager ListView.
52503
+ /// @group filemanager
52427
52504
  $kendo-file-manager-listview-text: null !default;
52505
+ /// The border color of the FileManager ListView.
52506
+ /// @group filemanager
52428
52507
  $kendo-file-manager-listview-border: null !default;
52429
52508
 
52509
+ /// The horizontal padding of the FileManager ListView item.
52510
+ /// @group filemanager
52430
52511
  $kendo-file-manager-listview-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
52512
+ /// The vertical padding of the FileManager ListView item.
52513
+ /// @group filemanager
52431
52514
  $kendo-file-manager-listview-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
52515
+ /// The width of the FileManager ListView item.
52516
+ /// @group filemanager
52432
52517
  $kendo-file-manager-listview-item-width: 120px !default;
52518
+ /// The height of the FileManager ListView item.
52519
+ /// @group filemanager
52433
52520
  $kendo-file-manager-listview-item-height: 120px !default;
52521
+ /// The background color of the FileManager ListView item.
52522
+ /// @group filemanager
52434
52523
  $kendo-file-manager-listview-item-bg: null !default;
52524
+ /// The text color of the FileManager ListView item.
52525
+ /// @group filemanager
52435
52526
  $kendo-file-manager-listview-item-text: null !default;
52527
+ /// The border color of the FileManager ListView item.
52528
+ /// @group filemanager
52436
52529
  $kendo-file-manager-listview-item-border: null !default;
52437
52530
 
52531
+ /// The background color of the FileManager ListView item icon.
52532
+ /// @group filemanager
52438
52533
  $kendo-file-manager-listview-item-icon-bg: null !default;
52534
+ /// The text color of the FileManager ListView item icon.
52535
+ /// @group filemanager
52439
52536
  $kendo-file-manager-listview-item-icon-text: k-try-tint( $kendo-file-manager-text, 4 ) !default;
52537
+ /// The border color of the FileManager ListView item icon.
52538
+ /// @group filemanager
52440
52539
  $kendo-file-manager-listview-item-icon-border: null !default;
52540
+ /// Background color of the FileManager selected ListView item icon.
52541
+ /// @group filemanager
52441
52542
  $kendo-file-manager-listview-item-icon-selected-bg: null !default;
52543
+ /// Text color of the FileManager selected ListView item icon.
52544
+ /// @group filemanager
52442
52545
  $kendo-file-manager-listview-item-icon-selected-text: inherit !default;
52546
+ /// Border color of the FileManager selected ListView item icon.
52547
+ /// @group filemanager
52443
52548
  $kendo-file-manager-listview-item-icon-selected-border: null !default;
52444
52549
 
52550
+ /// The background color of the FileManager Grid.
52551
+ /// @group filemanager
52445
52552
  $kendo-file-manager-grid-bg: null !default;
52553
+ /// The text color of the FileManager Grid.
52554
+ /// @group filemanager
52446
52555
  $kendo-file-manager-grid-text: null !default;
52556
+ /// The border color of the FileManager Grid.
52557
+ /// @group filemanager
52447
52558
  $kendo-file-manager-grid-border: null !default;
52448
52559
 
52560
+ /// The horizontal padding of the FileManager preview.
52561
+ /// @group filemanager
52449
52562
  $kendo-file-manager-preview-padding-x: $kendo-file-manager-spacer !default;
52563
+ /// The vertical padding of the FileManager preview.
52564
+ /// @group filemanager
52450
52565
  $kendo-file-manager-preview-padding-y: $kendo-file-manager-spacer !default;
52566
+ /// The width of the FileManager preview.
52567
+ /// @group filemanager
52451
52568
  $kendo-file-manager-preview-width: 20% !default;
52569
+ /// The border width of the FileManager preview.
52570
+ /// @group filemanager
52452
52571
  $kendo-file-manager-preview-border-width: $kendo-file-manager-border-width !default;
52572
+ /// The spacing of the FileManager preview.
52573
+ /// @group filemanager
52453
52574
  $kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
52575
+ /// The gap between the columns in the FileManager preview.
52576
+ /// @group filemanager
52454
52577
  $kendo-file-manager-preview-column-gap: k-map-get( $kendo-spacing, 1 ) !default;
52578
+ /// The background color of the FileManager preview.
52579
+ /// @group filemanager
52455
52580
  $kendo-file-manager-preview-bg: null !default;
52581
+ /// The text color of the FileManager preview.
52582
+ /// @group filemanager
52456
52583
  $kendo-file-manager-preview-text: null !default;
52584
+ /// The border color of the FileManager preview.
52585
+ /// @group filemanager
52457
52586
  $kendo-file-manager-preview-border: null !default;
52458
52587
 
52588
+ /// The background color of the FileManager preview icon.
52589
+ /// @group filemanager
52459
52590
  $kendo-file-manager-preview-icon-bg: null !default;
52591
+ /// The text color of the FileManager preview icon.
52592
+ /// @group filemanager
52460
52593
  $kendo-file-manager-preview-icon-text: k-try-tint( $kendo-file-manager-text, 4 ) !default;
52594
+ /// The border color of the FileManager preview icon.
52595
+ /// @group filemanager
52461
52596
  $kendo-file-manager-preview-icon-border: null !default;
52462
52597
 
52463
52598
  // #endregion
@@ -59203,49 +59338,115 @@ $_kendo-module-meta: (
59203
59338
 
59204
59339
  // Component
59205
59340
  // #region @import "./_variables.scss"; -> scss/pdf-viewer/_variables.scss
59206
- // PDF viewer
59341
+ // PDFviewer
59207
59342
 
59343
+ /// The border width of the PDFViewer.
59344
+ /// @group pdf-viewer
59208
59345
  $kendo-pdf-viewer-border-width: 1px !default;
59346
+ /// The font family of the PDFViewer.
59347
+ /// @group pdf-viewer
59209
59348
  $kendo-pdf-viewer-font-family: $kendo-font-family !default;
59349
+ /// The font size of the PDFViewer.
59350
+ /// @group pdf-viewer
59210
59351
  $kendo-pdf-viewer-font-size: $kendo-font-size-md !default;
59352
+ /// The line height of the PDFViewer.
59353
+ /// @group pdf-viewer
59211
59354
  $kendo-pdf-viewer-line-height: $kendo-line-height-md !default;
59212
59355
 
59356
+ /// The background color of the PDFViewer.
59357
+ /// @group pdf-viewer
59213
59358
  $kendo-pdf-viewer-bg: $kendo-component-bg !default;
59359
+ /// The text color of the PDFViewer.
59360
+ /// @group pdf-viewer
59214
59361
  $kendo-pdf-viewer-text: $kendo-component-text !default;
59362
+ /// The border color of the PDFViewer.
59363
+ /// @group pdf-viewer
59215
59364
  $kendo-pdf-viewer-border: $kendo-component-border !default;
59216
59365
 
59366
+ /// The background color of the PDFViewer Toolbar.
59367
+ /// @group pdf-viewer
59217
59368
  $kendo-pdf-viewer-toolbar-bg: null !default;
59369
+ /// The text color of the PDFViewer Toolbar.
59370
+ /// @group pdf-viewer
59218
59371
  $kendo-pdf-viewer-toolbar-text: null !default;
59372
+ /// The border color of the PDFViewer Toolbar.
59373
+ /// @group pdf-viewer
59219
59374
  $kendo-pdf-viewer-toolbar-border: null !default;
59375
+ /// The gradient of the PDFViewer Toolbar.
59376
+ /// @group pdf-viewer
59220
59377
  $kendo-pdf-viewer-toolbar-gradient: null !default;
59221
59378
 
59379
+ /// The background color of the PDFViewer canvas.
59380
+ /// @group pdf-viewer
59222
59381
  $kendo-pdf-viewer-canvas-bg: $kendo-app-bg !default;
59382
+ /// The text color of the PDFViewer canvas.
59383
+ /// @group pdf-viewer
59223
59384
  $kendo-pdf-viewer-canvas-text: null !default;
59385
+ /// The border color of the PDFViewer canvas.
59386
+ /// @group pdf-viewer
59224
59387
  $kendo-pdf-viewer-canvas-border: null !default;
59225
59388
 
59389
+ /// The spacing of the PDFViewer page.
59390
+ /// @group pdf-viewer
59226
59391
  $kendo-pdf-viewer-page-spacing: 30px !default;
59227
59392
 
59393
+ /// The background color of the PDFViewer page.
59394
+ /// @group pdf-viewer
59228
59395
  $kendo-pdf-viewer-page-bg: white !default;
59396
+ /// The text color of the PDFViewer page.
59397
+ /// @group pdf-viewer
59229
59398
  $kendo-pdf-viewer-page-text: $kendo-component-text !default;
59399
+ /// The border color of the PDFViewer page.
59400
+ /// @group pdf-viewer
59230
59401
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
59402
+ /// The shadow of the PDFViewer page.
59403
+ /// @group pdf-viewer
59231
59404
  $kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
59232
59405
 
59406
+ /// The horizontal padding of the PDFViewer search panel.
59407
+ /// @group pdf-viewer
59233
59408
  $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
59409
+ /// The vertical padding of the PDFViewer search panel.
59410
+ /// @group pdf-viewer
59234
59411
  $kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
59412
+ /// The spacing of the PDFViewer search panel.
59413
+ /// @group pdf-viewer
59235
59414
  $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
59415
+ /// The border width of the PDFViewer search panel.
59416
+ /// @group pdf-viewer
59236
59417
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
59418
+ /// The border radius of the PDFViewer search panel.
59419
+ /// @group pdf-viewer
59237
59420
  $kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
59421
+ /// The background color of the PDFViewer search panel.
59422
+ /// @group pdf-viewer
59238
59423
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
59424
+ /// The text color of the PDFViewer search panel.
59425
+ /// @group pdf-viewer
59239
59426
  $kendo-pdf-viewer-search-panel-text: $kendo-component-text !default;
59427
+ /// The border color of the PDFViewer search panel.
59428
+ /// @group pdf-viewer
59240
59429
  $kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
59430
+ /// The shadow of the PDFViewer search panel.
59431
+ /// @group pdf-viewer
59241
59432
  $kendo-pdf-viewer-search-panel-shadow: null !default;
59433
+ /// The spacing of the matches container in the PDFViewer search panel.
59434
+ /// @group pdf-viewer
59242
59435
  $kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
59243
59436
 
59437
+ /// The line height of the PDFViewer selection.
59438
+ /// @group pdf-viewer
59244
59439
  $kendo-pdf-viewer-selection-line-height: 1.2 !default;
59245
59440
 
59441
+ /// The background color of the PDFViewer highlight.
59442
+ /// @group pdf-viewer
59246
59443
  $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
59444
+ /// The background color of the PDFViewer highlight mark.
59445
+ /// @group pdf-viewer
59247
59446
  $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
59248
59447
 
59448
+ /// The text color of the PDFViewer icon.
59449
+ /// @group pdf-viewer
59249
59450
  $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
59250
59451
 
59251
59452
  // #endregion