@progress/kendo-theme-classic 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 +529 -385
- package/dist/all.scss +284 -194
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +4 -4
- package/scss/badge/_variables.scss +69 -35
- package/scss/button/_variables.scss +1 -1
- package/scss/card/_variables.scss +0 -10
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/popover/_variables.scss +0 -5
package/dist/all.scss
CHANGED
|
@@ -3983,6 +3983,9 @@ $utils-border-radius: (
|
|
|
3983
3983
|
@each $pos in (static, relative, absolute, fixed, sticky) {
|
|
3984
3984
|
.k-#{$pos},
|
|
3985
3985
|
.k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
3986
|
+
|
|
3987
|
+
.\!k-#{$pos},
|
|
3988
|
+
.\!k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
3986
3989
|
}
|
|
3987
3990
|
|
|
3988
3991
|
/// @name k-pos-top
|
|
@@ -7787,41 +7790,75 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
7787
7790
|
// Component
|
|
7788
7791
|
// #region @import "_variables.scss"; -> packages/classic/scss/badge/_variables.scss
|
|
7789
7792
|
// Badge
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
$badge-border-width: 1px !default;
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
$badge-
|
|
7802
|
-
$badge-
|
|
7803
|
-
|
|
7804
|
-
$badge-padding-x-lg: ( $
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
$badge-
|
|
7809
|
-
$badge-
|
|
7810
|
-
|
|
7811
|
-
$badge-
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
$badge-
|
|
7817
|
-
$badge-
|
|
7818
|
-
$
|
|
7819
|
-
|
|
7820
|
-
|
|
7821
|
-
|
|
7822
|
-
$
|
|
7823
|
-
$badge-
|
|
7824
|
-
$badge-
|
|
7793
|
+
/// Width of the border around the badge.
|
|
7794
|
+
/// @group badge
|
|
7795
|
+
$kendo-badge-border-width: 1px !default;
|
|
7796
|
+
|
|
7797
|
+
/// Border radius of the badge.
|
|
7798
|
+
/// @group badge
|
|
7799
|
+
$kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
7800
|
+
|
|
7801
|
+
|
|
7802
|
+
/// Horizontal padding of the badge.
|
|
7803
|
+
/// @group badge
|
|
7804
|
+
$kendo-badge-padding-x: map-get( $spacing, 1 ) !default;
|
|
7805
|
+
$kendo-badge-padding-x-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
7806
|
+
$kendo-badge-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
7807
|
+
$kendo-badge-padding-x-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
7808
|
+
|
|
7809
|
+
/// Vertical padding of the badge.
|
|
7810
|
+
/// @group badge
|
|
7811
|
+
$kendo-badge-padding-y: map-get( $spacing, 1 ) !default;
|
|
7812
|
+
$kendo-badge-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
7813
|
+
$kendo-badge-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
7814
|
+
$kendo-badge-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
7815
|
+
|
|
7816
|
+
/// Font sizes of the badge.
|
|
7817
|
+
/// @group badge
|
|
7818
|
+
$kendo-badge-font-size: $font-size-xs !default;
|
|
7819
|
+
$kendo-badge-font-size-sm: $font-size-xs !default;
|
|
7820
|
+
$kendo-badge-font-size-md: $font-size-xs !default;
|
|
7821
|
+
$kendo-badge-font-size-lg: $font-size-xs !default;
|
|
7822
|
+
|
|
7823
|
+
/// Line heights used along with $font-size.
|
|
7824
|
+
/// @group badge
|
|
7825
|
+
$kendo-badge-line-height: 1 !default;
|
|
7826
|
+
$kendo-badge-line-height-sm: $kendo-badge-line-height !default;
|
|
7827
|
+
$kendo-badge-line-height-md: $kendo-badge-line-height !default;
|
|
7828
|
+
$kendo-badge-line-height-lg: $kendo-badge-line-height !default;
|
|
7829
|
+
|
|
7830
|
+
/// Badge min width used for circle badge.
|
|
7831
|
+
/// @group badge
|
|
7832
|
+
$kendo-badge-min-width: calc( #{$kendo-badge-line-height * 1em} + #{$kendo-badge-padding-y * 2} + #{$kendo-badge-border-width * 2}) !default;
|
|
7833
|
+
$kendo-badge-min-width-sm: calc( #{$kendo-badge-line-height-sm * 1em} + #{$kendo-badge-padding-y-sm * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
7834
|
+
$kendo-badge-min-width-md: calc( #{$kendo-badge-line-height-md * 1em} + #{$kendo-badge-padding-y-md * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
7835
|
+
$kendo-badge-min-width-lg: calc( #{$kendo-badge-line-height-lg * 1em} + #{$kendo-badge-padding-y-lg * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
7836
|
+
|
|
7837
|
+
/// Sizes map for the badge.
|
|
7838
|
+
/// @group badge
|
|
7839
|
+
$kendo-badge-sizes: (
|
|
7840
|
+
sm: (
|
|
7841
|
+
padding-x: $kendo-badge-padding-x-sm,
|
|
7842
|
+
padding-y: $kendo-badge-padding-y-sm,
|
|
7843
|
+
font-size: $kendo-badge-font-size-sm,
|
|
7844
|
+
line-height: $kendo-badge-line-height-sm,
|
|
7845
|
+
min-width: $kendo-badge-min-width-sm
|
|
7846
|
+
),
|
|
7847
|
+
md: (
|
|
7848
|
+
padding-x: $kendo-badge-padding-x-md,
|
|
7849
|
+
padding-y: $kendo-badge-padding-y-md,
|
|
7850
|
+
font-size: $kendo-badge-font-size-md,
|
|
7851
|
+
line-height: $kendo-badge-line-height-md,
|
|
7852
|
+
min-width: $kendo-badge-min-width-md
|
|
7853
|
+
),
|
|
7854
|
+
lg: (
|
|
7855
|
+
padding-x: $kendo-badge-padding-x-lg,
|
|
7856
|
+
padding-y: $kendo-badge-padding-y-lg,
|
|
7857
|
+
font-size: $kendo-badge-font-size-lg,
|
|
7858
|
+
line-height: $kendo-badge-line-height-lg,
|
|
7859
|
+
min-width: $kendo-badge-min-width-lg
|
|
7860
|
+
)
|
|
7861
|
+
) !default;
|
|
7825
7862
|
|
|
7826
7863
|
// #endregion
|
|
7827
7864
|
// #region @import "_layout.scss"; -> packages/classic/scss/badge/_layout.scss
|
|
@@ -7830,7 +7867,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
7830
7867
|
|
|
7831
7868
|
.k-badge {
|
|
7832
7869
|
padding: 0;
|
|
7833
|
-
border-width:
|
|
7870
|
+
border-width: $kendo-badge-border-width;
|
|
7834
7871
|
border-style: solid;
|
|
7835
7872
|
border-color: transparent;
|
|
7836
7873
|
box-sizing: border-box;
|
|
@@ -7880,74 +7917,23 @@ $badge-dot-size-lg: 12px !default;
|
|
|
7880
7917
|
|
|
7881
7918
|
|
|
7882
7919
|
// Badge sizes
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
&:empty { padding: $badge-padding-y-sm; }
|
|
7890
|
-
}
|
|
7891
|
-
.k-badge-md {
|
|
7892
|
-
padding: $badge-padding-y $badge-padding-x;
|
|
7893
|
-
border-width: $badge-border-width;
|
|
7894
|
-
font-size: $badge-font-size;
|
|
7895
|
-
line-height: $badge-line-height;
|
|
7896
|
-
|
|
7897
|
-
&:empty { padding: $badge-padding-y; }
|
|
7898
|
-
}
|
|
7899
|
-
.k-badge-lg {
|
|
7900
|
-
padding: $badge-padding-y-lg $badge-padding-x-lg;
|
|
7901
|
-
border-width: $badge-border-width-lg;
|
|
7902
|
-
font-size: $badge-font-size-lg;
|
|
7903
|
-
line-height: $badge-line-height-lg;
|
|
7904
|
-
|
|
7905
|
-
&:empty { padding: $badge-padding-y-lg; }
|
|
7906
|
-
}
|
|
7907
|
-
|
|
7908
|
-
|
|
7909
|
-
// Badge shapes
|
|
7910
|
-
.k-badge-rounded {
|
|
7911
|
-
&.k-badge-sm { @include border-radius( $badge-border-radius-sm ); }
|
|
7912
|
-
&.k-badge-md { @include border-radius( $badge-border-radius ); }
|
|
7913
|
-
&.k-badge-lg { @include border-radius( $badge-border-radius-lg ); }
|
|
7914
|
-
}
|
|
7915
|
-
.k-badge-pill {
|
|
7916
|
-
border-radius: 5rem;
|
|
7917
|
-
}
|
|
7918
|
-
.k-badge-circle {
|
|
7919
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
7920
|
-
border-radius: 100%;
|
|
7920
|
+
@each $size, $size-props in $kendo-badge-sizes {
|
|
7921
|
+
$_padding-x: map-get( $size-props, padding-x );
|
|
7922
|
+
$_padding-y: map-get( $size-props, padding-y );
|
|
7923
|
+
$_font-size: map-get( $size-props, font-size );
|
|
7924
|
+
$_line-height: map-get( $size-props, line-height );
|
|
7925
|
+
$_min-width: map-get( $size-props, min-width );
|
|
7921
7926
|
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
|
|
7925
|
-
|
|
7926
|
-
|
|
7927
|
-
width: $badge-size;
|
|
7928
|
-
height: $badge-size;
|
|
7929
|
-
}
|
|
7930
|
-
&.k-badge-lg {
|
|
7931
|
-
width: $badge-size-lg;
|
|
7932
|
-
height: $badge-size-lg;
|
|
7933
|
-
}
|
|
7934
|
-
}
|
|
7935
|
-
.k-badge-dot {
|
|
7936
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
7937
|
-
border-radius: 100%;
|
|
7938
|
-
font-size: 0;
|
|
7927
|
+
.k-badge-#{$size} {
|
|
7928
|
+
padding: $_padding-y $_padding-x;
|
|
7929
|
+
font-size: $_font-size;
|
|
7930
|
+
line-height: $_line-height;
|
|
7931
|
+
min-width: $_min-width;
|
|
7939
7932
|
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
7944
|
-
&.k-badge-md {
|
|
7945
|
-
width: $badge-dot-size;
|
|
7946
|
-
height: $badge-dot-size;
|
|
7947
|
-
}
|
|
7948
|
-
&.k-badge-lg {
|
|
7949
|
-
width: $badge-dot-size-lg;
|
|
7950
|
-
height: $badge-dot-size-lg;
|
|
7933
|
+
&:empty {
|
|
7934
|
+
padding: $_padding-y;
|
|
7935
|
+
min-width: auto;
|
|
7936
|
+
}
|
|
7951
7937
|
}
|
|
7952
7938
|
}
|
|
7953
7939
|
|
|
@@ -8031,7 +8017,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8031
8017
|
|
|
8032
8018
|
// Solid badges
|
|
8033
8019
|
@each $name, $color in $kendo-theme-colors {
|
|
8034
|
-
.k-badge-solid
|
|
8020
|
+
.k-badge-solid-#{$name} {
|
|
8035
8021
|
border-color: $color;
|
|
8036
8022
|
color: contrast-wcag( $color );
|
|
8037
8023
|
background-color: $color;
|
|
@@ -8045,7 +8031,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
8045
8031
|
}
|
|
8046
8032
|
|
|
8047
8033
|
@each $name, $color in $kendo-theme-colors {
|
|
8048
|
-
.k-badge-outline
|
|
8034
|
+
.k-badge-outline-#{$name} {
|
|
8049
8035
|
color: $color;
|
|
8050
8036
|
}
|
|
8051
8037
|
}
|
|
@@ -8102,7 +8088,7 @@ $kendo-button-font-size-md: $font-size-md !default;
|
|
|
8102
8088
|
$kendo-button-line-height-md: $line-height-md !default;
|
|
8103
8089
|
|
|
8104
8090
|
$kendo-button-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8105
|
-
$kendo-button-padding-y-lg: map-get( $spacing, 2 );
|
|
8091
|
+
$kendo-button-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
8106
8092
|
$kendo-button-font-size-lg: $font-size-lg !default;
|
|
8107
8093
|
$kendo-button-line-height-lg: $line-height-lg !default;
|
|
8108
8094
|
|
|
@@ -13460,6 +13446,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13460
13446
|
align-items: center;
|
|
13461
13447
|
}
|
|
13462
13448
|
|
|
13449
|
+
// Template item
|
|
13450
|
+
.k-toolbar-item:focus {
|
|
13451
|
+
text-decoration: none;
|
|
13452
|
+
outline: 0;
|
|
13453
|
+
}
|
|
13454
|
+
|
|
13463
13455
|
}
|
|
13464
13456
|
|
|
13465
13457
|
|
|
@@ -13624,6 +13616,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13624
13616
|
}
|
|
13625
13617
|
|
|
13626
13618
|
|
|
13619
|
+
// Template item
|
|
13620
|
+
.k-toolbar-item:focus,
|
|
13621
|
+
.k-toolbar-item.k-focus {
|
|
13622
|
+
@include box-shadow( $kendo-button-focus-shadow );
|
|
13623
|
+
}
|
|
13624
|
+
|
|
13625
|
+
|
|
13627
13626
|
// Button group
|
|
13628
13627
|
.k-button-group {}
|
|
13629
13628
|
|
|
@@ -16474,8 +16473,8 @@ $slider-disabled-opacity: null !default;
|
|
|
16474
16473
|
left: auto;
|
|
16475
16474
|
}
|
|
16476
16475
|
|
|
16477
|
-
.k-button .k-
|
|
16478
|
-
.k-button .k-
|
|
16476
|
+
.k-button-increase .k-icon,
|
|
16477
|
+
.k-button-decrease .k-icon {
|
|
16479
16478
|
transform: scaleX(-1);
|
|
16480
16479
|
}
|
|
16481
16480
|
}
|
|
@@ -18720,7 +18719,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18720
18719
|
}
|
|
18721
18720
|
|
|
18722
18721
|
// Needed for the double check icons
|
|
18723
|
-
.k-
|
|
18722
|
+
.k-icon + .k-icon {
|
|
18724
18723
|
margin-left: -13px;
|
|
18725
18724
|
}
|
|
18726
18725
|
}
|
|
@@ -23725,7 +23724,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23725
23724
|
flex: none;
|
|
23726
23725
|
}
|
|
23727
23726
|
|
|
23728
|
-
> .k-i-close
|
|
23727
|
+
> .k-i-close,
|
|
23728
|
+
> .k-i-x {
|
|
23729
23729
|
margin-right: 0;
|
|
23730
23730
|
margin-left: $notification-icon-spacing;
|
|
23731
23731
|
flex: none;
|
|
@@ -23748,7 +23748,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23748
23748
|
margin-left: $notification-icon-spacing;
|
|
23749
23749
|
}
|
|
23750
23750
|
|
|
23751
|
-
> .k-i-close
|
|
23751
|
+
> .k-i-close,
|
|
23752
|
+
> .k-i-x {
|
|
23752
23753
|
margin-left: 0;
|
|
23753
23754
|
margin-right: $notification-icon-spacing;
|
|
23754
23755
|
}
|
|
@@ -23773,7 +23774,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23773
23774
|
);
|
|
23774
23775
|
}
|
|
23775
23776
|
.k-notification-wrap {
|
|
23776
|
-
> .k-i-close
|
|
23777
|
+
> .k-i-close,
|
|
23778
|
+
> .k-i-x {
|
|
23777
23779
|
color: inherit;
|
|
23778
23780
|
}
|
|
23779
23781
|
}
|
|
@@ -23912,16 +23914,6 @@ $card-deck-scroll-button-offset: -$kendo-button-border-width !default;
|
|
|
23912
23914
|
$card-callout-width: 20px !default;
|
|
23913
23915
|
$card-callout-height: 20px !default;
|
|
23914
23916
|
|
|
23915
|
-
$card-callout-box-shadow-n: null !default;
|
|
23916
|
-
$card-callout-box-shadow-e: null !default;
|
|
23917
|
-
$card-callout-box-shadow-s: null !default;
|
|
23918
|
-
$card-callout-box-shadow-w: null !default;
|
|
23919
|
-
|
|
23920
|
-
$card-focus-callout-box-shadow-n: 1px -1px 4px 0 rgba( black, .06) !default;
|
|
23921
|
-
$card-focus-callout-box-shadow-e: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
23922
|
-
$card-focus-callout-box-shadow-s: 2px -2px 4px 0 rgba( black, .06) !default;
|
|
23923
|
-
$card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
23924
|
-
|
|
23925
23917
|
// #endregion
|
|
23926
23918
|
// #region @import "_layout.scss"; -> packages/classic/scss/card/_layout.scss
|
|
23927
23919
|
// #region @import "~@progress/kendo-theme-default/scss/card/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/card/_layout.scss
|
|
@@ -23966,6 +23958,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
23966
23958
|
display: flex;
|
|
23967
23959
|
flex-direction: inherit;
|
|
23968
23960
|
overflow: hidden;
|
|
23961
|
+
position: relative;
|
|
23969
23962
|
}
|
|
23970
23963
|
|
|
23971
23964
|
|
|
@@ -24256,7 +24249,7 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24256
24249
|
margin: 0;
|
|
24257
24250
|
width: $card-callout-width;
|
|
24258
24251
|
height: $card-callout-height;
|
|
24259
|
-
border-width: $card-border-width
|
|
24252
|
+
border-width: $card-border-width;
|
|
24260
24253
|
border-style: solid;
|
|
24261
24254
|
box-sizing: border-box;
|
|
24262
24255
|
position: absolute;
|
|
@@ -24265,22 +24258,22 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24265
24258
|
.k-card-callout.k-callout-n {
|
|
24266
24259
|
top: 0;
|
|
24267
24260
|
left: 50%;
|
|
24268
|
-
transform: translate(-50%, -50%) rotate(
|
|
24261
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
24269
24262
|
}
|
|
24270
24263
|
.k-card-callout.k-callout-e {
|
|
24271
24264
|
top: 50%;
|
|
24272
24265
|
right: 0;
|
|
24273
|
-
transform: translate(50%, -50%) rotate(
|
|
24266
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
24274
24267
|
}
|
|
24275
24268
|
.k-card-callout.k-callout-s {
|
|
24276
24269
|
bottom: 0;
|
|
24277
24270
|
left: 50%;
|
|
24278
|
-
transform: translate(-50%, 50%) rotate(
|
|
24271
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
24279
24272
|
}
|
|
24280
24273
|
.k-card-callout.k-callout-w {
|
|
24281
24274
|
top: 50%;
|
|
24282
24275
|
left: 0;
|
|
24283
|
-
transform: translate(-50%, -50%) rotate(
|
|
24276
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
24284
24277
|
}
|
|
24285
24278
|
|
|
24286
24279
|
}
|
|
@@ -24337,6 +24330,11 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24337
24330
|
);
|
|
24338
24331
|
@include box-shadow( $card-shadow );
|
|
24339
24332
|
|
|
24333
|
+
.k-card-inner {
|
|
24334
|
+
background-color: inherit;
|
|
24335
|
+
border-color: inherit;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24340
24338
|
&:focus,
|
|
24341
24339
|
&.k-focus,
|
|
24342
24340
|
&.k-state-focus {
|
|
@@ -24416,28 +24414,11 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24416
24414
|
// Card callout
|
|
24417
24415
|
.k-card-callout {
|
|
24418
24416
|
@include fill(
|
|
24419
|
-
$bg:
|
|
24420
|
-
$border:
|
|
24417
|
+
$bg: inherit,
|
|
24418
|
+
$border: inherit
|
|
24421
24419
|
);
|
|
24422
|
-
}
|
|
24423
|
-
|
|
24424
|
-
.k-card-callout.k-callout-n { @include box-shadow( $card-callout-box-shadow-n ); }
|
|
24425
|
-
.k-card-callout.k-callout-e { @include box-shadow( $card-callout-box-shadow-e ); }
|
|
24426
|
-
.k-card-callout.k-callout-s { @include box-shadow( $card-callout-box-shadow-s ); }
|
|
24427
|
-
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
24428
24420
|
|
|
24429
|
-
|
|
24430
|
-
.k-card.k-focus .k-card-callout,
|
|
24431
|
-
.k-card.k-state-focus .k-card-callout {
|
|
24432
|
-
@include fill(
|
|
24433
|
-
$bg: $card-focus-bg,
|
|
24434
|
-
$border: $card-focus-border
|
|
24435
|
-
);
|
|
24436
|
-
|
|
24437
|
-
&.k-callout-n { @include box-shadow( $card-focus-callout-box-shadow-n ); }
|
|
24438
|
-
&.k-callout-e { @include box-shadow( $card-focus-callout-box-shadow-e ); }
|
|
24439
|
-
&.k-callout-s { @include box-shadow( $card-focus-callout-box-shadow-s ); }
|
|
24440
|
-
&.k-callout-w { @include box-shadow( $card-focus-callout-box-shadow-w ); }
|
|
24421
|
+
@include box-shadow( inherit );
|
|
24441
24422
|
}
|
|
24442
24423
|
|
|
24443
24424
|
}
|
|
@@ -24483,11 +24464,6 @@ $popover-callout-border-style: $popover-border-style !default;
|
|
|
24483
24464
|
$popover-callout-bg: $popover-bg !default;
|
|
24484
24465
|
$popover-callout-border: $popover-border !default;
|
|
24485
24466
|
|
|
24486
|
-
$popover-callout-shadow-n: $card-callout-box-shadow-n !default;
|
|
24487
|
-
$popover-callout-shadow-e: $card-callout-box-shadow-e !default;
|
|
24488
|
-
$popover-callout-shadow-s: $card-callout-box-shadow-s !default;
|
|
24489
|
-
$popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
24490
|
-
|
|
24491
24467
|
// #endregion
|
|
24492
24468
|
// #region @import "_layout.scss"; -> packages/classic/scss/popover/_layout.scss
|
|
24493
24469
|
// #region @import "~@progress/kendo-theme-default/scss/popover/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
|
|
@@ -24517,6 +24493,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
24517
24493
|
}
|
|
24518
24494
|
}
|
|
24519
24495
|
|
|
24496
|
+
.k-popover-inner {
|
|
24497
|
+
position: relative;
|
|
24498
|
+
border-radius: inherit;
|
|
24499
|
+
}
|
|
24500
|
+
|
|
24520
24501
|
// Header
|
|
24521
24502
|
.k-popover-header {
|
|
24522
24503
|
@include border-top-radius( $popover-border-radius );
|
|
@@ -24543,32 +24524,32 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
24543
24524
|
margin: 0;
|
|
24544
24525
|
width: $popover-callout-width;
|
|
24545
24526
|
height: $popover-callout-height;
|
|
24546
|
-
border-width: $popover-callout-border-width
|
|
24527
|
+
border-width: $popover-callout-border-width;
|
|
24547
24528
|
border-style: $popover-callout-border-style;
|
|
24548
24529
|
position: absolute;
|
|
24549
24530
|
|
|
24550
24531
|
&.k-callout-n {
|
|
24551
24532
|
top: 0;
|
|
24552
24533
|
left: 50%;
|
|
24553
|
-
transform: translate(-50%, -50%) rotate(
|
|
24534
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
24554
24535
|
}
|
|
24555
24536
|
|
|
24556
24537
|
&.k-callout-e {
|
|
24557
24538
|
top: 50%;
|
|
24558
24539
|
right: 0;
|
|
24559
|
-
transform: translate(50%, -50%) rotate(
|
|
24540
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
24560
24541
|
}
|
|
24561
24542
|
|
|
24562
24543
|
&.k-callout-s {
|
|
24563
24544
|
bottom: 0;
|
|
24564
24545
|
left: 50%;
|
|
24565
|
-
transform: translate(-50%, 50%) rotate(
|
|
24546
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
24566
24547
|
}
|
|
24567
24548
|
|
|
24568
24549
|
&.k-callout-w {
|
|
24569
24550
|
top: 50%;
|
|
24570
24551
|
left: 0;
|
|
24571
|
-
transform: translate(-50%, -50%) rotate(
|
|
24552
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
24572
24553
|
}
|
|
24573
24554
|
}
|
|
24574
24555
|
|
|
@@ -24592,6 +24573,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
24592
24573
|
);
|
|
24593
24574
|
}
|
|
24594
24575
|
|
|
24576
|
+
.k-popover-inner {
|
|
24577
|
+
background-color: inherit;
|
|
24578
|
+
border-color: inherit;
|
|
24579
|
+
}
|
|
24580
|
+
|
|
24595
24581
|
// Header
|
|
24596
24582
|
.k-popover-header {
|
|
24597
24583
|
@include fill(
|
|
@@ -24604,14 +24590,11 @@ $popover-callout-shadow-w: $card-callout-box-shadow-w !default;
|
|
|
24604
24590
|
// Callout
|
|
24605
24591
|
.k-popover-callout {
|
|
24606
24592
|
@include fill(
|
|
24607
|
-
$bg:
|
|
24608
|
-
$border:
|
|
24593
|
+
$bg: inherit,
|
|
24594
|
+
$border: inherit
|
|
24609
24595
|
);
|
|
24610
24596
|
|
|
24611
|
-
|
|
24612
|
-
&.k-callout-e { @include box-shadow( $popover-callout-shadow-e ); }
|
|
24613
|
-
&.k-callout-s { @include box-shadow( $popover-callout-shadow-s ); }
|
|
24614
|
-
&.k-callout-w { @include box-shadow( $popover-callout-shadow-w ); }
|
|
24597
|
+
@include box-shadow( inherit )
|
|
24615
24598
|
}
|
|
24616
24599
|
|
|
24617
24600
|
}
|
|
@@ -25413,6 +25396,10 @@ $pager-dropdown-width: 5em !default;
|
|
|
25413
25396
|
.k-rtl &,
|
|
25414
25397
|
&[dir="rtl"],
|
|
25415
25398
|
[dir="rtl"] & {
|
|
25399
|
+
.k-i-caret-alt-to-left,
|
|
25400
|
+
.k-i-caret-alt-to-right,
|
|
25401
|
+
.k-i-caret-alt-left,
|
|
25402
|
+
.k-i-caret-alt-right,
|
|
25416
25403
|
.k-i-arrow-end-left,
|
|
25417
25404
|
.k-i-arrow-60-left,
|
|
25418
25405
|
.k-i-arrow-60-right,
|
|
@@ -28823,7 +28810,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28823
28810
|
border-radius: 50%;
|
|
28824
28811
|
}
|
|
28825
28812
|
|
|
28826
|
-
.k-i-reload
|
|
28813
|
+
.k-i-reload,
|
|
28814
|
+
.k-i-arrow-rotate-cw {
|
|
28827
28815
|
font-size: 1em;
|
|
28828
28816
|
margin-right: .5em;
|
|
28829
28817
|
}
|
|
@@ -29837,7 +29825,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29837
29825
|
|
|
29838
29826
|
.k-cell-inner > .k-link > .k-icon {
|
|
29839
29827
|
&.k-i-sort-desc-sm,
|
|
29840
|
-
&.k-i-sort-asc-sm
|
|
29828
|
+
&.k-i-sort-asc-sm,
|
|
29829
|
+
&.k-i-sort-asc-small,
|
|
29830
|
+
&.k-i-sort-desc-small {
|
|
29841
29831
|
vertical-align: text-top;
|
|
29842
29832
|
margin-inline-start: $grid-sorted-icon-spacing;
|
|
29843
29833
|
}
|
|
@@ -30828,6 +30818,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30828
30818
|
|
|
30829
30819
|
.k-i-sort-asc-sm,
|
|
30830
30820
|
.k-i-sort-desc-sm,
|
|
30821
|
+
.k-i-sort-asc-small,
|
|
30822
|
+
.k-i-sort-desc-small,
|
|
30831
30823
|
.k-sort-order {
|
|
30832
30824
|
color: $grid-sorting-indicator-text;
|
|
30833
30825
|
}
|
|
@@ -35522,7 +35514,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35522
35514
|
border-bottom-color: inherit;
|
|
35523
35515
|
cursor: se-resize;
|
|
35524
35516
|
|
|
35525
|
-
.k-i-arrow-45-down-right
|
|
35517
|
+
.k-i-arrow-45-down-right,
|
|
35518
|
+
.k-i-caret-br {
|
|
35526
35519
|
display: none;
|
|
35527
35520
|
}
|
|
35528
35521
|
}
|
|
@@ -38832,6 +38825,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38832
38825
|
|
|
38833
38826
|
.k-scheduler,
|
|
38834
38827
|
&.k-scheduler {
|
|
38828
|
+
.k-i-caret-alt-left,
|
|
38829
|
+
.k-i-caret-alt-right,
|
|
38835
38830
|
.k-i-arrow-60-left,
|
|
38836
38831
|
.k-i-arrow-60-right,
|
|
38837
38832
|
.k-current-time-arrow-right {
|
|
@@ -40733,6 +40728,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40733
40728
|
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
40734
40729
|
// File already imported_once. Skipping output.
|
|
40735
40730
|
// #endregion
|
|
40731
|
+
// #region @import "../button/_variables.scss"; -> packages/classic/scss/button/_variables.scss
|
|
40732
|
+
// File already imported_once. Skipping output.
|
|
40733
|
+
// #endregion
|
|
40736
40734
|
// #region @import "../combobox/_index.scss"; -> packages/classic/scss/combobox/_index.scss
|
|
40737
40735
|
// File already imported_once. Skipping output.
|
|
40738
40736
|
// #endregion
|
|
@@ -40748,6 +40746,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40748
40746
|
// #region @import "../icons/_index.scss"; -> packages/classic/scss/icons/_index.scss
|
|
40749
40747
|
// File already imported_once. Skipping output.
|
|
40750
40748
|
// #endregion
|
|
40749
|
+
// #region @import "../dropzone/_index.scss"; -> packages/classic/scss/dropzone/_index.scss
|
|
40750
|
+
// File already imported_once. Skipping output.
|
|
40751
|
+
// #endregion
|
|
40752
|
+
// #region @import "../window/_index.scss"; -> packages/classic/scss/window/_index.scss
|
|
40753
|
+
// File already imported_once. Skipping output.
|
|
40754
|
+
// #endregion
|
|
40751
40755
|
|
|
40752
40756
|
|
|
40753
40757
|
// Component
|
|
@@ -40778,12 +40782,25 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
40778
40782
|
$pdf-viewer-page-border: $component-border !default;
|
|
40779
40783
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
40780
40784
|
|
|
40781
|
-
$pdf-viewer-search-
|
|
40785
|
+
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
40786
|
+
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
40787
|
+
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
40788
|
+
$pdf-viewer-search-panel-text: $component-text !default;
|
|
40789
|
+
$pdf-viewer-search-panel-border: $component-border !default;
|
|
40790
|
+
$pdf-viewer-search-panel-shadow: $window-shadow !default;
|
|
40791
|
+
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
40792
|
+
|
|
40793
|
+
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
40794
|
+
$pdf-viewer-search-dialog-padding-y: map-get( $spacing, 3 ) !default;
|
|
40782
40795
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
40783
40796
|
|
|
40784
40797
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
40785
40798
|
|
|
40786
40799
|
$pdf-viewer-search-highlight-bg: $body-text !default;
|
|
40800
|
+
$pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
40801
|
+
|
|
40802
|
+
$pdf-viewer-icon-text: $dropzone-icon-text !default;
|
|
40803
|
+
$pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
40787
40804
|
|
|
40788
40805
|
// #endregion
|
|
40789
40806
|
// #region @import "_layout.scss"; -> packages/classic/scss/pdf-viewer/_layout.scss
|
|
@@ -40794,6 +40811,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40794
40811
|
border-width: $pdf-viewer-border-width;
|
|
40795
40812
|
border-style: solid;
|
|
40796
40813
|
box-sizing: border-box;
|
|
40814
|
+
position: relative;
|
|
40797
40815
|
outline: 0;
|
|
40798
40816
|
font-family: $pdf-viewer-font-family;
|
|
40799
40817
|
font-size: $pdf-viewer-font-size;
|
|
@@ -40824,11 +40842,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40824
40842
|
|
|
40825
40843
|
|
|
40826
40844
|
// Canvas
|
|
40827
|
-
.k-
|
|
40845
|
+
.k-canvas {
|
|
40846
|
+
display: flex;
|
|
40847
|
+
flex-direction: column;
|
|
40828
40848
|
flex: 1 1 auto;
|
|
40829
40849
|
outline: none;
|
|
40830
40850
|
|
|
40831
|
-
.k-enable-text-select
|
|
40851
|
+
.k-enable-text-select,
|
|
40852
|
+
&.k-enable-text-select {
|
|
40832
40853
|
-webkit-user-select: text;
|
|
40833
40854
|
-moz-user-select: text;
|
|
40834
40855
|
-ms-user-select: text;
|
|
@@ -40836,16 +40857,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40836
40857
|
cursor: text;
|
|
40837
40858
|
}
|
|
40838
40859
|
|
|
40839
|
-
.k-enable-panning
|
|
40860
|
+
.k-enable-panning,
|
|
40861
|
+
&.k-enable-panning {
|
|
40840
40862
|
cursor: grab;
|
|
40841
40863
|
}
|
|
40842
|
-
.k-enable-panning span::selection
|
|
40864
|
+
.k-enable-panning span::selection,
|
|
40865
|
+
&.k-enable-panning span::selection {
|
|
40843
40866
|
background-color: transparent;
|
|
40844
40867
|
}
|
|
40845
40868
|
}
|
|
40846
40869
|
|
|
40847
40870
|
|
|
40848
|
-
//
|
|
40871
|
+
// Pages
|
|
40872
|
+
.k-pdf-viewer-pages {
|
|
40873
|
+
flex: 1 1 auto;
|
|
40874
|
+
}
|
|
40875
|
+
|
|
40849
40876
|
.k-page {
|
|
40850
40877
|
position: relative;
|
|
40851
40878
|
margin: $pdf-viewer-page-spacing auto;
|
|
@@ -40871,46 +40898,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40871
40898
|
mark {
|
|
40872
40899
|
color: transparent;
|
|
40873
40900
|
}
|
|
40901
|
+
|
|
40902
|
+
.k-search-highlight-mark {
|
|
40903
|
+
color: transparent;
|
|
40904
|
+
}
|
|
40905
|
+
}
|
|
40906
|
+
}
|
|
40907
|
+
|
|
40908
|
+
.k-blank-page {
|
|
40909
|
+
margin: 0;
|
|
40910
|
+
display: flex;
|
|
40911
|
+
flex-flow: column nowrap;
|
|
40912
|
+
width: 100%;
|
|
40913
|
+
height: 100%;
|
|
40914
|
+
align-items: center;
|
|
40915
|
+
justify-content: center;
|
|
40916
|
+
background-color: inherit !important; // sass-lint:disable-line no-important
|
|
40917
|
+
|
|
40918
|
+
.k-upload,
|
|
40919
|
+
.k-dropzone,
|
|
40920
|
+
.k-dropzone-inner {
|
|
40921
|
+
border: 0;
|
|
40922
|
+
background: none;
|
|
40923
|
+
}
|
|
40924
|
+
|
|
40925
|
+
> .k-icon {
|
|
40926
|
+
font-size: $pdf-viewer-icon-size;
|
|
40874
40927
|
}
|
|
40875
40928
|
}
|
|
40929
|
+
|
|
40876
40930
|
}
|
|
40877
40931
|
|
|
40878
40932
|
// Search
|
|
40879
40933
|
.k-pdf-viewer-search-dialog {
|
|
40880
|
-
padding:
|
|
40934
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
40935
|
+
}
|
|
40881
40936
|
|
|
40882
|
-
|
|
40883
|
-
|
|
40884
|
-
|
|
40885
|
-
|
|
40886
|
-
|
|
40887
|
-
|
|
40888
|
-
|
|
40937
|
+
.k-search-panel {
|
|
40938
|
+
padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
|
|
40939
|
+
display: flex;
|
|
40940
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
40941
|
+
flex-flow: row nowrap;
|
|
40942
|
+
flex: 0 0 auto;
|
|
40943
|
+
justify-content: flex-start;
|
|
40944
|
+
align-items: center;
|
|
40889
40945
|
|
|
40890
|
-
|
|
40891
|
-
|
|
40892
|
-
|
|
40893
|
-
|
|
40946
|
+
.k-search-dialog-draghandle {
|
|
40947
|
+
cursor: move;
|
|
40948
|
+
margin-left: 0;
|
|
40949
|
+
}
|
|
40894
40950
|
|
|
40895
|
-
|
|
40896
|
-
|
|
40897
|
-
|
|
40951
|
+
.k-textbox {
|
|
40952
|
+
width: 10em;
|
|
40953
|
+
flex: none;
|
|
40898
40954
|
|
|
40899
|
-
|
|
40900
|
-
|
|
40901
|
-
}
|
|
40955
|
+
.k-button {
|
|
40956
|
+
border-width: 0;
|
|
40902
40957
|
}
|
|
40958
|
+
}
|
|
40903
40959
|
|
|
40904
|
-
|
|
40905
|
-
|
|
40906
|
-
|
|
40960
|
+
.k-search-matches {
|
|
40961
|
+
display: inline-flex;
|
|
40962
|
+
gap: $pdf-viewer-search-panel-matches-spacing;
|
|
40907
40963
|
}
|
|
40908
40964
|
}
|
|
40909
40965
|
|
|
40966
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
40967
|
+
width: max-content;
|
|
40968
|
+
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
40969
|
+
border-width: $pdf-viewer-search-panel-border-width;
|
|
40970
|
+
border-style: solid;
|
|
40971
|
+
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
40972
|
+
z-index: 10;
|
|
40973
|
+
}
|
|
40974
|
+
|
|
40975
|
+
// Alias
|
|
40976
|
+
.k-search-container {
|
|
40977
|
+
@extend .k-search-panel !optional;
|
|
40978
|
+
}
|
|
40979
|
+
|
|
40910
40980
|
|
|
40911
40981
|
// IE
|
|
40912
40982
|
.k-ie .k-pdf-viewer-search-dialog {
|
|
40913
|
-
|
|
40914
40983
|
.k-search-container > * + * {
|
|
40915
40984
|
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
40916
40985
|
}
|
|
@@ -40965,12 +41034,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40965
41034
|
@include box-shadow( $pdf-viewer-page-shadow );
|
|
40966
41035
|
}
|
|
40967
41036
|
|
|
41037
|
+
.k-blank-page > .k-icon {
|
|
41038
|
+
@include fill( $color: $pdf-viewer-icon-text );
|
|
41039
|
+
}
|
|
41040
|
+
|
|
40968
41041
|
|
|
40969
41042
|
// Search
|
|
40970
41043
|
.k-search-highlight {
|
|
40971
41044
|
background-color: $pdf-viewer-search-highlight-bg;
|
|
40972
41045
|
}
|
|
40973
41046
|
|
|
41047
|
+
.k-search-highlight-mark {
|
|
41048
|
+
@include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
|
|
41049
|
+
}
|
|
41050
|
+
|
|
41051
|
+
}
|
|
41052
|
+
|
|
41053
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
41054
|
+
@include fill(
|
|
41055
|
+
$pdf-viewer-search-panel-text,
|
|
41056
|
+
$pdf-viewer-search-panel-bg,
|
|
41057
|
+
$pdf-viewer-search-panel-border,
|
|
41058
|
+
);
|
|
41059
|
+
@include box-shadow( $pdf-viewer-search-panel-shadow );
|
|
41060
|
+
}
|
|
41061
|
+
|
|
41062
|
+
.k-search-container {
|
|
41063
|
+
@extend .k-search-panel !optional;
|
|
40974
41064
|
}
|
|
40975
41065
|
|
|
40976
41066
|
}
|
|
@@ -41713,7 +41803,7 @@ $treemap-line-height: $line-height !default;
|
|
|
41713
41803
|
.k-chart-tooltip-wrapper {
|
|
41714
41804
|
z-index: 12000;
|
|
41715
41805
|
|
|
41716
|
-
|
|
41806
|
+
.k-popup {
|
|
41717
41807
|
padding: 0;
|
|
41718
41808
|
border-width: 0;
|
|
41719
41809
|
background: transparent;
|