@progress/kendo-theme-material 5.6.1-dev.4 → 5.6.1-dev.7
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 +532 -395
- package/dist/all.scss +284 -194
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +4 -4
- package/scss/badge/_variables.scss +70 -35
- package/scss/card/_variables.scss +0 -10
- package/scss/pdf-viewer/_index.scss +3 -1
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/popover/_variables.scss +0 -5
package/dist/all.scss
CHANGED
|
@@ -4835,6 +4835,9 @@ $utils-border-radius: (
|
|
|
4835
4835
|
@each $pos in (static, relative, absolute, fixed, sticky) {
|
|
4836
4836
|
.k-#{$pos},
|
|
4837
4837
|
.k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
4838
|
+
|
|
4839
|
+
.\!k-#{$pos},
|
|
4840
|
+
.\!k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
4838
4841
|
}
|
|
4839
4842
|
|
|
4840
4843
|
/// @name k-pos-top
|
|
@@ -8656,41 +8659,76 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
|
|
|
8656
8659
|
// Component
|
|
8657
8660
|
// #region @import "_variables.scss"; -> packages/material/scss/badge/_variables.scss
|
|
8658
8661
|
// Badge
|
|
8659
|
-
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
$badge-border-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
$badge-
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
$badge-
|
|
8672
|
-
|
|
8673
|
-
$badge-padding-x-
|
|
8674
|
-
$badge-padding-
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
$badge-
|
|
8679
|
-
|
|
8680
|
-
$badge-
|
|
8681
|
-
$badge-
|
|
8682
|
-
|
|
8683
|
-
|
|
8684
|
-
|
|
8685
|
-
$badge-
|
|
8686
|
-
$badge-
|
|
8687
|
-
$
|
|
8688
|
-
$badge-
|
|
8689
|
-
|
|
8690
|
-
$
|
|
8691
|
-
|
|
8692
|
-
$badge-
|
|
8693
|
-
$badge-
|
|
8662
|
+
|
|
8663
|
+
/// Width of the border around the badge.
|
|
8664
|
+
/// @group badge
|
|
8665
|
+
$kendo-badge-border-width: 1px !default;
|
|
8666
|
+
|
|
8667
|
+
/// Border radius of the badge.
|
|
8668
|
+
/// @group badge
|
|
8669
|
+
$kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
8670
|
+
|
|
8671
|
+
|
|
8672
|
+
/// Horizontal padding of the badge.
|
|
8673
|
+
/// @group badge
|
|
8674
|
+
$kendo-badge-padding-x: map-get( $spacing, 1 ) !default;
|
|
8675
|
+
$kendo-badge-padding-x-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
8676
|
+
$kendo-badge-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
8677
|
+
$kendo-badge-padding-x-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
8678
|
+
|
|
8679
|
+
/// Vertical padding of the badge.
|
|
8680
|
+
/// @group badge
|
|
8681
|
+
$kendo-badge-padding-y: map-get( $spacing, 1 ) !default;
|
|
8682
|
+
$kendo-badge-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
8683
|
+
$kendo-badge-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
8684
|
+
$kendo-badge-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
8685
|
+
|
|
8686
|
+
/// Font sizes of the badge.
|
|
8687
|
+
/// @group badge
|
|
8688
|
+
$kendo-badge-font-size: $font-size-xs !default;
|
|
8689
|
+
$kendo-badge-font-size-sm: $font-size-xs !default;
|
|
8690
|
+
$kendo-badge-font-size-md: $font-size-xs !default;
|
|
8691
|
+
$kendo-badge-font-size-lg: $font-size-xs !default;
|
|
8692
|
+
|
|
8693
|
+
/// Line heights used along with $font-size.
|
|
8694
|
+
/// @group badge
|
|
8695
|
+
$kendo-badge-line-height: 1 !default;
|
|
8696
|
+
$kendo-badge-line-height-sm: $kendo-badge-line-height !default;
|
|
8697
|
+
$kendo-badge-line-height-md: $kendo-badge-line-height !default;
|
|
8698
|
+
$kendo-badge-line-height-lg: $kendo-badge-line-height !default;
|
|
8699
|
+
|
|
8700
|
+
/// Badge min width used for circle badge.
|
|
8701
|
+
/// @group badge
|
|
8702
|
+
$kendo-badge-min-width: calc( #{$kendo-badge-line-height * 1em} + #{$kendo-badge-padding-y * 2} + #{$kendo-badge-border-width * 2}) !default;
|
|
8703
|
+
$kendo-badge-min-width-sm: calc( #{$kendo-badge-line-height-sm * 1em} + #{$kendo-badge-padding-y-sm * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
8704
|
+
$kendo-badge-min-width-md: calc( #{$kendo-badge-line-height-md * 1em} + #{$kendo-badge-padding-y-md * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
8705
|
+
$kendo-badge-min-width-lg: calc( #{$kendo-badge-line-height-lg * 1em} + #{$kendo-badge-padding-y-lg * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
8706
|
+
|
|
8707
|
+
/// Sizes map for the badge.
|
|
8708
|
+
/// @group badge
|
|
8709
|
+
$kendo-badge-sizes: (
|
|
8710
|
+
sm: (
|
|
8711
|
+
padding-x: $kendo-badge-padding-x-sm,
|
|
8712
|
+
padding-y: $kendo-badge-padding-y-sm,
|
|
8713
|
+
font-size: $kendo-badge-font-size-sm,
|
|
8714
|
+
line-height: $kendo-badge-line-height-sm,
|
|
8715
|
+
min-width: $kendo-badge-min-width-sm
|
|
8716
|
+
),
|
|
8717
|
+
md: (
|
|
8718
|
+
padding-x: $kendo-badge-padding-x-md,
|
|
8719
|
+
padding-y: $kendo-badge-padding-y-md,
|
|
8720
|
+
font-size: $kendo-badge-font-size-md,
|
|
8721
|
+
line-height: $kendo-badge-line-height-md,
|
|
8722
|
+
min-width: $kendo-badge-min-width-md
|
|
8723
|
+
),
|
|
8724
|
+
lg: (
|
|
8725
|
+
padding-x: $kendo-badge-padding-x-lg,
|
|
8726
|
+
padding-y: $kendo-badge-padding-y-lg,
|
|
8727
|
+
font-size: $kendo-badge-font-size-lg,
|
|
8728
|
+
line-height: $kendo-badge-line-height-lg,
|
|
8729
|
+
min-width: $kendo-badge-min-width-lg
|
|
8730
|
+
)
|
|
8731
|
+
) !default;
|
|
8694
8732
|
|
|
8695
8733
|
// #endregion
|
|
8696
8734
|
// #region @import "_layout.scss"; -> packages/material/scss/badge/_layout.scss
|
|
@@ -8699,7 +8737,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8699
8737
|
|
|
8700
8738
|
.k-badge {
|
|
8701
8739
|
padding: 0;
|
|
8702
|
-
border-width:
|
|
8740
|
+
border-width: $kendo-badge-border-width;
|
|
8703
8741
|
border-style: solid;
|
|
8704
8742
|
border-color: transparent;
|
|
8705
8743
|
box-sizing: border-box;
|
|
@@ -8749,74 +8787,23 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8749
8787
|
|
|
8750
8788
|
|
|
8751
8789
|
// Badge sizes
|
|
8752
|
-
|
|
8753
|
-
|
|
8754
|
-
|
|
8755
|
-
|
|
8756
|
-
|
|
8757
|
-
|
|
8758
|
-
&:empty { padding: $badge-padding-y-sm; }
|
|
8759
|
-
}
|
|
8760
|
-
.k-badge-md {
|
|
8761
|
-
padding: $badge-padding-y $badge-padding-x;
|
|
8762
|
-
border-width: $badge-border-width;
|
|
8763
|
-
font-size: $badge-font-size;
|
|
8764
|
-
line-height: $badge-line-height;
|
|
8765
|
-
|
|
8766
|
-
&:empty { padding: $badge-padding-y; }
|
|
8767
|
-
}
|
|
8768
|
-
.k-badge-lg {
|
|
8769
|
-
padding: $badge-padding-y-lg $badge-padding-x-lg;
|
|
8770
|
-
border-width: $badge-border-width-lg;
|
|
8771
|
-
font-size: $badge-font-size-lg;
|
|
8772
|
-
line-height: $badge-line-height-lg;
|
|
8773
|
-
|
|
8774
|
-
&:empty { padding: $badge-padding-y-lg; }
|
|
8775
|
-
}
|
|
8776
|
-
|
|
8777
|
-
|
|
8778
|
-
// Badge shapes
|
|
8779
|
-
.k-badge-rounded {
|
|
8780
|
-
&.k-badge-sm { @include border-radius( $badge-border-radius-sm ); }
|
|
8781
|
-
&.k-badge-md { @include border-radius( $badge-border-radius ); }
|
|
8782
|
-
&.k-badge-lg { @include border-radius( $badge-border-radius-lg ); }
|
|
8783
|
-
}
|
|
8784
|
-
.k-badge-pill {
|
|
8785
|
-
border-radius: 5rem;
|
|
8786
|
-
}
|
|
8787
|
-
.k-badge-circle {
|
|
8788
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
8789
|
-
border-radius: 100%;
|
|
8790
|
+
@each $size, $size-props in $kendo-badge-sizes {
|
|
8791
|
+
$_padding-x: map-get( $size-props, padding-x );
|
|
8792
|
+
$_padding-y: map-get( $size-props, padding-y );
|
|
8793
|
+
$_font-size: map-get( $size-props, font-size );
|
|
8794
|
+
$_line-height: map-get( $size-props, line-height );
|
|
8795
|
+
$_min-width: map-get( $size-props, min-width );
|
|
8790
8796
|
|
|
8791
|
-
|
|
8792
|
-
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
width: $badge-size;
|
|
8797
|
-
height: $badge-size;
|
|
8798
|
-
}
|
|
8799
|
-
&.k-badge-lg {
|
|
8800
|
-
width: $badge-size-lg;
|
|
8801
|
-
height: $badge-size-lg;
|
|
8802
|
-
}
|
|
8803
|
-
}
|
|
8804
|
-
.k-badge-dot {
|
|
8805
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
8806
|
-
border-radius: 100%;
|
|
8807
|
-
font-size: 0;
|
|
8797
|
+
.k-badge-#{$size} {
|
|
8798
|
+
padding: $_padding-y $_padding-x;
|
|
8799
|
+
font-size: $_font-size;
|
|
8800
|
+
line-height: $_line-height;
|
|
8801
|
+
min-width: $_min-width;
|
|
8808
8802
|
|
|
8809
|
-
|
|
8810
|
-
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
&.k-badge-md {
|
|
8814
|
-
width: $badge-dot-size;
|
|
8815
|
-
height: $badge-dot-size;
|
|
8816
|
-
}
|
|
8817
|
-
&.k-badge-lg {
|
|
8818
|
-
width: $badge-dot-size-lg;
|
|
8819
|
-
height: $badge-dot-size-lg;
|
|
8803
|
+
&:empty {
|
|
8804
|
+
padding: $_padding-y;
|
|
8805
|
+
min-width: auto;
|
|
8806
|
+
}
|
|
8820
8807
|
}
|
|
8821
8808
|
}
|
|
8822
8809
|
|
|
@@ -8900,7 +8887,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8900
8887
|
|
|
8901
8888
|
// Solid badges
|
|
8902
8889
|
@each $name, $color in $kendo-theme-colors {
|
|
8903
|
-
.k-badge-solid
|
|
8890
|
+
.k-badge-solid-#{$name} {
|
|
8904
8891
|
border-color: $color;
|
|
8905
8892
|
color: contrast-wcag( $color );
|
|
8906
8893
|
background-color: $color;
|
|
@@ -8914,7 +8901,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8914
8901
|
}
|
|
8915
8902
|
|
|
8916
8903
|
@each $name, $color in $kendo-theme-colors {
|
|
8917
|
-
.k-badge-outline
|
|
8904
|
+
.k-badge-outline-#{$name} {
|
|
8918
8905
|
color: $color;
|
|
8919
8906
|
}
|
|
8920
8907
|
}
|
|
@@ -14824,6 +14811,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14824
14811
|
align-items: center;
|
|
14825
14812
|
}
|
|
14826
14813
|
|
|
14814
|
+
// Template item
|
|
14815
|
+
.k-toolbar-item:focus {
|
|
14816
|
+
text-decoration: none;
|
|
14817
|
+
outline: 0;
|
|
14818
|
+
}
|
|
14819
|
+
|
|
14827
14820
|
}
|
|
14828
14821
|
|
|
14829
14822
|
|
|
@@ -15034,6 +15027,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15034
15027
|
}
|
|
15035
15028
|
|
|
15036
15029
|
|
|
15030
|
+
// Template item
|
|
15031
|
+
.k-toolbar-item:focus,
|
|
15032
|
+
.k-toolbar-item.k-focus {
|
|
15033
|
+
@include box-shadow( $kendo-button-focus-shadow );
|
|
15034
|
+
}
|
|
15035
|
+
|
|
15036
|
+
|
|
15037
15037
|
// Button group
|
|
15038
15038
|
.k-button-group {}
|
|
15039
15039
|
|
|
@@ -18135,8 +18135,8 @@ $slider-disabled-opacity: .65 !default;
|
|
|
18135
18135
|
left: auto;
|
|
18136
18136
|
}
|
|
18137
18137
|
|
|
18138
|
-
.k-button .k-
|
|
18139
|
-
.k-button .k-
|
|
18138
|
+
.k-button-increase .k-icon,
|
|
18139
|
+
.k-button-decrease .k-icon {
|
|
18140
18140
|
transform: scaleX(-1);
|
|
18141
18141
|
}
|
|
18142
18142
|
}
|
|
@@ -20537,7 +20537,7 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
|
|
|
20537
20537
|
}
|
|
20538
20538
|
|
|
20539
20539
|
// Needed for the double check icons
|
|
20540
|
-
.k-
|
|
20540
|
+
.k-icon + .k-icon {
|
|
20541
20541
|
margin-left: -13px;
|
|
20542
20542
|
}
|
|
20543
20543
|
}
|
|
@@ -25745,7 +25745,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25745
25745
|
flex: none;
|
|
25746
25746
|
}
|
|
25747
25747
|
|
|
25748
|
-
> .k-i-close
|
|
25748
|
+
> .k-i-close,
|
|
25749
|
+
> .k-i-x {
|
|
25749
25750
|
margin-right: 0;
|
|
25750
25751
|
margin-left: $notification-icon-spacing;
|
|
25751
25752
|
flex: none;
|
|
@@ -25768,7 +25769,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25768
25769
|
margin-left: $notification-icon-spacing;
|
|
25769
25770
|
}
|
|
25770
25771
|
|
|
25771
|
-
> .k-i-close
|
|
25772
|
+
> .k-i-close,
|
|
25773
|
+
> .k-i-x {
|
|
25772
25774
|
margin-left: 0;
|
|
25773
25775
|
margin-right: $notification-icon-spacing;
|
|
25774
25776
|
}
|
|
@@ -25793,7 +25795,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25793
25795
|
);
|
|
25794
25796
|
}
|
|
25795
25797
|
.k-notification-wrap {
|
|
25796
|
-
> .k-i-close
|
|
25798
|
+
> .k-i-close,
|
|
25799
|
+
> .k-i-x {
|
|
25797
25800
|
color: inherit;
|
|
25798
25801
|
}
|
|
25799
25802
|
}
|
|
@@ -25932,16 +25935,6 @@ $card-deck-scroll-button-offset: ( $card-deck-gap / 2 ) !default;
|
|
|
25932
25935
|
$card-callout-width: 20px !default;
|
|
25933
25936
|
$card-callout-height: 20px !default;
|
|
25934
25937
|
|
|
25935
|
-
$card-callout-box-shadow-n: 2px -2px 2px 0 rgba(0, 0, 0, .04) !default;
|
|
25936
|
-
$card-callout-box-shadow-e: -1px -3px 1px -2px rgba(0, 0, 0, .2), 0 -2px 2px -2px rgba(0, 0, 0, .14), 1px -2px 2px -1px rgba(0, 0, 0, .12) !default;
|
|
25937
|
-
$card-callout-box-shadow-s: 2px -2px 2px 0 rgba(0, 0, 0, .2), 0 -2px 2px -3px rgba(0, 0, 0, .14), 1px -2px 2px -1px rgba(0, 0, 0, .12) !default;
|
|
25938
|
-
$card-callout-box-shadow-w: -1px -3px 1px -2px rgba(0, 0, 0, .2), 0 -2px 2px -2px rgba(0, 0, 0, .14), 1px -2px 2px -1px rgba(0, 0, 0, .12) !default;
|
|
25939
|
-
|
|
25940
|
-
$card-focus-callout-box-shadow-n: null !default;
|
|
25941
|
-
$card-focus-callout-box-shadow-e: null !default;
|
|
25942
|
-
$card-focus-callout-box-shadow-s: null !default;
|
|
25943
|
-
$card-focus-callout-box-shadow-w: null !default;
|
|
25944
|
-
|
|
25945
25938
|
// #endregion
|
|
25946
25939
|
// #region @import "_layout.scss"; -> packages/material/scss/card/_layout.scss
|
|
25947
25940
|
// #region @import "~@progress/kendo-theme-default/scss/card/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/card/_layout.scss
|
|
@@ -25986,6 +25979,7 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
25986
25979
|
display: flex;
|
|
25987
25980
|
flex-direction: inherit;
|
|
25988
25981
|
overflow: hidden;
|
|
25982
|
+
position: relative;
|
|
25989
25983
|
}
|
|
25990
25984
|
|
|
25991
25985
|
|
|
@@ -26276,7 +26270,7 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
26276
26270
|
margin: 0;
|
|
26277
26271
|
width: $card-callout-width;
|
|
26278
26272
|
height: $card-callout-height;
|
|
26279
|
-
border-width: $card-border-width
|
|
26273
|
+
border-width: $card-border-width;
|
|
26280
26274
|
border-style: solid;
|
|
26281
26275
|
box-sizing: border-box;
|
|
26282
26276
|
position: absolute;
|
|
@@ -26285,22 +26279,22 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
26285
26279
|
.k-card-callout.k-callout-n {
|
|
26286
26280
|
top: 0;
|
|
26287
26281
|
left: 50%;
|
|
26288
|
-
transform: translate(-50%, -50%) rotate(
|
|
26282
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26289
26283
|
}
|
|
26290
26284
|
.k-card-callout.k-callout-e {
|
|
26291
26285
|
top: 50%;
|
|
26292
26286
|
right: 0;
|
|
26293
|
-
transform: translate(50%, -50%) rotate(
|
|
26287
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
26294
26288
|
}
|
|
26295
26289
|
.k-card-callout.k-callout-s {
|
|
26296
26290
|
bottom: 0;
|
|
26297
26291
|
left: 50%;
|
|
26298
|
-
transform: translate(-50%, 50%) rotate(
|
|
26292
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
26299
26293
|
}
|
|
26300
26294
|
.k-card-callout.k-callout-w {
|
|
26301
26295
|
top: 50%;
|
|
26302
26296
|
left: 0;
|
|
26303
|
-
transform: translate(-50%, -50%) rotate(
|
|
26297
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26304
26298
|
}
|
|
26305
26299
|
|
|
26306
26300
|
}
|
|
@@ -26357,6 +26351,11 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
26357
26351
|
);
|
|
26358
26352
|
@include box-shadow( $card-shadow );
|
|
26359
26353
|
|
|
26354
|
+
.k-card-inner {
|
|
26355
|
+
background-color: inherit;
|
|
26356
|
+
border-color: inherit;
|
|
26357
|
+
}
|
|
26358
|
+
|
|
26360
26359
|
&:focus,
|
|
26361
26360
|
&.k-focus,
|
|
26362
26361
|
&.k-state-focus {
|
|
@@ -26436,28 +26435,11 @@ $card-focus-callout-box-shadow-w: null !default;
|
|
|
26436
26435
|
// Card callout
|
|
26437
26436
|
.k-card-callout {
|
|
26438
26437
|
@include fill(
|
|
26439
|
-
$bg:
|
|
26440
|
-
$border:
|
|
26438
|
+
$bg: inherit,
|
|
26439
|
+
$border: inherit
|
|
26441
26440
|
);
|
|
26442
|
-
}
|
|
26443
26441
|
|
|
26444
|
-
|
|
26445
|
-
.k-card-callout.k-callout-e { @include box-shadow( $card-callout-box-shadow-e ); }
|
|
26446
|
-
.k-card-callout.k-callout-s { @include box-shadow( $card-callout-box-shadow-s ); }
|
|
26447
|
-
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
26448
|
-
|
|
26449
|
-
.k-card:focus .k-card-callout,
|
|
26450
|
-
.k-card.k-focus .k-card-callout,
|
|
26451
|
-
.k-card.k-state-focus .k-card-callout {
|
|
26452
|
-
@include fill(
|
|
26453
|
-
$bg: $card-focus-bg,
|
|
26454
|
-
$border: $card-focus-border
|
|
26455
|
-
);
|
|
26456
|
-
|
|
26457
|
-
&.k-callout-n { @include box-shadow( $card-focus-callout-box-shadow-n ); }
|
|
26458
|
-
&.k-callout-e { @include box-shadow( $card-focus-callout-box-shadow-e ); }
|
|
26459
|
-
&.k-callout-s { @include box-shadow( $card-focus-callout-box-shadow-s ); }
|
|
26460
|
-
&.k-callout-w { @include box-shadow( $card-focus-callout-box-shadow-w ); }
|
|
26442
|
+
@include box-shadow( inherit );
|
|
26461
26443
|
}
|
|
26462
26444
|
|
|
26463
26445
|
}
|
|
@@ -26503,11 +26485,6 @@ $popover-callout-border-style: $popover-border-style !default;
|
|
|
26503
26485
|
$popover-callout-bg: $popover-bg !default;
|
|
26504
26486
|
$popover-callout-border: $popover-border !default;
|
|
26505
26487
|
|
|
26506
|
-
$popover-callout-shadow-n: $card-callout-box-shadow-n !default;
|
|
26507
|
-
$popover-callout-shadow-e: $card-callout-box-shadow-e !default;
|
|
26508
|
-
$popover-callout-shadow-s: $card-callout-box-shadow-s !default;
|
|
26509
|
-
$popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
26510
|
-
|
|
26511
26488
|
// #endregion
|
|
26512
26489
|
// #region @import "_layout.scss"; -> packages/material/scss/popover/_layout.scss
|
|
26513
26490
|
// #region @import "~@progress/kendo-theme-default/scss/popover/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
|
|
@@ -26537,6 +26514,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
26537
26514
|
}
|
|
26538
26515
|
}
|
|
26539
26516
|
|
|
26517
|
+
.k-popover-inner {
|
|
26518
|
+
position: relative;
|
|
26519
|
+
border-radius: inherit;
|
|
26520
|
+
}
|
|
26521
|
+
|
|
26540
26522
|
// Header
|
|
26541
26523
|
.k-popover-header {
|
|
26542
26524
|
@include border-top-radius( $popover-border-radius );
|
|
@@ -26563,32 +26545,32 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
26563
26545
|
margin: 0;
|
|
26564
26546
|
width: $popover-callout-width;
|
|
26565
26547
|
height: $popover-callout-height;
|
|
26566
|
-
border-width: $popover-callout-border-width
|
|
26548
|
+
border-width: $popover-callout-border-width;
|
|
26567
26549
|
border-style: $popover-callout-border-style;
|
|
26568
26550
|
position: absolute;
|
|
26569
26551
|
|
|
26570
26552
|
&.k-callout-n {
|
|
26571
26553
|
top: 0;
|
|
26572
26554
|
left: 50%;
|
|
26573
|
-
transform: translate(-50%, -50%) rotate(
|
|
26555
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26574
26556
|
}
|
|
26575
26557
|
|
|
26576
26558
|
&.k-callout-e {
|
|
26577
26559
|
top: 50%;
|
|
26578
26560
|
right: 0;
|
|
26579
|
-
transform: translate(50%, -50%) rotate(
|
|
26561
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
26580
26562
|
}
|
|
26581
26563
|
|
|
26582
26564
|
&.k-callout-s {
|
|
26583
26565
|
bottom: 0;
|
|
26584
26566
|
left: 50%;
|
|
26585
|
-
transform: translate(-50%, 50%) rotate(
|
|
26567
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
26586
26568
|
}
|
|
26587
26569
|
|
|
26588
26570
|
&.k-callout-w {
|
|
26589
26571
|
top: 50%;
|
|
26590
26572
|
left: 0;
|
|
26591
|
-
transform: translate(-50%, -50%) rotate(
|
|
26573
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26592
26574
|
}
|
|
26593
26575
|
}
|
|
26594
26576
|
|
|
@@ -26612,6 +26594,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
26612
26594
|
);
|
|
26613
26595
|
}
|
|
26614
26596
|
|
|
26597
|
+
.k-popover-inner {
|
|
26598
|
+
background-color: inherit;
|
|
26599
|
+
border-color: inherit;
|
|
26600
|
+
}
|
|
26601
|
+
|
|
26615
26602
|
// Header
|
|
26616
26603
|
.k-popover-header {
|
|
26617
26604
|
@include fill(
|
|
@@ -26624,14 +26611,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
26624
26611
|
// Callout
|
|
26625
26612
|
.k-popover-callout {
|
|
26626
26613
|
@include fill(
|
|
26627
|
-
$bg:
|
|
26628
|
-
$border:
|
|
26614
|
+
$bg: inherit,
|
|
26615
|
+
$border: inherit
|
|
26629
26616
|
);
|
|
26630
26617
|
|
|
26631
|
-
|
|
26632
|
-
&.k-callout-e { @include box-shadow( $popover-callout-shadow-e ); }
|
|
26633
|
-
&.k-callout-s { @include box-shadow( $popover-callout-shadow-s ); }
|
|
26634
|
-
&.k-callout-w { @include box-shadow( $popover-callout-shadow-w ); }
|
|
26618
|
+
@include box-shadow( inherit )
|
|
26635
26619
|
}
|
|
26636
26620
|
|
|
26637
26621
|
}
|
|
@@ -27433,6 +27417,10 @@ $pager-dropdown-width: 5em !default;
|
|
|
27433
27417
|
.k-rtl &,
|
|
27434
27418
|
&[dir="rtl"],
|
|
27435
27419
|
[dir="rtl"] & {
|
|
27420
|
+
.k-i-caret-alt-to-left,
|
|
27421
|
+
.k-i-caret-alt-to-right,
|
|
27422
|
+
.k-i-caret-alt-left,
|
|
27423
|
+
.k-i-caret-alt-right,
|
|
27436
27424
|
.k-i-arrow-end-left,
|
|
27437
27425
|
.k-i-arrow-60-left,
|
|
27438
27426
|
.k-i-arrow-60-right,
|
|
@@ -30923,7 +30911,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30923
30911
|
border-radius: 50%;
|
|
30924
30912
|
}
|
|
30925
30913
|
|
|
30926
|
-
.k-i-reload
|
|
30914
|
+
.k-i-reload,
|
|
30915
|
+
.k-i-arrow-rotate-cw {
|
|
30927
30916
|
font-size: 1em;
|
|
30928
30917
|
margin-right: .5em;
|
|
30929
30918
|
}
|
|
@@ -31951,7 +31940,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31951
31940
|
|
|
31952
31941
|
.k-cell-inner > .k-link > .k-icon {
|
|
31953
31942
|
&.k-i-sort-desc-sm,
|
|
31954
|
-
&.k-i-sort-asc-sm
|
|
31943
|
+
&.k-i-sort-asc-sm,
|
|
31944
|
+
&.k-i-sort-asc-small,
|
|
31945
|
+
&.k-i-sort-desc-small {
|
|
31955
31946
|
vertical-align: text-top;
|
|
31956
31947
|
margin-inline-start: $grid-sorted-icon-spacing;
|
|
31957
31948
|
}
|
|
@@ -33060,6 +33051,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33060
33051
|
|
|
33061
33052
|
.k-i-sort-asc-sm,
|
|
33062
33053
|
.k-i-sort-desc-sm,
|
|
33054
|
+
.k-i-sort-asc-small,
|
|
33055
|
+
.k-i-sort-desc-small,
|
|
33063
33056
|
.k-sort-order {
|
|
33064
33057
|
color: $grid-sorting-indicator-text;
|
|
33065
33058
|
}
|
|
@@ -38203,7 +38196,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38203
38196
|
border-bottom-color: inherit;
|
|
38204
38197
|
cursor: se-resize;
|
|
38205
38198
|
|
|
38206
|
-
.k-i-arrow-45-down-right
|
|
38199
|
+
.k-i-arrow-45-down-right,
|
|
38200
|
+
.k-i-caret-br {
|
|
38207
38201
|
display: none;
|
|
38208
38202
|
}
|
|
38209
38203
|
}
|
|
@@ -41597,6 +41591,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41597
41591
|
|
|
41598
41592
|
.k-scheduler,
|
|
41599
41593
|
&.k-scheduler {
|
|
41594
|
+
.k-i-caret-alt-left,
|
|
41595
|
+
.k-i-caret-alt-right,
|
|
41600
41596
|
.k-i-arrow-60-left,
|
|
41601
41597
|
.k-i-arrow-60-right,
|
|
41602
41598
|
.k-current-time-arrow-right {
|
|
@@ -43720,6 +43716,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43720
43716
|
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
43721
43717
|
// File already imported_once. Skipping output.
|
|
43722
43718
|
// #endregion
|
|
43719
|
+
// #region @import "../button/_variables.scss"; -> packages/material/scss/button/_variables.scss
|
|
43720
|
+
// File already imported_once. Skipping output.
|
|
43721
|
+
// #endregion
|
|
43723
43722
|
// #region @import "../combobox/_index.scss"; -> packages/material/scss/combobox/_index.scss
|
|
43724
43723
|
// File already imported_once. Skipping output.
|
|
43725
43724
|
// #endregion
|
|
@@ -43735,7 +43734,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43735
43734
|
// #region @import "../icons/_index.scss"; -> packages/material/scss/icons/_index.scss
|
|
43736
43735
|
// File already imported_once. Skipping output.
|
|
43737
43736
|
// #endregion
|
|
43738
|
-
|
|
43737
|
+
// #region @import "../dropzone/_index.scss"; -> packages/material/scss/dropzone/_index.scss
|
|
43738
|
+
// File already imported_once. Skipping output.
|
|
43739
|
+
// #endregion
|
|
43740
|
+
// #region @import "../window/_index.scss"; -> packages/material/scss/window/_index.scss
|
|
43741
|
+
// File already imported_once. Skipping output.
|
|
43742
|
+
// #endregion
|
|
43739
43743
|
|
|
43740
43744
|
// Component
|
|
43741
43745
|
// #region @import "_variables.scss"; -> packages/material/scss/pdf-viewer/_variables.scss
|
|
@@ -43765,12 +43769,25 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
43765
43769
|
$pdf-viewer-page-border: $component-border !default;
|
|
43766
43770
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
43767
43771
|
|
|
43768
|
-
$pdf-viewer-search-
|
|
43772
|
+
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
43773
|
+
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
43774
|
+
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
43775
|
+
$pdf-viewer-search-panel-text: $component-text !default;
|
|
43776
|
+
$pdf-viewer-search-panel-border: $component-border !default;
|
|
43777
|
+
$pdf-viewer-search-panel-shadow: $window-shadow !default;
|
|
43778
|
+
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
43779
|
+
|
|
43780
|
+
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
43781
|
+
$pdf-viewer-search-dialog-padding-y: calc( #{$toolbar-padding-x} * 2 ) !default;
|
|
43769
43782
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
43770
43783
|
|
|
43771
43784
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
43772
43785
|
|
|
43773
43786
|
$pdf-viewer-search-highlight-bg: $body-text !default;
|
|
43787
|
+
$pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
43788
|
+
|
|
43789
|
+
$pdf-viewer-icon-text: $dropzone-icon-text !default;
|
|
43790
|
+
$pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
43774
43791
|
|
|
43775
43792
|
// #endregion
|
|
43776
43793
|
// #region @import "_layout.scss"; -> packages/material/scss/pdf-viewer/_layout.scss
|
|
@@ -43781,6 +43798,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43781
43798
|
border-width: $pdf-viewer-border-width;
|
|
43782
43799
|
border-style: solid;
|
|
43783
43800
|
box-sizing: border-box;
|
|
43801
|
+
position: relative;
|
|
43784
43802
|
outline: 0;
|
|
43785
43803
|
font-family: $pdf-viewer-font-family;
|
|
43786
43804
|
font-size: $pdf-viewer-font-size;
|
|
@@ -43811,11 +43829,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43811
43829
|
|
|
43812
43830
|
|
|
43813
43831
|
// Canvas
|
|
43814
|
-
.k-
|
|
43832
|
+
.k-canvas {
|
|
43833
|
+
display: flex;
|
|
43834
|
+
flex-direction: column;
|
|
43815
43835
|
flex: 1 1 auto;
|
|
43816
43836
|
outline: none;
|
|
43817
43837
|
|
|
43818
|
-
.k-enable-text-select
|
|
43838
|
+
.k-enable-text-select,
|
|
43839
|
+
&.k-enable-text-select {
|
|
43819
43840
|
-webkit-user-select: text;
|
|
43820
43841
|
-moz-user-select: text;
|
|
43821
43842
|
-ms-user-select: text;
|
|
@@ -43823,16 +43844,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43823
43844
|
cursor: text;
|
|
43824
43845
|
}
|
|
43825
43846
|
|
|
43826
|
-
.k-enable-panning
|
|
43847
|
+
.k-enable-panning,
|
|
43848
|
+
&.k-enable-panning {
|
|
43827
43849
|
cursor: grab;
|
|
43828
43850
|
}
|
|
43829
|
-
.k-enable-panning span::selection
|
|
43851
|
+
.k-enable-panning span::selection,
|
|
43852
|
+
&.k-enable-panning span::selection {
|
|
43830
43853
|
background-color: transparent;
|
|
43831
43854
|
}
|
|
43832
43855
|
}
|
|
43833
43856
|
|
|
43834
43857
|
|
|
43835
|
-
//
|
|
43858
|
+
// Pages
|
|
43859
|
+
.k-pdf-viewer-pages {
|
|
43860
|
+
flex: 1 1 auto;
|
|
43861
|
+
}
|
|
43862
|
+
|
|
43836
43863
|
.k-page {
|
|
43837
43864
|
position: relative;
|
|
43838
43865
|
margin: $pdf-viewer-page-spacing auto;
|
|
@@ -43858,46 +43885,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43858
43885
|
mark {
|
|
43859
43886
|
color: transparent;
|
|
43860
43887
|
}
|
|
43888
|
+
|
|
43889
|
+
.k-search-highlight-mark {
|
|
43890
|
+
color: transparent;
|
|
43891
|
+
}
|
|
43861
43892
|
}
|
|
43862
43893
|
}
|
|
43894
|
+
|
|
43895
|
+
.k-blank-page {
|
|
43896
|
+
margin: 0;
|
|
43897
|
+
display: flex;
|
|
43898
|
+
flex-flow: column nowrap;
|
|
43899
|
+
width: 100%;
|
|
43900
|
+
height: 100%;
|
|
43901
|
+
align-items: center;
|
|
43902
|
+
justify-content: center;
|
|
43903
|
+
background-color: inherit !important; // sass-lint:disable-line no-important
|
|
43904
|
+
|
|
43905
|
+
.k-upload,
|
|
43906
|
+
.k-dropzone,
|
|
43907
|
+
.k-dropzone-inner {
|
|
43908
|
+
border: 0;
|
|
43909
|
+
background: none;
|
|
43910
|
+
}
|
|
43911
|
+
|
|
43912
|
+
> .k-icon {
|
|
43913
|
+
font-size: $pdf-viewer-icon-size;
|
|
43914
|
+
}
|
|
43915
|
+
}
|
|
43916
|
+
|
|
43863
43917
|
}
|
|
43864
43918
|
|
|
43865
43919
|
// Search
|
|
43866
43920
|
.k-pdf-viewer-search-dialog {
|
|
43867
|
-
padding:
|
|
43921
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
43922
|
+
}
|
|
43868
43923
|
|
|
43869
|
-
|
|
43870
|
-
|
|
43871
|
-
|
|
43872
|
-
|
|
43873
|
-
|
|
43874
|
-
|
|
43875
|
-
|
|
43924
|
+
.k-search-panel {
|
|
43925
|
+
padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
|
|
43926
|
+
display: flex;
|
|
43927
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
43928
|
+
flex-flow: row nowrap;
|
|
43929
|
+
flex: 0 0 auto;
|
|
43930
|
+
justify-content: flex-start;
|
|
43931
|
+
align-items: center;
|
|
43876
43932
|
|
|
43877
|
-
|
|
43878
|
-
|
|
43879
|
-
|
|
43880
|
-
|
|
43933
|
+
.k-search-dialog-draghandle {
|
|
43934
|
+
cursor: move;
|
|
43935
|
+
margin-left: 0;
|
|
43936
|
+
}
|
|
43881
43937
|
|
|
43882
|
-
|
|
43883
|
-
|
|
43884
|
-
|
|
43938
|
+
.k-textbox {
|
|
43939
|
+
width: 10em;
|
|
43940
|
+
flex: none;
|
|
43885
43941
|
|
|
43886
|
-
|
|
43887
|
-
|
|
43888
|
-
}
|
|
43942
|
+
.k-button {
|
|
43943
|
+
border-width: 0;
|
|
43889
43944
|
}
|
|
43945
|
+
}
|
|
43890
43946
|
|
|
43891
|
-
|
|
43892
|
-
|
|
43893
|
-
|
|
43947
|
+
.k-search-matches {
|
|
43948
|
+
display: inline-flex;
|
|
43949
|
+
gap: $pdf-viewer-search-panel-matches-spacing;
|
|
43894
43950
|
}
|
|
43895
43951
|
}
|
|
43896
43952
|
|
|
43953
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
43954
|
+
width: max-content;
|
|
43955
|
+
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
43956
|
+
border-width: $pdf-viewer-search-panel-border-width;
|
|
43957
|
+
border-style: solid;
|
|
43958
|
+
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
43959
|
+
z-index: 10;
|
|
43960
|
+
}
|
|
43961
|
+
|
|
43962
|
+
// Alias
|
|
43963
|
+
.k-search-container {
|
|
43964
|
+
@extend .k-search-panel !optional;
|
|
43965
|
+
}
|
|
43966
|
+
|
|
43897
43967
|
|
|
43898
43968
|
// IE
|
|
43899
43969
|
.k-ie .k-pdf-viewer-search-dialog {
|
|
43900
|
-
|
|
43901
43970
|
.k-search-container > * + * {
|
|
43902
43971
|
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
43903
43972
|
}
|
|
@@ -43952,12 +44021,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43952
44021
|
@include box-shadow( $pdf-viewer-page-shadow );
|
|
43953
44022
|
}
|
|
43954
44023
|
|
|
44024
|
+
.k-blank-page > .k-icon {
|
|
44025
|
+
@include fill( $color: $pdf-viewer-icon-text );
|
|
44026
|
+
}
|
|
44027
|
+
|
|
43955
44028
|
|
|
43956
44029
|
// Search
|
|
43957
44030
|
.k-search-highlight {
|
|
43958
44031
|
background-color: $pdf-viewer-search-highlight-bg;
|
|
43959
44032
|
}
|
|
43960
44033
|
|
|
44034
|
+
.k-search-highlight-mark {
|
|
44035
|
+
@include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
|
|
44036
|
+
}
|
|
44037
|
+
|
|
44038
|
+
}
|
|
44039
|
+
|
|
44040
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
44041
|
+
@include fill(
|
|
44042
|
+
$pdf-viewer-search-panel-text,
|
|
44043
|
+
$pdf-viewer-search-panel-bg,
|
|
44044
|
+
$pdf-viewer-search-panel-border,
|
|
44045
|
+
);
|
|
44046
|
+
@include box-shadow( $pdf-viewer-search-panel-shadow );
|
|
44047
|
+
}
|
|
44048
|
+
|
|
44049
|
+
.k-search-container {
|
|
44050
|
+
@extend .k-search-panel !optional;
|
|
43961
44051
|
}
|
|
43962
44052
|
|
|
43963
44053
|
}
|
|
@@ -44700,7 +44790,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44700
44790
|
.k-chart-tooltip-wrapper {
|
|
44701
44791
|
z-index: 12000;
|
|
44702
44792
|
|
|
44703
|
-
|
|
44793
|
+
.k-popup {
|
|
44704
44794
|
padding: 0;
|
|
44705
44795
|
border-width: 0;
|
|
44706
44796
|
background: transparent;
|