@progress/kendo-theme-classic 7.0.3-dev.3 → 7.1.0-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.scss CHANGED
@@ -16899,6 +16899,7 @@ $kendo-popup-shadow: k-elevation(4) !default;
16899
16899
  .k-popup.k-popup-transparent {
16900
16900
  border-width: 0;
16901
16901
  background-color: transparent;
16902
+ box-shadow: none;
16902
16903
  }
16903
16904
 
16904
16905
  // Flush popup
@@ -22990,43 +22991,75 @@ $kendo-picker-flat-hover-focus-border: null !default;
22990
22991
  // #endregion
22991
22992
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
22992
22993
  // Tooltip
22994
+
22995
+ /// The vertical padding of the Tooltip.
22996
+ /// @group tooltip
22993
22997
  $kendo-tooltip-padding-y: $kendo-padding-md-y !default;
22998
+ /// The horizontal padding of the Tooltip.
22999
+ /// @group tooltip
22994
23000
  $kendo-tooltip-padding-x: $kendo-padding-md-x !default;
22995
- $kendo-tooltip-max-width: null !default;
23001
+ /// The width of the border around the Tooltip.
23002
+ /// @group tooltip
22996
23003
  $kendo-tooltip-border-width: 0px !default;
23004
+ /// The border radius of the Tooltip.
23005
+ /// @group tooltip
22997
23006
  $kendo-tooltip-border-radius: $kendo-border-radius-md !default;
22998
23007
 
23008
+ /// The font family of the Tooltip.
23009
+ /// @group tooltip
22999
23010
  $kendo-tooltip-font-family: $kendo-font-family !default;
23011
+ /// The font size of the Tooltip.
23012
+ /// @group tooltip
23000
23013
  $kendo-tooltip-font-size: $kendo-font-size-md !default;
23014
+ /// The line height of the Tooltip.
23015
+ /// @group tooltip
23001
23016
  $kendo-tooltip-line-height: 1.25 !default;
23002
23017
 
23018
+ /// The font size of the Tooltip title.
23019
+ /// @group tooltip
23003
23020
  $kendo-tooltip-title-font-size: ($kendo-tooltip-font-size * 1.25) !default;
23021
+ /// The line height of the Tooltip title.
23022
+ /// @group tooltip
23004
23023
  $kendo-tooltip-title-line-height: 1 !default;
23005
23024
 
23025
+ /// The size of the Tooltip callout.
23026
+ /// @group tooltip
23006
23027
  $kendo-tooltip-callout-size: 6px !default;
23007
23028
 
23029
+ /// The default background of the Tooltip.
23030
+ /// @group tooltip
23008
23031
  $kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
23032
+ /// The default text color of the Tooltip.
23033
+ /// @group tooltip
23009
23034
  $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
23035
+ /// The default border color of the Tooltip.
23036
+ /// @group tooltip
23010
23037
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
23011
23038
 
23039
+ /// The box-shadow of the Tooltip.
23040
+ /// @group tooltip
23012
23041
  $kendo-tooltip-shadow: k-elevation(2) !default;
23013
23042
 
23014
- $kendo-tooltip-primary-bg: $kendo-color-primary !default;
23015
- $kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
23016
- $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
23017
- $kendo-tooltip-info-bg: $kendo-color-info !default;
23018
- $kendo-tooltip-info-text: k-contrast-color( $kendo-tooltip-info-bg ) !default;
23019
- $kendo-tooltip-info-border: $kendo-tooltip-info-bg !default;
23020
- $kendo-tooltip-success-bg: $kendo-color-success !default;
23021
- $kendo-tooltip-success-text: k-contrast-color( $kendo-tooltip-success-bg ) !default;
23022
- $kendo-tooltip-success-border: $kendo-tooltip-success-bg !default;
23023
- $kendo-tooltip-warning-bg: $kendo-color-warning !default;
23024
- $kendo-tooltip-warning-text: k-contrast-color( $kendo-tooltip-warning-bg ) !default;
23025
- $kendo-tooltip-warning-border: $kendo-tooltip-warning-bg !default;
23026
- $kendo-tooltip-error-bg: $kendo-color-error !default;
23027
- $kendo-tooltip-error-text: k-contrast-color( $kendo-tooltip-error-bg ) !default;
23028
- $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
23043
+ @function tooltip-theme( $colors ) {
23044
+ $_theme: ();
23045
+
23046
+ @each $name, $color in $colors {
23047
+ $_theme: k-map-merge(( $name: (
23048
+ color: k-contrast-legacy( $color ),
23049
+ background-color: $color,
23050
+ border: $color,
23051
+ )), $_theme );
23052
+ }
23053
+
23054
+ @return $_theme;
23055
+ }
23029
23056
 
23057
+ /// The theme colors map for the Tooltip.
23058
+ /// @group tooltip
23059
+ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
23060
+ /// The generated theme colors map for the Tooltip.
23061
+ /// @group tooltip
23062
+ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
23030
23063
  // #endregion
23031
23064
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
23032
23065
  // File already imported_once. Skipping output.
@@ -23865,7 +23898,6 @@ $_kendo-module-meta: (
23865
23898
  margin: 0;
23866
23899
  padding-block: $kendo-tooltip-padding-y;
23867
23900
  padding-inline: $kendo-tooltip-padding-x;
23868
- // max-width: $kendo-tooltip-max-width;
23869
23901
  border-width: $kendo-tooltip-border-width;
23870
23902
  border-style: solid;
23871
23903
  box-sizing: border-box;
@@ -23988,14 +24020,6 @@ $_kendo-module-meta: (
23988
24020
  // #region @import "./_theme.scss"; -> scss/tooltip/_theme.scss
23989
24021
  // #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
23990
24022
  @mixin kendo-tooltip--theme-base() {
23991
-
23992
- .k-tooltip-wrapper {
23993
- .k-tooltip {
23994
- box-shadow: $kendo-tooltip-shadow;
23995
- }
23996
- }
23997
-
23998
-
23999
24023
  // Default tooltip
24000
24024
  .k-tooltip {
24001
24025
  @include fill(
@@ -24003,67 +24027,26 @@ $_kendo-module-meta: (
24003
24027
  $kendo-tooltip-bg,
24004
24028
  $kendo-tooltip-border
24005
24029
  );
24030
+
24031
+ @include box-shadow( $kendo-tooltip-shadow );
24006
24032
 
24007
24033
  .k-callout {
24008
24034
  color: $kendo-tooltip-bg;
24009
24035
  }
24010
24036
  }
24011
24037
 
24012
-
24013
24038
  // Tooltip variants
24014
- .k-tooltip-primary {
24015
- @include fill(
24016
- $kendo-tooltip-primary-text,
24017
- $kendo-tooltip-primary-bg,
24018
- $kendo-tooltip-primary-border
24019
- );
24020
-
24021
- .k-callout {
24022
- color: $kendo-tooltip-primary-bg;
24023
- }
24024
- }
24025
- .k-tooltip-info {
24026
- @include fill(
24027
- $kendo-tooltip-info-text,
24028
- $kendo-tooltip-info-bg,
24029
- $kendo-tooltip-info-border
24030
- );
24031
-
24032
- .k-callout {
24033
- color: $kendo-tooltip-info-bg;
24034
- }
24035
- }
24036
- .k-tooltip-success {
24037
- @include fill(
24038
- $kendo-tooltip-success-text,
24039
- $kendo-tooltip-success-bg,
24040
- $kendo-tooltip-success-border
24041
- );
24042
-
24043
- .k-callout {
24044
- color: $kendo-tooltip-success-bg;
24045
- }
24046
- }
24047
- .k-tooltip-warning {
24048
- @include fill(
24049
- $kendo-tooltip-warning-text,
24050
- $kendo-tooltip-warning-bg,
24051
- $kendo-tooltip-warning-border
24052
- );
24053
-
24054
- .k-callout {
24055
- color: $kendo-tooltip-warning-bg;
24056
- }
24057
- }
24058
- .k-tooltip-error {
24059
- @include fill(
24060
- $kendo-tooltip-error-text,
24061
- $kendo-tooltip-error-bg,
24062
- $kendo-tooltip-error-border
24063
- );
24064
-
24065
- .k-callout {
24066
- color: $kendo-tooltip-error-bg;
24039
+ @each $name, $props in $kendo-tooltip-theme {
24040
+ .k-tooltip-#{$name} {
24041
+ @include fill(
24042
+ k-map-get( $props, color ),
24043
+ k-map-get( $props, background-color ),
24044
+ k-map-get( $props, border )
24045
+ );
24046
+
24047
+ .k-callout {
24048
+ color: k-map-get( $props, background-color );
24049
+ }
24067
24050
  }
24068
24051
  }
24069
24052
 
@@ -27420,19 +27403,6 @@ $kendo-slider-disabled-opacity: null !default;
27420
27403
  }
27421
27404
  }
27422
27405
 
27423
-
27424
- // Slider wrap
27425
- .k-slider-wrap {
27426
- width: 100%;
27427
- height: 100%;
27428
- display: flex;
27429
- flex-flow: inherit;
27430
- align-items: inherit;
27431
- gap: inherit;
27432
- position: relative;
27433
- }
27434
-
27435
-
27436
27406
  // New rendering
27437
27407
  .k-slider {
27438
27408
  width: min-content;
@@ -27764,15 +27734,7 @@ $kendo-slider-disabled-opacity: null !default;
27764
27734
  .k-slider kendo-resize-sensor {
27765
27735
  position: absolute;
27766
27736
  }
27767
- .k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
27768
- padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
27769
- padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
27770
- }
27771
- .k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
27772
- padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
27773
- padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
27774
- }
27775
-
27737
+
27776
27738
  // Aliases
27777
27739
  .k-draghandle { @extend .k-slider-thumb !optional; }
27778
27740
  .k-draghandle-start { @extend .k-slider-thumb-start !optional; }
@@ -30307,7 +30269,6 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
30307
30269
  z-index: -1;
30308
30270
  }
30309
30271
 
30310
- .k-slider-wrap,
30311
30272
  .k-slider-track-wrap {
30312
30273
  z-index: 1;
30313
30274
  }
@@ -37132,6 +37093,11 @@ $_kendo-module-meta: (
37132
37093
  // #region @import "./_variables.scss"; -> scss/notification/_variables.scss
37133
37094
  // Notification
37134
37095
 
37096
+
37097
+ /// The row-gap between the elements in the Notification group.
37098
+ /// @group notification
37099
+ $kendo-notification-group-gap: k-map-get( $kendo-spacing, 2 ) !default;
37100
+
37135
37101
  /// The horizontal padding of the Notification.
37136
37102
  /// @group notification
37137
37103
  $kendo-notification-padding-x: 8px !default;
@@ -37203,17 +37169,12 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
37203
37169
  flex-flow: column-reverse wrap;
37204
37170
  position: fixed;
37205
37171
  z-index: 1000;
37172
+ gap: $kendo-notification-group-gap 0;
37206
37173
  }
37207
37174
 
37208
- .k-notification-container {
37209
- margin-block: k-math-div( $kendo-notification-padding-y, 2 );
37210
- margin-inline: 0;
37211
- display: inline-flex;
37212
- vertical-align: top;
37213
-
37214
- &-animating {
37215
- overflow: hidden;
37216
- }
37175
+ // Needed due to the specifics in the implementation of animations in Angular
37176
+ .k-notification-container-animating {
37177
+ overflow: hidden;
37217
37178
  }
37218
37179
 
37219
37180
  .k-notification {
@@ -37628,6 +37589,15 @@ $kendo-card-callout-height: 20px !default;
37628
37589
  *::after {
37629
37590
  box-sizing: border-box;
37630
37591
  }
37592
+
37593
+ // Card avatar
37594
+ .k-card-avatar,
37595
+ .k-avatar {
37596
+ margin-right: $kendo-card-avatar-spacing;
37597
+ width: $kendo-card-avatar-size;
37598
+ height: $kendo-card-avatar-size;
37599
+ flex-basis: $kendo-card-avatar-size;
37600
+ }
37631
37601
  }
37632
37602
  .k-card > .k-card-inner {
37633
37603
  @include border-radius( $kendo-card-inner-border-radius );
@@ -37637,11 +37607,9 @@ $kendo-card-callout-height: 20px !default;
37637
37607
  position: relative;
37638
37608
  }
37639
37609
 
37640
-
37641
37610
  // Card orientation
37642
- .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
37643
- .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
37644
-
37611
+ .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
37612
+ .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
37645
37613
 
37646
37614
  // Header
37647
37615
  .k-card-header {
@@ -37698,30 +37666,13 @@ $kendo-card-callout-height: 20px !default;
37698
37666
  }
37699
37667
  }
37700
37668
 
37701
-
37702
- // Card avatar
37703
- .k-card-avatar,
37704
- .k-card .k-avatar {
37705
- margin-right: $kendo-card-avatar-spacing;
37706
- width: $kendo-card-avatar-size;
37707
- height: $kendo-card-avatar-size;
37708
- flex-basis: $kendo-card-avatar-size;
37709
- }
37710
-
37711
-
37712
- // Card image
37713
- .k-card-image,
37669
+ // Card media
37714
37670
  .k-card-media {
37715
37671
  border: 0;
37716
37672
  max-width: 100%;
37717
37673
  flex-shrink: 0;
37718
37674
  overflow: hidden;
37719
37675
 
37720
- > img {
37721
- border: 0;
37722
- max-width: 100%;
37723
- }
37724
-
37725
37676
  .k-card-horizontal & {
37726
37677
  max-width: $kendo-card-img-max-width;
37727
37678
  object-fit: cover;
@@ -37765,22 +37716,23 @@ $kendo-card-callout-height: 20px !default;
37765
37716
  flex: 0 0 auto;
37766
37717
  align-self: stretch;
37767
37718
  }
37768
- .k-card-separator.k-separator-vertical,
37769
- .k-card-horizontal > .k-card-separator {
37770
- border-left-width: 1px;
37771
- }
37719
+
37772
37720
  .k-card-separator.k-separator-horizontal,
37773
37721
  .k-card-vertical > .k-card-separator {
37774
37722
  border-top-width: 1px;
37775
37723
  }
37776
37724
 
37725
+ .k-card-separator.k-separator-vertical,
37726
+ .k-card-horizontal > .k-card-separator {
37727
+ border-left-width: 1px;
37728
+ }
37729
+
37777
37730
  .k-card > .k-hr {
37778
37731
  margin: 0;
37779
37732
  flex: 0 0 auto;
37780
37733
  border-color: inherit;
37781
37734
  }
37782
37735
 
37783
-
37784
37736
  // Card actions
37785
37737
  .k-card-actions {
37786
37738
  padding-block: $kendo-card-actions-padding-y;
@@ -37795,33 +37747,6 @@ $kendo-card-callout-height: 20px !default;
37795
37747
  gap: $kendo-card-actions-gap;
37796
37748
  }
37797
37749
 
37798
-
37799
- // Actions align
37800
- .k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
37801
- .k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
37802
- .k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
37803
-
37804
-
37805
- // Actions orientation
37806
- .k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
37807
- .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
37808
-
37809
-
37810
- // Stretched actions
37811
- .k-card-actions-stretched > * {
37812
- flex: 1 1 auto;
37813
- }
37814
-
37815
-
37816
- // Card action
37817
- .k-card-action {
37818
- border-width: 0;
37819
- border-style: solid;
37820
- border-color: inherit;
37821
- display: inline-flex;
37822
- }
37823
-
37824
-
37825
37750
  // List
37826
37751
  .k-card-list {
37827
37752
  display: flex;
@@ -37913,9 +37838,6 @@ $kendo-card-callout-height: 20px !default;
37913
37838
  }
37914
37839
  }
37915
37840
 
37916
-
37917
-
37918
-
37919
37841
  // Card with callout
37920
37842
  .k-card-with-callout {
37921
37843
  overflow: visible;
@@ -45331,6 +45253,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
45331
45253
  $_selection-aggregates-padding-x: k-map-get( $size-props, selection-aggregates-padding-x );
45332
45254
  $_selection-aggregates-padding-y: k-map-get( $size-props, selection-aggregates-padding-y );
45333
45255
 
45256
+ .k-grid .k-grid-#{$size},
45334
45257
  .k-grid-#{$size} {
45335
45258
 
45336
45259
  .k-table-th {
@@ -55992,10 +55915,6 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
55992
55915
  }
55993
55916
  }
55994
55917
 
55995
- .k-event-collapse {
55996
- display: none;
55997
- }
55998
-
55999
55918
  &.k-timeline-collapsible {
56000
55919
  .k-card-header {
56001
55920
  cursor: pointer;