@progress/kendo-theme-bootstrap 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 -380
- package/dist/all.scss +284 -192
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/badge/_variables.scss +70 -35
- package/scss/card/_variables.scss +0 -10
- package/scss/grid/_theme.scss +2 -0
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/popover/_variables.scss +0 -4
package/dist/all.scss
CHANGED
|
@@ -6007,6 +6007,9 @@ $utils-border-radius: (
|
|
|
6007
6007
|
@each $pos in (static, relative, absolute, fixed, sticky) {
|
|
6008
6008
|
.k-#{$pos},
|
|
6009
6009
|
.k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
6010
|
+
|
|
6011
|
+
.\!k-#{$pos},
|
|
6012
|
+
.\!k-pos-#{$pos} { position: $pos !important; } // sass-lint:disable-line brace-style no-important
|
|
6010
6013
|
}
|
|
6011
6014
|
|
|
6012
6015
|
/// @name k-pos-top
|
|
@@ -9820,41 +9823,76 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
9820
9823
|
// Component
|
|
9821
9824
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/badge/_variables.scss
|
|
9822
9825
|
// Badge
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
$badge-border-
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
$badge-
|
|
9831
|
-
|
|
9832
|
-
|
|
9833
|
-
|
|
9834
|
-
|
|
9835
|
-
$badge-
|
|
9836
|
-
|
|
9837
|
-
$badge-padding-x-
|
|
9838
|
-
$badge-padding-
|
|
9839
|
-
|
|
9840
|
-
|
|
9841
|
-
|
|
9842
|
-
$badge-
|
|
9843
|
-
|
|
9844
|
-
$badge-
|
|
9845
|
-
$badge-
|
|
9846
|
-
|
|
9847
|
-
|
|
9848
|
-
|
|
9849
|
-
$badge-
|
|
9850
|
-
$badge-
|
|
9851
|
-
$
|
|
9852
|
-
$badge-
|
|
9853
|
-
|
|
9854
|
-
$
|
|
9855
|
-
|
|
9856
|
-
$badge-
|
|
9857
|
-
$badge-
|
|
9826
|
+
|
|
9827
|
+
/// Width of the border around the badge.
|
|
9828
|
+
/// @group badge
|
|
9829
|
+
$kendo-badge-border-width: 1px !default;
|
|
9830
|
+
|
|
9831
|
+
/// Border radius of the badge.
|
|
9832
|
+
/// @group badge
|
|
9833
|
+
$kendo-badge-border-radius: $badge-border-radius !default;
|
|
9834
|
+
|
|
9835
|
+
|
|
9836
|
+
/// Horizontal padding of the badge.
|
|
9837
|
+
/// @group badge
|
|
9838
|
+
$kendo-badge-padding-x: $badge-padding-x !default;
|
|
9839
|
+
$kendo-badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
|
|
9840
|
+
$kendo-badge-padding-x-md: $badge-padding-x !default;
|
|
9841
|
+
$kendo-badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
|
|
9842
|
+
|
|
9843
|
+
/// Vertical padding of the badge.
|
|
9844
|
+
/// @group badge
|
|
9845
|
+
$kendo-badge-padding-y: $badge-padding-y !default;
|
|
9846
|
+
$kendo-badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
|
|
9847
|
+
$kendo-badge-padding-y-md: $badge-padding-y !default;
|
|
9848
|
+
$kendo-badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
|
|
9849
|
+
|
|
9850
|
+
/// Font sizes of the badge.
|
|
9851
|
+
/// @group badge
|
|
9852
|
+
$kendo-badge-font-size: $badge-font-size !default;
|
|
9853
|
+
$kendo-badge-font-size-sm: $badge-font-size !default;
|
|
9854
|
+
$kendo-badge-font-size-md: $badge-font-size !default;
|
|
9855
|
+
$kendo-badge-font-size-lg: $badge-font-size !default;
|
|
9856
|
+
|
|
9857
|
+
/// Line heights used along with $font-size.
|
|
9858
|
+
/// @group badge
|
|
9859
|
+
$kendo-badge-line-height: 1 !default;
|
|
9860
|
+
$kendo-badge-line-height-sm: $kendo-badge-line-height !default;
|
|
9861
|
+
$kendo-badge-line-height-md: $kendo-badge-line-height !default;
|
|
9862
|
+
$kendo-badge-line-height-lg: $kendo-badge-line-height !default;
|
|
9863
|
+
|
|
9864
|
+
/// Badge min width used for circle badge.
|
|
9865
|
+
/// @group badge
|
|
9866
|
+
$kendo-badge-min-width: calc( #{$kendo-badge-line-height * 1em} + #{$kendo-badge-padding-y * 2} + #{$kendo-badge-border-width * 2}) !default;
|
|
9867
|
+
$kendo-badge-min-width-sm: calc( #{$kendo-badge-line-height-sm * 1em} + #{$kendo-badge-padding-y-sm * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
9868
|
+
$kendo-badge-min-width-md: calc( #{$kendo-badge-line-height-md * 1em} + #{$kendo-badge-padding-y-md * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
9869
|
+
$kendo-badge-min-width-lg: calc( #{$kendo-badge-line-height-lg * 1em} + #{$kendo-badge-padding-y-lg * 2} + #{$kendo-badge-border-width * 2} ) !default;
|
|
9870
|
+
|
|
9871
|
+
/// Sizes map for the badge.
|
|
9872
|
+
/// @group badge
|
|
9873
|
+
$kendo-badge-sizes: (
|
|
9874
|
+
sm: (
|
|
9875
|
+
padding-x: $kendo-badge-padding-x-sm,
|
|
9876
|
+
padding-y: $kendo-badge-padding-y-sm,
|
|
9877
|
+
font-size: $kendo-badge-font-size-sm,
|
|
9878
|
+
line-height: $kendo-badge-line-height-sm,
|
|
9879
|
+
min-width: $kendo-badge-min-width-sm
|
|
9880
|
+
),
|
|
9881
|
+
md: (
|
|
9882
|
+
padding-x: $kendo-badge-padding-x-md,
|
|
9883
|
+
padding-y: $kendo-badge-padding-y-md,
|
|
9884
|
+
font-size: $kendo-badge-font-size-md,
|
|
9885
|
+
line-height: $kendo-badge-line-height-md,
|
|
9886
|
+
min-width: $kendo-badge-min-width-md
|
|
9887
|
+
),
|
|
9888
|
+
lg: (
|
|
9889
|
+
padding-x: $kendo-badge-padding-x-lg,
|
|
9890
|
+
padding-y: $kendo-badge-padding-y-lg,
|
|
9891
|
+
font-size: $kendo-badge-font-size-lg,
|
|
9892
|
+
line-height: $kendo-badge-line-height-lg,
|
|
9893
|
+
min-width: $kendo-badge-min-width-lg
|
|
9894
|
+
)
|
|
9895
|
+
) !default;
|
|
9858
9896
|
|
|
9859
9897
|
// #endregion
|
|
9860
9898
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/badge/_layout.scss
|
|
@@ -9863,7 +9901,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
9863
9901
|
|
|
9864
9902
|
.k-badge {
|
|
9865
9903
|
padding: 0;
|
|
9866
|
-
border-width:
|
|
9904
|
+
border-width: $kendo-badge-border-width;
|
|
9867
9905
|
border-style: solid;
|
|
9868
9906
|
border-color: transparent;
|
|
9869
9907
|
box-sizing: border-box;
|
|
@@ -9913,74 +9951,23 @@ $badge-dot-size-lg: 12px !default;
|
|
|
9913
9951
|
|
|
9914
9952
|
|
|
9915
9953
|
// Badge sizes
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
|
|
9922
|
-
&:empty { padding: $badge-padding-y-sm; }
|
|
9923
|
-
}
|
|
9924
|
-
.k-badge-md {
|
|
9925
|
-
padding: $badge-padding-y $badge-padding-x;
|
|
9926
|
-
border-width: $badge-border-width;
|
|
9927
|
-
font-size: $badge-font-size;
|
|
9928
|
-
line-height: $badge-line-height;
|
|
9929
|
-
|
|
9930
|
-
&:empty { padding: $badge-padding-y; }
|
|
9931
|
-
}
|
|
9932
|
-
.k-badge-lg {
|
|
9933
|
-
padding: $badge-padding-y-lg $badge-padding-x-lg;
|
|
9934
|
-
border-width: $badge-border-width-lg;
|
|
9935
|
-
font-size: $badge-font-size-lg;
|
|
9936
|
-
line-height: $badge-line-height-lg;
|
|
9937
|
-
|
|
9938
|
-
&:empty { padding: $badge-padding-y-lg; }
|
|
9939
|
-
}
|
|
9940
|
-
|
|
9941
|
-
|
|
9942
|
-
// Badge shapes
|
|
9943
|
-
.k-badge-rounded {
|
|
9944
|
-
&.k-badge-sm { @include border-radius( $badge-border-radius-sm ); }
|
|
9945
|
-
&.k-badge-md { @include border-radius( $badge-border-radius ); }
|
|
9946
|
-
&.k-badge-lg { @include border-radius( $badge-border-radius-lg ); }
|
|
9947
|
-
}
|
|
9948
|
-
.k-badge-pill {
|
|
9949
|
-
border-radius: 5rem;
|
|
9950
|
-
}
|
|
9951
|
-
.k-badge-circle {
|
|
9952
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
9953
|
-
border-radius: 100%;
|
|
9954
|
+
@each $size, $size-props in $kendo-badge-sizes {
|
|
9955
|
+
$_padding-x: map-get( $size-props, padding-x );
|
|
9956
|
+
$_padding-y: map-get( $size-props, padding-y );
|
|
9957
|
+
$_font-size: map-get( $size-props, font-size );
|
|
9958
|
+
$_line-height: map-get( $size-props, line-height );
|
|
9959
|
+
$_min-width: map-get( $size-props, min-width );
|
|
9954
9960
|
|
|
9955
|
-
|
|
9956
|
-
|
|
9957
|
-
|
|
9958
|
-
|
|
9959
|
-
|
|
9960
|
-
width: $badge-size;
|
|
9961
|
-
height: $badge-size;
|
|
9962
|
-
}
|
|
9963
|
-
&.k-badge-lg {
|
|
9964
|
-
width: $badge-size-lg;
|
|
9965
|
-
height: $badge-size-lg;
|
|
9966
|
-
}
|
|
9967
|
-
}
|
|
9968
|
-
.k-badge-dot {
|
|
9969
|
-
padding: 0 !important; // sass-lint:disable-line no-important
|
|
9970
|
-
border-radius: 100%;
|
|
9971
|
-
font-size: 0;
|
|
9961
|
+
.k-badge-#{$size} {
|
|
9962
|
+
padding: $_padding-y $_padding-x;
|
|
9963
|
+
font-size: $_font-size;
|
|
9964
|
+
line-height: $_line-height;
|
|
9965
|
+
min-width: $_min-width;
|
|
9972
9966
|
|
|
9973
|
-
|
|
9974
|
-
|
|
9975
|
-
|
|
9976
|
-
|
|
9977
|
-
&.k-badge-md {
|
|
9978
|
-
width: $badge-dot-size;
|
|
9979
|
-
height: $badge-dot-size;
|
|
9980
|
-
}
|
|
9981
|
-
&.k-badge-lg {
|
|
9982
|
-
width: $badge-dot-size-lg;
|
|
9983
|
-
height: $badge-dot-size-lg;
|
|
9967
|
+
&:empty {
|
|
9968
|
+
padding: $_padding-y;
|
|
9969
|
+
min-width: auto;
|
|
9970
|
+
}
|
|
9984
9971
|
}
|
|
9985
9972
|
}
|
|
9986
9973
|
|
|
@@ -10064,7 +10051,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10064
10051
|
|
|
10065
10052
|
// Solid badges
|
|
10066
10053
|
@each $name, $color in $kendo-theme-colors {
|
|
10067
|
-
.k-badge-solid
|
|
10054
|
+
.k-badge-solid-#{$name} {
|
|
10068
10055
|
border-color: $color;
|
|
10069
10056
|
color: contrast-wcag( $color );
|
|
10070
10057
|
background-color: $color;
|
|
@@ -10078,7 +10065,7 @@ $badge-dot-size-lg: 12px !default;
|
|
|
10078
10065
|
}
|
|
10079
10066
|
|
|
10080
10067
|
@each $name, $color in $kendo-theme-colors {
|
|
10081
|
-
.k-badge-outline
|
|
10068
|
+
.k-badge-outline-#{$name} {
|
|
10082
10069
|
color: $color;
|
|
10083
10070
|
}
|
|
10084
10071
|
}
|
|
@@ -15535,6 +15522,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15535
15522
|
align-items: center;
|
|
15536
15523
|
}
|
|
15537
15524
|
|
|
15525
|
+
// Template item
|
|
15526
|
+
.k-toolbar-item:focus {
|
|
15527
|
+
text-decoration: none;
|
|
15528
|
+
outline: 0;
|
|
15529
|
+
}
|
|
15530
|
+
|
|
15538
15531
|
}
|
|
15539
15532
|
|
|
15540
15533
|
|
|
@@ -15699,6 +15692,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15699
15692
|
}
|
|
15700
15693
|
|
|
15701
15694
|
|
|
15695
|
+
// Template item
|
|
15696
|
+
.k-toolbar-item:focus,
|
|
15697
|
+
.k-toolbar-item.k-focus {
|
|
15698
|
+
@include box-shadow( $kendo-button-focus-shadow );
|
|
15699
|
+
}
|
|
15700
|
+
|
|
15701
|
+
|
|
15702
15702
|
// Button group
|
|
15703
15703
|
.k-button-group {}
|
|
15704
15704
|
|
|
@@ -18606,8 +18606,8 @@ $slider-disabled-opacity: null !default;
|
|
|
18606
18606
|
left: auto;
|
|
18607
18607
|
}
|
|
18608
18608
|
|
|
18609
|
-
.k-button .k-
|
|
18610
|
-
.k-button .k-
|
|
18609
|
+
.k-button-increase .k-icon,
|
|
18610
|
+
.k-button-decrease .k-icon {
|
|
18611
18611
|
transform: scaleX(-1);
|
|
18612
18612
|
}
|
|
18613
18613
|
}
|
|
@@ -20850,7 +20850,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
|
20850
20850
|
}
|
|
20851
20851
|
|
|
20852
20852
|
// Needed for the double check icons
|
|
20853
|
-
.k-
|
|
20853
|
+
.k-icon + .k-icon {
|
|
20854
20854
|
margin-left: -13px;
|
|
20855
20855
|
}
|
|
20856
20856
|
}
|
|
@@ -25913,7 +25913,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25913
25913
|
flex: none;
|
|
25914
25914
|
}
|
|
25915
25915
|
|
|
25916
|
-
> .k-i-close
|
|
25916
|
+
> .k-i-close,
|
|
25917
|
+
> .k-i-x {
|
|
25917
25918
|
margin-right: 0;
|
|
25918
25919
|
margin-left: $notification-icon-spacing;
|
|
25919
25920
|
flex: none;
|
|
@@ -25936,7 +25937,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25936
25937
|
margin-left: $notification-icon-spacing;
|
|
25937
25938
|
}
|
|
25938
25939
|
|
|
25939
|
-
> .k-i-close
|
|
25940
|
+
> .k-i-close,
|
|
25941
|
+
> .k-i-x {
|
|
25940
25942
|
margin-left: 0;
|
|
25941
25943
|
margin-right: $notification-icon-spacing;
|
|
25942
25944
|
}
|
|
@@ -25961,7 +25963,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25961
25963
|
);
|
|
25962
25964
|
}
|
|
25963
25965
|
.k-notification-wrap {
|
|
25964
|
-
> .k-i-close
|
|
25966
|
+
> .k-i-close,
|
|
25967
|
+
> .k-i-x {
|
|
25965
25968
|
color: inherit;
|
|
25966
25969
|
}
|
|
25967
25970
|
}
|
|
@@ -26100,16 +26103,6 @@ $card-deck-scroll-button-offset: -$kendo-button-border-width !default;
|
|
|
26100
26103
|
$card-callout-width: 1.3em !default;
|
|
26101
26104
|
$card-callout-height: 1.3em !default;
|
|
26102
26105
|
|
|
26103
|
-
$card-callout-box-shadow-n: null !default;
|
|
26104
|
-
$card-callout-box-shadow-e: null !default;
|
|
26105
|
-
$card-callout-box-shadow-s: null !default;
|
|
26106
|
-
$card-callout-box-shadow-w: null !default;
|
|
26107
|
-
|
|
26108
|
-
$card-focus-callout-box-shadow-n: $card-focus-shadow !default;
|
|
26109
|
-
$card-focus-callout-box-shadow-e: $card-focus-shadow !default;
|
|
26110
|
-
$card-focus-callout-box-shadow-s: 3px -3px 0 0 rgba( $card-border, .5 ) !default;
|
|
26111
|
-
$card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
26112
|
-
|
|
26113
26106
|
// #endregion
|
|
26114
26107
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/card/_layout.scss
|
|
26115
26108
|
// #region @import "~@progress/kendo-theme-default/scss/card/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/card/_layout.scss
|
|
@@ -26154,6 +26147,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
26154
26147
|
display: flex;
|
|
26155
26148
|
flex-direction: inherit;
|
|
26156
26149
|
overflow: hidden;
|
|
26150
|
+
position: relative;
|
|
26157
26151
|
}
|
|
26158
26152
|
|
|
26159
26153
|
|
|
@@ -26444,7 +26438,7 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
26444
26438
|
margin: 0;
|
|
26445
26439
|
width: $card-callout-width;
|
|
26446
26440
|
height: $card-callout-height;
|
|
26447
|
-
border-width: $card-border-width
|
|
26441
|
+
border-width: $card-border-width;
|
|
26448
26442
|
border-style: solid;
|
|
26449
26443
|
box-sizing: border-box;
|
|
26450
26444
|
position: absolute;
|
|
@@ -26453,22 +26447,22 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
26453
26447
|
.k-card-callout.k-callout-n {
|
|
26454
26448
|
top: 0;
|
|
26455
26449
|
left: 50%;
|
|
26456
|
-
transform: translate(-50%, -50%) rotate(
|
|
26450
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26457
26451
|
}
|
|
26458
26452
|
.k-card-callout.k-callout-e {
|
|
26459
26453
|
top: 50%;
|
|
26460
26454
|
right: 0;
|
|
26461
|
-
transform: translate(50%, -50%) rotate(
|
|
26455
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
26462
26456
|
}
|
|
26463
26457
|
.k-card-callout.k-callout-s {
|
|
26464
26458
|
bottom: 0;
|
|
26465
26459
|
left: 50%;
|
|
26466
|
-
transform: translate(-50%, 50%) rotate(
|
|
26460
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
26467
26461
|
}
|
|
26468
26462
|
.k-card-callout.k-callout-w {
|
|
26469
26463
|
top: 50%;
|
|
26470
26464
|
left: 0;
|
|
26471
|
-
transform: translate(-50%, -50%) rotate(
|
|
26465
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26472
26466
|
}
|
|
26473
26467
|
|
|
26474
26468
|
}
|
|
@@ -26525,6 +26519,11 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
26525
26519
|
);
|
|
26526
26520
|
@include box-shadow( $card-shadow );
|
|
26527
26521
|
|
|
26522
|
+
.k-card-inner {
|
|
26523
|
+
background-color: inherit;
|
|
26524
|
+
border-color: inherit;
|
|
26525
|
+
}
|
|
26526
|
+
|
|
26528
26527
|
&:focus,
|
|
26529
26528
|
&.k-focus,
|
|
26530
26529
|
&.k-state-focus {
|
|
@@ -26604,28 +26603,11 @@ $card-focus-callout-box-shadow-w: $card-focus-shadow !default;
|
|
|
26604
26603
|
// Card callout
|
|
26605
26604
|
.k-card-callout {
|
|
26606
26605
|
@include fill(
|
|
26607
|
-
$bg:
|
|
26608
|
-
$border:
|
|
26609
|
-
);
|
|
26610
|
-
}
|
|
26611
|
-
|
|
26612
|
-
.k-card-callout.k-callout-n { @include box-shadow( $card-callout-box-shadow-n ); }
|
|
26613
|
-
.k-card-callout.k-callout-e { @include box-shadow( $card-callout-box-shadow-e ); }
|
|
26614
|
-
.k-card-callout.k-callout-s { @include box-shadow( $card-callout-box-shadow-s ); }
|
|
26615
|
-
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
26616
|
-
|
|
26617
|
-
.k-card:focus .k-card-callout,
|
|
26618
|
-
.k-card.k-focus .k-card-callout,
|
|
26619
|
-
.k-card.k-state-focus .k-card-callout {
|
|
26620
|
-
@include fill(
|
|
26621
|
-
$bg: $card-focus-bg,
|
|
26622
|
-
$border: $card-focus-border
|
|
26606
|
+
$bg: inherit,
|
|
26607
|
+
$border: inherit
|
|
26623
26608
|
);
|
|
26624
26609
|
|
|
26625
|
-
|
|
26626
|
-
&.k-callout-e { @include box-shadow( $card-focus-callout-box-shadow-e ); }
|
|
26627
|
-
&.k-callout-s { @include box-shadow( $card-focus-callout-box-shadow-s ); }
|
|
26628
|
-
&.k-callout-w { @include box-shadow( $card-focus-callout-box-shadow-w ); }
|
|
26610
|
+
@include box-shadow( inherit );
|
|
26629
26611
|
}
|
|
26630
26612
|
|
|
26631
26613
|
}
|
|
@@ -26672,10 +26654,6 @@ $popover-callout-border-width: $popover-border-width !default;
|
|
|
26672
26654
|
$popover-callout-border-style: $popover-border-style !default;
|
|
26673
26655
|
$popover-callout-bg: $popover-bg !default;
|
|
26674
26656
|
$popover-callout-border: $popover-border !default;
|
|
26675
|
-
$popover-callout-shadow-n: null !default;
|
|
26676
|
-
$popover-callout-shadow-e: null !default;
|
|
26677
|
-
$popover-callout-shadow-s: null !default;
|
|
26678
|
-
$popover-callout-shadow-w: null !default;
|
|
26679
26657
|
|
|
26680
26658
|
// #endregion
|
|
26681
26659
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/popover/_layout.scss
|
|
@@ -26706,6 +26684,11 @@ $popover-callout-shadow-w: null !default;
|
|
|
26706
26684
|
}
|
|
26707
26685
|
}
|
|
26708
26686
|
|
|
26687
|
+
.k-popover-inner {
|
|
26688
|
+
position: relative;
|
|
26689
|
+
border-radius: inherit;
|
|
26690
|
+
}
|
|
26691
|
+
|
|
26709
26692
|
// Header
|
|
26710
26693
|
.k-popover-header {
|
|
26711
26694
|
@include border-top-radius( $popover-border-radius );
|
|
@@ -26732,32 +26715,32 @@ $popover-callout-shadow-w: null !default;
|
|
|
26732
26715
|
margin: 0;
|
|
26733
26716
|
width: $popover-callout-width;
|
|
26734
26717
|
height: $popover-callout-height;
|
|
26735
|
-
border-width: $popover-callout-border-width
|
|
26718
|
+
border-width: $popover-callout-border-width;
|
|
26736
26719
|
border-style: $popover-callout-border-style;
|
|
26737
26720
|
position: absolute;
|
|
26738
26721
|
|
|
26739
26722
|
&.k-callout-n {
|
|
26740
26723
|
top: 0;
|
|
26741
26724
|
left: 50%;
|
|
26742
|
-
transform: translate(-50%, -50%) rotate(
|
|
26725
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26743
26726
|
}
|
|
26744
26727
|
|
|
26745
26728
|
&.k-callout-e {
|
|
26746
26729
|
top: 50%;
|
|
26747
26730
|
right: 0;
|
|
26748
|
-
transform: translate(50%, -50%) rotate(
|
|
26731
|
+
transform: translate(50%, -50%) rotate(-45deg);
|
|
26749
26732
|
}
|
|
26750
26733
|
|
|
26751
26734
|
&.k-callout-s {
|
|
26752
26735
|
bottom: 0;
|
|
26753
26736
|
left: 50%;
|
|
26754
|
-
transform: translate(-50%, 50%) rotate(
|
|
26737
|
+
transform: translate(-50%, 50%) rotate(45deg);
|
|
26755
26738
|
}
|
|
26756
26739
|
|
|
26757
26740
|
&.k-callout-w {
|
|
26758
26741
|
top: 50%;
|
|
26759
26742
|
left: 0;
|
|
26760
|
-
transform: translate(-50%, -50%) rotate(
|
|
26743
|
+
transform: translate(-50%, -50%) rotate(45deg);
|
|
26761
26744
|
}
|
|
26762
26745
|
}
|
|
26763
26746
|
|
|
@@ -26781,6 +26764,11 @@ $popover-callout-shadow-w: null !default;
|
|
|
26781
26764
|
);
|
|
26782
26765
|
}
|
|
26783
26766
|
|
|
26767
|
+
.k-popover-inner {
|
|
26768
|
+
background-color: inherit;
|
|
26769
|
+
border-color: inherit;
|
|
26770
|
+
}
|
|
26771
|
+
|
|
26784
26772
|
// Header
|
|
26785
26773
|
.k-popover-header {
|
|
26786
26774
|
@include fill(
|
|
@@ -26793,14 +26781,11 @@ $popover-callout-shadow-w: null !default;
|
|
|
26793
26781
|
// Callout
|
|
26794
26782
|
.k-popover-callout {
|
|
26795
26783
|
@include fill(
|
|
26796
|
-
$bg:
|
|
26797
|
-
$border:
|
|
26784
|
+
$bg: inherit,
|
|
26785
|
+
$border: inherit
|
|
26798
26786
|
);
|
|
26799
26787
|
|
|
26800
|
-
|
|
26801
|
-
&.k-callout-e { @include box-shadow( $popover-callout-shadow-e ); }
|
|
26802
|
-
&.k-callout-s { @include box-shadow( $popover-callout-shadow-s ); }
|
|
26803
|
-
&.k-callout-w { @include box-shadow( $popover-callout-shadow-w ); }
|
|
26788
|
+
@include box-shadow( inherit )
|
|
26804
26789
|
}
|
|
26805
26790
|
|
|
26806
26791
|
}
|
|
@@ -27633,6 +27618,10 @@ $pager-dropdown-width: 5em !default;
|
|
|
27633
27618
|
.k-rtl &,
|
|
27634
27619
|
&[dir="rtl"],
|
|
27635
27620
|
[dir="rtl"] & {
|
|
27621
|
+
.k-i-caret-alt-to-left,
|
|
27622
|
+
.k-i-caret-alt-to-right,
|
|
27623
|
+
.k-i-caret-alt-left,
|
|
27624
|
+
.k-i-caret-alt-right,
|
|
27636
27625
|
.k-i-arrow-end-left,
|
|
27637
27626
|
.k-i-arrow-60-left,
|
|
27638
27627
|
.k-i-arrow-60-right,
|
|
@@ -31143,7 +31132,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31143
31132
|
border-radius: 50%;
|
|
31144
31133
|
}
|
|
31145
31134
|
|
|
31146
|
-
.k-i-reload
|
|
31135
|
+
.k-i-reload,
|
|
31136
|
+
.k-i-arrow-rotate-cw {
|
|
31147
31137
|
font-size: 1em;
|
|
31148
31138
|
margin-right: .5em;
|
|
31149
31139
|
}
|
|
@@ -32157,7 +32147,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32157
32147
|
|
|
32158
32148
|
.k-cell-inner > .k-link > .k-icon {
|
|
32159
32149
|
&.k-i-sort-desc-sm,
|
|
32160
|
-
&.k-i-sort-asc-sm
|
|
32150
|
+
&.k-i-sort-asc-sm,
|
|
32151
|
+
&.k-i-sort-asc-small,
|
|
32152
|
+
&.k-i-sort-desc-small {
|
|
32161
32153
|
vertical-align: text-top;
|
|
32162
32154
|
margin-inline-start: $grid-sorted-icon-spacing;
|
|
32163
32155
|
}
|
|
@@ -33111,6 +33103,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33111
33103
|
|
|
33112
33104
|
.k-i-sort-asc-sm,
|
|
33113
33105
|
.k-i-sort-desc-sm,
|
|
33106
|
+
.k-i-sort-asc-small,
|
|
33107
|
+
.k-i-sort-desc-small,
|
|
33114
33108
|
.k-sort-order {
|
|
33115
33109
|
color: $grid-sorting-indicator-text;
|
|
33116
33110
|
}
|
|
@@ -37880,7 +37874,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37880
37874
|
border-bottom-color: inherit;
|
|
37881
37875
|
cursor: se-resize;
|
|
37882
37876
|
|
|
37883
|
-
.k-i-arrow-45-down-right
|
|
37877
|
+
.k-i-arrow-45-down-right,
|
|
37878
|
+
.k-i-caret-br {
|
|
37884
37879
|
display: none;
|
|
37885
37880
|
}
|
|
37886
37881
|
}
|
|
@@ -41190,6 +41185,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41190
41185
|
|
|
41191
41186
|
.k-scheduler,
|
|
41192
41187
|
&.k-scheduler {
|
|
41188
|
+
.k-i-caret-alt-left,
|
|
41189
|
+
.k-i-caret-alt-right,
|
|
41193
41190
|
.k-i-arrow-60-left,
|
|
41194
41191
|
.k-i-arrow-60-right,
|
|
41195
41192
|
.k-current-time-arrow-right {
|
|
@@ -43130,6 +43127,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43130
43127
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
43131
43128
|
// File already imported_once. Skipping output.
|
|
43132
43129
|
// #endregion
|
|
43130
|
+
// #region @import "../button/_variables.scss"; -> packages/bootstrap/scss/button/_variables.scss
|
|
43131
|
+
// File already imported_once. Skipping output.
|
|
43132
|
+
// #endregion
|
|
43133
43133
|
// #region @import "../combobox/_index.scss"; -> packages/bootstrap/scss/combobox/_index.scss
|
|
43134
43134
|
// File already imported_once. Skipping output.
|
|
43135
43135
|
// #endregion
|
|
@@ -43145,6 +43145,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43145
43145
|
// #region @import "../icons/_index.scss"; -> packages/bootstrap/scss/icons/_index.scss
|
|
43146
43146
|
// File already imported_once. Skipping output.
|
|
43147
43147
|
// #endregion
|
|
43148
|
+
// #region @import "../dropzone/_index.scss"; -> packages/bootstrap/scss/dropzone/_index.scss
|
|
43149
|
+
// File already imported_once. Skipping output.
|
|
43150
|
+
// #endregion
|
|
43151
|
+
// #region @import "../window/_index.scss"; -> packages/bootstrap/scss/window/_index.scss
|
|
43152
|
+
// File already imported_once. Skipping output.
|
|
43153
|
+
// #endregion
|
|
43148
43154
|
|
|
43149
43155
|
|
|
43150
43156
|
// Component
|
|
@@ -43175,12 +43181,25 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
43175
43181
|
$pdf-viewer-page-border: $component-border !default;
|
|
43176
43182
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
43177
43183
|
|
|
43178
|
-
$pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
|
|
43184
|
+
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
43185
|
+
$pdf-viewer-search-dialog-padding-y: calc( #{$toolbar-padding-x} * 2 ) !default;
|
|
43179
43186
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
43180
43187
|
|
|
43188
|
+
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
43189
|
+
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
43190
|
+
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
43191
|
+
$pdf-viewer-search-panel-text: $component-text !default;
|
|
43192
|
+
$pdf-viewer-search-panel-border: $component-border !default;
|
|
43193
|
+
$pdf-viewer-search-panel-shadow: null !default;
|
|
43194
|
+
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
43195
|
+
|
|
43181
43196
|
$pdf-viewer-selection-line-height: 1.2 !default;
|
|
43182
43197
|
|
|
43183
43198
|
$pdf-viewer-search-highlight-bg: $body-text !default;
|
|
43199
|
+
$pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
43200
|
+
|
|
43201
|
+
$pdf-viewer-icon-text: $dropzone-icon-text !default;
|
|
43202
|
+
$pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
43184
43203
|
|
|
43185
43204
|
// #endregion
|
|
43186
43205
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/pdf-viewer/_layout.scss
|
|
@@ -43191,6 +43210,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43191
43210
|
border-width: $pdf-viewer-border-width;
|
|
43192
43211
|
border-style: solid;
|
|
43193
43212
|
box-sizing: border-box;
|
|
43213
|
+
position: relative;
|
|
43194
43214
|
outline: 0;
|
|
43195
43215
|
font-family: $pdf-viewer-font-family;
|
|
43196
43216
|
font-size: $pdf-viewer-font-size;
|
|
@@ -43221,11 +43241,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43221
43241
|
|
|
43222
43242
|
|
|
43223
43243
|
// Canvas
|
|
43224
|
-
.k-
|
|
43244
|
+
.k-canvas {
|
|
43245
|
+
display: flex;
|
|
43246
|
+
flex-direction: column;
|
|
43225
43247
|
flex: 1 1 auto;
|
|
43226
43248
|
outline: none;
|
|
43227
43249
|
|
|
43228
|
-
.k-enable-text-select
|
|
43250
|
+
.k-enable-text-select,
|
|
43251
|
+
&.k-enable-text-select {
|
|
43229
43252
|
-webkit-user-select: text;
|
|
43230
43253
|
-moz-user-select: text;
|
|
43231
43254
|
-ms-user-select: text;
|
|
@@ -43233,16 +43256,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43233
43256
|
cursor: text;
|
|
43234
43257
|
}
|
|
43235
43258
|
|
|
43236
|
-
.k-enable-panning
|
|
43259
|
+
.k-enable-panning,
|
|
43260
|
+
&.k-enable-panning {
|
|
43237
43261
|
cursor: grab;
|
|
43238
43262
|
}
|
|
43239
|
-
.k-enable-panning span::selection
|
|
43263
|
+
.k-enable-panning span::selection,
|
|
43264
|
+
&.k-enable-panning span::selection {
|
|
43240
43265
|
background-color: transparent;
|
|
43241
43266
|
}
|
|
43242
43267
|
}
|
|
43243
43268
|
|
|
43244
43269
|
|
|
43245
|
-
//
|
|
43270
|
+
// Pages
|
|
43271
|
+
.k-pdf-viewer-pages {
|
|
43272
|
+
flex: 1 1 auto;
|
|
43273
|
+
}
|
|
43274
|
+
|
|
43246
43275
|
.k-page {
|
|
43247
43276
|
position: relative;
|
|
43248
43277
|
margin: $pdf-viewer-page-spacing auto;
|
|
@@ -43268,46 +43297,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43268
43297
|
mark {
|
|
43269
43298
|
color: transparent;
|
|
43270
43299
|
}
|
|
43300
|
+
|
|
43301
|
+
.k-search-highlight-mark {
|
|
43302
|
+
color: transparent;
|
|
43303
|
+
}
|
|
43271
43304
|
}
|
|
43272
43305
|
}
|
|
43306
|
+
|
|
43307
|
+
.k-blank-page {
|
|
43308
|
+
margin: 0;
|
|
43309
|
+
display: flex;
|
|
43310
|
+
flex-flow: column nowrap;
|
|
43311
|
+
width: 100%;
|
|
43312
|
+
height: 100%;
|
|
43313
|
+
align-items: center;
|
|
43314
|
+
justify-content: center;
|
|
43315
|
+
background-color: inherit !important; // sass-lint:disable-line no-important
|
|
43316
|
+
|
|
43317
|
+
.k-upload,
|
|
43318
|
+
.k-dropzone,
|
|
43319
|
+
.k-dropzone-inner {
|
|
43320
|
+
border: 0;
|
|
43321
|
+
background: none;
|
|
43322
|
+
}
|
|
43323
|
+
|
|
43324
|
+
> .k-icon {
|
|
43325
|
+
font-size: $pdf-viewer-icon-size;
|
|
43326
|
+
}
|
|
43327
|
+
}
|
|
43328
|
+
|
|
43273
43329
|
}
|
|
43274
43330
|
|
|
43275
43331
|
// Search
|
|
43276
43332
|
.k-pdf-viewer-search-dialog {
|
|
43277
|
-
padding:
|
|
43333
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
43334
|
+
}
|
|
43278
43335
|
|
|
43279
|
-
|
|
43280
|
-
|
|
43281
|
-
|
|
43282
|
-
|
|
43283
|
-
|
|
43284
|
-
|
|
43285
|
-
|
|
43336
|
+
.k-search-panel {
|
|
43337
|
+
padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
|
|
43338
|
+
display: flex;
|
|
43339
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
43340
|
+
flex-flow: row nowrap;
|
|
43341
|
+
flex: 0 0 auto;
|
|
43342
|
+
justify-content: flex-start;
|
|
43343
|
+
align-items: center;
|
|
43286
43344
|
|
|
43287
|
-
|
|
43288
|
-
|
|
43289
|
-
|
|
43290
|
-
|
|
43345
|
+
.k-search-dialog-draghandle {
|
|
43346
|
+
cursor: move;
|
|
43347
|
+
margin-left: 0;
|
|
43348
|
+
}
|
|
43291
43349
|
|
|
43292
|
-
|
|
43293
|
-
|
|
43294
|
-
|
|
43350
|
+
.k-textbox {
|
|
43351
|
+
width: 10em;
|
|
43352
|
+
flex: none;
|
|
43295
43353
|
|
|
43296
|
-
|
|
43297
|
-
|
|
43298
|
-
}
|
|
43354
|
+
.k-button {
|
|
43355
|
+
border-width: 0;
|
|
43299
43356
|
}
|
|
43357
|
+
}
|
|
43300
43358
|
|
|
43301
|
-
|
|
43302
|
-
|
|
43303
|
-
|
|
43359
|
+
.k-search-matches {
|
|
43360
|
+
display: inline-flex;
|
|
43361
|
+
gap: $pdf-viewer-search-panel-matches-spacing;
|
|
43304
43362
|
}
|
|
43305
43363
|
}
|
|
43306
43364
|
|
|
43365
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
43366
|
+
width: max-content;
|
|
43367
|
+
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
43368
|
+
border-width: $pdf-viewer-search-panel-border-width;
|
|
43369
|
+
border-style: solid;
|
|
43370
|
+
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
43371
|
+
z-index: 10;
|
|
43372
|
+
}
|
|
43373
|
+
|
|
43374
|
+
// Alias
|
|
43375
|
+
.k-search-container {
|
|
43376
|
+
@extend .k-search-panel !optional;
|
|
43377
|
+
}
|
|
43378
|
+
|
|
43307
43379
|
|
|
43308
43380
|
// IE
|
|
43309
43381
|
.k-ie .k-pdf-viewer-search-dialog {
|
|
43310
|
-
|
|
43311
43382
|
.k-search-container > * + * {
|
|
43312
43383
|
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
43313
43384
|
}
|
|
@@ -43362,12 +43433,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43362
43433
|
@include box-shadow( $pdf-viewer-page-shadow );
|
|
43363
43434
|
}
|
|
43364
43435
|
|
|
43436
|
+
.k-blank-page > .k-icon {
|
|
43437
|
+
@include fill( $color: $pdf-viewer-icon-text );
|
|
43438
|
+
}
|
|
43439
|
+
|
|
43365
43440
|
|
|
43366
43441
|
// Search
|
|
43367
43442
|
.k-search-highlight {
|
|
43368
43443
|
background-color: $pdf-viewer-search-highlight-bg;
|
|
43369
43444
|
}
|
|
43370
43445
|
|
|
43446
|
+
.k-search-highlight-mark {
|
|
43447
|
+
@include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
|
|
43448
|
+
}
|
|
43449
|
+
|
|
43450
|
+
}
|
|
43451
|
+
|
|
43452
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
43453
|
+
@include fill(
|
|
43454
|
+
$pdf-viewer-search-panel-text,
|
|
43455
|
+
$pdf-viewer-search-panel-bg,
|
|
43456
|
+
$pdf-viewer-search-panel-border,
|
|
43457
|
+
);
|
|
43458
|
+
@include box-shadow( $pdf-viewer-search-panel-shadow );
|
|
43459
|
+
}
|
|
43460
|
+
|
|
43461
|
+
.k-search-container {
|
|
43462
|
+
@extend .k-search-panel !optional;
|
|
43371
43463
|
}
|
|
43372
43464
|
|
|
43373
43465
|
}
|
|
@@ -44105,7 +44197,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44105
44197
|
.k-chart-tooltip-wrapper {
|
|
44106
44198
|
z-index: 12000;
|
|
44107
44199
|
|
|
44108
|
-
|
|
44200
|
+
.k-popup {
|
|
44109
44201
|
padding: 0;
|
|
44110
44202
|
border-width: 0;
|
|
44111
44203
|
background: transparent;
|