@progress/kendo-theme-classic 7.0.3-dev.2 → 7.1.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +143 -110
- package/dist/all.scss +376 -176
- package/dist/meta/sassdoc-data.json +28218 -19536
- package/dist/meta/sassdoc-raw-data.json +13393 -9393
- package/dist/meta/variables.json +6 -62
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.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/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/captcha/_variables.scss +29 -1
- package/scss/dropzone/_variables.scss +39 -1
- package/scss/filemanager/_variables.scss +116 -1
- package/scss/pdf-viewer/_variables.scss +67 -1
- package/scss/rating/_variables.scss +30 -0
- package/scss/skeleton/_variables.scss +13 -1
- package/scss/tooltip/_variables.scss +49 -16
package/dist/all.scss
CHANGED
|
@@ -16899,6 +16899,7 @@ $kendo-popup-shadow: k-elevation(4) !default;
|
|
|
16899
16899
|
.k-popup.k-popup-transparent {
|
|
16900
16900
|
border-width: 0;
|
|
16901
16901
|
background-color: transparent;
|
|
16902
|
+
box-shadow: none;
|
|
16902
16903
|
}
|
|
16903
16904
|
|
|
16904
16905
|
// Flush popup
|
|
@@ -20175,15 +20176,27 @@ $_kendo-module-meta: (
|
|
|
20175
20176
|
// Component
|
|
20176
20177
|
// #region @import "./_variables.scss"; -> scss/skeleton/_variables.scss
|
|
20177
20178
|
// Skeleton
|
|
20179
|
+
|
|
20180
|
+
/// The transform scale of the Skeleton text.
|
|
20181
|
+
/// @group skeleton
|
|
20178
20182
|
$kendo-skeleton-text-transform: scale( 1, .6 ) !default;
|
|
20183
|
+
/// The border radius of the Skeleton text.
|
|
20184
|
+
/// @group skeleton
|
|
20179
20185
|
$kendo-skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
20180
20186
|
|
|
20187
|
+
/// The border radius of the rectangular Skeleton.
|
|
20188
|
+
/// @group skeleton
|
|
20181
20189
|
$kendo-skeleton-rect-border-radius: 0 !default;
|
|
20182
20190
|
|
|
20191
|
+
/// The border radius of the circular Skeleton.
|
|
20192
|
+
/// @group skeleton
|
|
20183
20193
|
$kendo-skeleton-circle-border-radius: 9999px !default;
|
|
20184
20194
|
|
|
20195
|
+
/// The background color of the Skeleton item.
|
|
20196
|
+
/// @group skeleton
|
|
20185
20197
|
$kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
|
|
20186
|
-
|
|
20198
|
+
/// The background color of the Skeleton wave animation.
|
|
20199
|
+
/// @group skeleton
|
|
20187
20200
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
20188
20201
|
|
|
20189
20202
|
// #endregion
|
|
@@ -22978,43 +22991,75 @@ $kendo-picker-flat-hover-focus-border: null !default;
|
|
|
22978
22991
|
// #endregion
|
|
22979
22992
|
// #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
|
|
22980
22993
|
// Tooltip
|
|
22994
|
+
|
|
22995
|
+
/// The vertical padding of the Tooltip.
|
|
22996
|
+
/// @group tooltip
|
|
22981
22997
|
$kendo-tooltip-padding-y: $kendo-padding-md-y !default;
|
|
22998
|
+
/// The horizontal padding of the Tooltip.
|
|
22999
|
+
/// @group tooltip
|
|
22982
23000
|
$kendo-tooltip-padding-x: $kendo-padding-md-x !default;
|
|
22983
|
-
|
|
23001
|
+
/// The width of the border around the Tooltip.
|
|
23002
|
+
/// @group tooltip
|
|
22984
23003
|
$kendo-tooltip-border-width: 0px !default;
|
|
23004
|
+
/// The border radius of the Tooltip.
|
|
23005
|
+
/// @group tooltip
|
|
22985
23006
|
$kendo-tooltip-border-radius: $kendo-border-radius-md !default;
|
|
22986
23007
|
|
|
23008
|
+
/// The font family of the Tooltip.
|
|
23009
|
+
/// @group tooltip
|
|
22987
23010
|
$kendo-tooltip-font-family: $kendo-font-family !default;
|
|
23011
|
+
/// The font size of the Tooltip.
|
|
23012
|
+
/// @group tooltip
|
|
22988
23013
|
$kendo-tooltip-font-size: $kendo-font-size-md !default;
|
|
23014
|
+
/// The line height of the Tooltip.
|
|
23015
|
+
/// @group tooltip
|
|
22989
23016
|
$kendo-tooltip-line-height: 1.25 !default;
|
|
22990
23017
|
|
|
23018
|
+
/// The font size of the Tooltip title.
|
|
23019
|
+
/// @group tooltip
|
|
22991
23020
|
$kendo-tooltip-title-font-size: ($kendo-tooltip-font-size * 1.25) !default;
|
|
23021
|
+
/// The line height of the Tooltip title.
|
|
23022
|
+
/// @group tooltip
|
|
22992
23023
|
$kendo-tooltip-title-line-height: 1 !default;
|
|
22993
23024
|
|
|
23025
|
+
/// The size of the Tooltip callout.
|
|
23026
|
+
/// @group tooltip
|
|
22994
23027
|
$kendo-tooltip-callout-size: 6px !default;
|
|
22995
23028
|
|
|
23029
|
+
/// The default background of the Tooltip.
|
|
23030
|
+
/// @group tooltip
|
|
22996
23031
|
$kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
|
|
23032
|
+
/// The default text color of the Tooltip.
|
|
23033
|
+
/// @group tooltip
|
|
22997
23034
|
$kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
|
|
23035
|
+
/// The default border color of the Tooltip.
|
|
23036
|
+
/// @group tooltip
|
|
22998
23037
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
22999
23038
|
|
|
23039
|
+
/// The box-shadow of the Tooltip.
|
|
23040
|
+
/// @group tooltip
|
|
23000
23041
|
$kendo-tooltip-shadow: k-elevation(2) !default;
|
|
23001
23042
|
|
|
23002
|
-
|
|
23003
|
-
$
|
|
23004
|
-
|
|
23005
|
-
$
|
|
23006
|
-
$
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23011
|
-
|
|
23012
|
-
|
|
23013
|
-
|
|
23014
|
-
|
|
23015
|
-
$kendo-tooltip-error-text: k-contrast-color( $kendo-tooltip-error-bg ) !default;
|
|
23016
|
-
$kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
|
|
23043
|
+
@function tooltip-theme( $colors ) {
|
|
23044
|
+
$_theme: ();
|
|
23045
|
+
|
|
23046
|
+
@each $name, $color in $colors {
|
|
23047
|
+
$_theme: k-map-merge(( $name: (
|
|
23048
|
+
color: k-contrast-legacy( $color ),
|
|
23049
|
+
background-color: $color,
|
|
23050
|
+
border: $color,
|
|
23051
|
+
)), $_theme );
|
|
23052
|
+
}
|
|
23053
|
+
|
|
23054
|
+
@return $_theme;
|
|
23055
|
+
}
|
|
23017
23056
|
|
|
23057
|
+
/// The theme colors map for the Tooltip.
|
|
23058
|
+
/// @group tooltip
|
|
23059
|
+
$kendo-tooltip-theme-colors: $kendo-theme-colors !default;
|
|
23060
|
+
/// The generated theme colors map for the Tooltip.
|
|
23061
|
+
/// @group tooltip
|
|
23062
|
+
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
23018
23063
|
// #endregion
|
|
23019
23064
|
// #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
|
|
23020
23065
|
// File already imported_once. Skipping output.
|
|
@@ -23853,7 +23898,6 @@ $_kendo-module-meta: (
|
|
|
23853
23898
|
margin: 0;
|
|
23854
23899
|
padding-block: $kendo-tooltip-padding-y;
|
|
23855
23900
|
padding-inline: $kendo-tooltip-padding-x;
|
|
23856
|
-
// max-width: $kendo-tooltip-max-width;
|
|
23857
23901
|
border-width: $kendo-tooltip-border-width;
|
|
23858
23902
|
border-style: solid;
|
|
23859
23903
|
box-sizing: border-box;
|
|
@@ -23976,14 +24020,6 @@ $_kendo-module-meta: (
|
|
|
23976
24020
|
// #region @import "./_theme.scss"; -> scss/tooltip/_theme.scss
|
|
23977
24021
|
// #region @import "@progress/kendo-theme-default/scss/tooltip/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/tooltip/_theme.scss
|
|
23978
24022
|
@mixin kendo-tooltip--theme-base() {
|
|
23979
|
-
|
|
23980
|
-
.k-tooltip-wrapper {
|
|
23981
|
-
.k-tooltip {
|
|
23982
|
-
box-shadow: $kendo-tooltip-shadow;
|
|
23983
|
-
}
|
|
23984
|
-
}
|
|
23985
|
-
|
|
23986
|
-
|
|
23987
24023
|
// Default tooltip
|
|
23988
24024
|
.k-tooltip {
|
|
23989
24025
|
@include fill(
|
|
@@ -23991,67 +24027,26 @@ $_kendo-module-meta: (
|
|
|
23991
24027
|
$kendo-tooltip-bg,
|
|
23992
24028
|
$kendo-tooltip-border
|
|
23993
24029
|
);
|
|
24030
|
+
|
|
24031
|
+
@include box-shadow( $kendo-tooltip-shadow );
|
|
23994
24032
|
|
|
23995
24033
|
.k-callout {
|
|
23996
24034
|
color: $kendo-tooltip-bg;
|
|
23997
24035
|
}
|
|
23998
24036
|
}
|
|
23999
24037
|
|
|
24000
|
-
|
|
24001
24038
|
// Tooltip variants
|
|
24002
|
-
|
|
24003
|
-
|
|
24004
|
-
|
|
24005
|
-
|
|
24006
|
-
|
|
24007
|
-
|
|
24008
|
-
|
|
24009
|
-
|
|
24010
|
-
|
|
24011
|
-
|
|
24012
|
-
|
|
24013
|
-
.k-tooltip-info {
|
|
24014
|
-
@include fill(
|
|
24015
|
-
$kendo-tooltip-info-text,
|
|
24016
|
-
$kendo-tooltip-info-bg,
|
|
24017
|
-
$kendo-tooltip-info-border
|
|
24018
|
-
);
|
|
24019
|
-
|
|
24020
|
-
.k-callout {
|
|
24021
|
-
color: $kendo-tooltip-info-bg;
|
|
24022
|
-
}
|
|
24023
|
-
}
|
|
24024
|
-
.k-tooltip-success {
|
|
24025
|
-
@include fill(
|
|
24026
|
-
$kendo-tooltip-success-text,
|
|
24027
|
-
$kendo-tooltip-success-bg,
|
|
24028
|
-
$kendo-tooltip-success-border
|
|
24029
|
-
);
|
|
24030
|
-
|
|
24031
|
-
.k-callout {
|
|
24032
|
-
color: $kendo-tooltip-success-bg;
|
|
24033
|
-
}
|
|
24034
|
-
}
|
|
24035
|
-
.k-tooltip-warning {
|
|
24036
|
-
@include fill(
|
|
24037
|
-
$kendo-tooltip-warning-text,
|
|
24038
|
-
$kendo-tooltip-warning-bg,
|
|
24039
|
-
$kendo-tooltip-warning-border
|
|
24040
|
-
);
|
|
24041
|
-
|
|
24042
|
-
.k-callout {
|
|
24043
|
-
color: $kendo-tooltip-warning-bg;
|
|
24044
|
-
}
|
|
24045
|
-
}
|
|
24046
|
-
.k-tooltip-error {
|
|
24047
|
-
@include fill(
|
|
24048
|
-
$kendo-tooltip-error-text,
|
|
24049
|
-
$kendo-tooltip-error-bg,
|
|
24050
|
-
$kendo-tooltip-error-border
|
|
24051
|
-
);
|
|
24052
|
-
|
|
24053
|
-
.k-callout {
|
|
24054
|
-
color: $kendo-tooltip-error-bg;
|
|
24039
|
+
@each $name, $props in $kendo-tooltip-theme {
|
|
24040
|
+
.k-tooltip-#{$name} {
|
|
24041
|
+
@include fill(
|
|
24042
|
+
k-map-get( $props, color ),
|
|
24043
|
+
k-map-get( $props, background-color ),
|
|
24044
|
+
k-map-get( $props, border )
|
|
24045
|
+
);
|
|
24046
|
+
|
|
24047
|
+
.k-callout {
|
|
24048
|
+
color: k-map-get( $props, background-color );
|
|
24049
|
+
}
|
|
24055
24050
|
}
|
|
24056
24051
|
}
|
|
24057
24052
|
|
|
@@ -27408,19 +27403,6 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27408
27403
|
}
|
|
27409
27404
|
}
|
|
27410
27405
|
|
|
27411
|
-
|
|
27412
|
-
// Slider wrap
|
|
27413
|
-
.k-slider-wrap {
|
|
27414
|
-
width: 100%;
|
|
27415
|
-
height: 100%;
|
|
27416
|
-
display: flex;
|
|
27417
|
-
flex-flow: inherit;
|
|
27418
|
-
align-items: inherit;
|
|
27419
|
-
gap: inherit;
|
|
27420
|
-
position: relative;
|
|
27421
|
-
}
|
|
27422
|
-
|
|
27423
|
-
|
|
27424
27406
|
// New rendering
|
|
27425
27407
|
.k-slider {
|
|
27426
27408
|
width: min-content;
|
|
@@ -27752,15 +27734,7 @@ $kendo-slider-disabled-opacity: null !default;
|
|
|
27752
27734
|
.k-slider kendo-resize-sensor {
|
|
27753
27735
|
position: absolute;
|
|
27754
27736
|
}
|
|
27755
|
-
|
|
27756
|
-
padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
27757
|
-
padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
27758
|
-
}
|
|
27759
|
-
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
27760
|
-
padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
27761
|
-
padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
|
|
27762
|
-
}
|
|
27763
|
-
|
|
27737
|
+
|
|
27764
27738
|
// Aliases
|
|
27765
27739
|
.k-draghandle { @extend .k-slider-thumb !optional; }
|
|
27766
27740
|
.k-draghandle-start { @extend .k-slider-thumb-start !optional; }
|
|
@@ -29521,23 +29495,51 @@ $_kendo-module-meta: (
|
|
|
29521
29495
|
// Component
|
|
29522
29496
|
// #region @import "./_variables.scss"; -> scss/captcha/_variables.scss
|
|
29523
29497
|
// Captcha
|
|
29498
|
+
|
|
29499
|
+
/// The spacer of the Captcha.
|
|
29500
|
+
/// @group captcha
|
|
29524
29501
|
$kendo-captcha-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
29525
29502
|
|
|
29503
|
+
/// The width of the Captcha.
|
|
29504
|
+
/// @group captcha
|
|
29526
29505
|
$kendo-captcha-width: 280px !default;
|
|
29506
|
+
/// The font family of the Captcha.
|
|
29507
|
+
/// @group captcha
|
|
29527
29508
|
$kendo-captcha-font-family: $kendo-font-family !default;
|
|
29509
|
+
/// The font size of the Captcha.
|
|
29510
|
+
/// @group captcha
|
|
29528
29511
|
$kendo-captcha-font-size: $kendo-font-size-md !default;
|
|
29512
|
+
/// The line height of the Captcha.
|
|
29513
|
+
/// @group captcha
|
|
29529
29514
|
$kendo-captcha-line-height: $kendo-line-height-md !default;
|
|
29515
|
+
/// The gap of the Captcha.
|
|
29516
|
+
/// @group captcha
|
|
29530
29517
|
$kendo-captcha-gap: $kendo-captcha-spacer !default;
|
|
29518
|
+
/// The background color of the Captcha.
|
|
29519
|
+
/// @group captcha
|
|
29531
29520
|
$kendo-captcha-bg: $kendo-component-bg !default;
|
|
29521
|
+
/// The text color of the Captcha.
|
|
29522
|
+
/// @group captcha
|
|
29532
29523
|
$kendo-captcha-text: $kendo-component-bg !default;
|
|
29524
|
+
/// The border color of the Captcha.
|
|
29525
|
+
/// @group captcha
|
|
29533
29526
|
$kendo-captcha-border: $kendo-component-bg !default;
|
|
29534
29527
|
|
|
29528
|
+
/// The gap of the Captcha image wrapper.
|
|
29529
|
+
/// @group captcha
|
|
29535
29530
|
$kendo-captcha-image-wrap-gap: $kendo-captcha-spacer !default;
|
|
29536
|
-
|
|
29531
|
+
/// The gap of the Captcha image controls.
|
|
29532
|
+
/// @group captcha
|
|
29537
29533
|
$kendo-captcha-image-controls-gap: $kendo-captcha-spacer !default;
|
|
29538
29534
|
|
|
29535
|
+
/// The top margin of the Captcha validation message.
|
|
29536
|
+
/// @group captcha
|
|
29539
29537
|
$kendo-captcha-validation-message-margin-top: k-math-div( $kendo-captcha-spacer, 2 ) !default;
|
|
29538
|
+
/// The font size of the Captcha validation message.
|
|
29539
|
+
/// @group captcha
|
|
29540
29540
|
$kendo-captcha-validation-message-font-size: $kendo-font-size-sm !default;
|
|
29541
|
+
/// The font style of the Captcha validation message.
|
|
29542
|
+
/// @group captcha
|
|
29541
29543
|
$kendo-captcha-validation-message-font-style: italic !default;
|
|
29542
29544
|
|
|
29543
29545
|
// #endregion
|
|
@@ -30267,7 +30269,6 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
|
|
|
30267
30269
|
z-index: -1;
|
|
30268
30270
|
}
|
|
30269
30271
|
|
|
30270
|
-
.k-slider-wrap,
|
|
30271
30272
|
.k-slider-track-wrap {
|
|
30272
30273
|
z-index: 1;
|
|
30273
30274
|
}
|
|
@@ -32955,25 +32956,55 @@ $_kendo-module-meta: (
|
|
|
32955
32956
|
// #region @import "./_variables.scss"; -> scss/rating/_variables.scss
|
|
32956
32957
|
// Rating
|
|
32957
32958
|
|
|
32959
|
+
/// The font family of the Rating.
|
|
32960
|
+
/// @group rating
|
|
32958
32961
|
$kendo-rating-font-family: $kendo-font-family !default;
|
|
32962
|
+
/// The font size of the Rating.
|
|
32963
|
+
/// @group rating
|
|
32959
32964
|
$kendo-rating-font-size: $kendo-font-size-md !default;
|
|
32965
|
+
/// The line height of the Rating.
|
|
32966
|
+
/// @group rating
|
|
32960
32967
|
$kendo-rating-line-height: $kendo-line-height-md !default;
|
|
32961
32968
|
|
|
32969
|
+
/// The horizontal margin of the Rating container.
|
|
32970
|
+
/// @group rating
|
|
32962
32971
|
$kendo-rating-container-margin-x: $kendo-padding-sm-x !default;
|
|
32963
32972
|
|
|
32973
|
+
/// The horizontal padding of the Rating item.
|
|
32974
|
+
/// @group rating
|
|
32964
32975
|
$kendo-rating-item-padding-x: $kendo-padding-sm-x !default;
|
|
32976
|
+
/// The vertical padding of the Rating item.
|
|
32977
|
+
/// @group rating
|
|
32965
32978
|
$kendo-rating-item-padding-y: $kendo-padding-md-y !default;
|
|
32966
32979
|
|
|
32980
|
+
/// The horizontal margin of the Rating label.
|
|
32981
|
+
/// @group rating
|
|
32967
32982
|
$kendo-rating-label-margin-x: $kendo-padding-md-x !default;
|
|
32983
|
+
/// The vertical margin of the Rating label.
|
|
32984
|
+
/// @group rating
|
|
32968
32985
|
$kendo-rating-label-margin-y: $kendo-padding-md-y !default;
|
|
32986
|
+
/// The line height of the Rating label.
|
|
32987
|
+
/// @group rating
|
|
32969
32988
|
$kendo-rating-label-line-height: $kendo-line-height-lg !default;
|
|
32970
32989
|
|
|
32990
|
+
/// The text color of the Rating icon.
|
|
32991
|
+
/// @group rating
|
|
32971
32992
|
$kendo-rating-icon-text: $kendo-component-text !default;
|
|
32993
|
+
/// The text color of the selected Rating icon.
|
|
32994
|
+
/// @group rating
|
|
32972
32995
|
$kendo-rating-icon-selected-text: $kendo-selected-bg !default;
|
|
32996
|
+
/// The text color of the hovered Rating icon.
|
|
32997
|
+
/// @group rating
|
|
32973
32998
|
$kendo-rating-icon-hover-text: $kendo-selected-bg !default;
|
|
32999
|
+
/// The text color of the focused Rating icon.
|
|
33000
|
+
/// @group rating
|
|
32974
33001
|
$kendo-rating-icon-focus-text: $kendo-selected-bg !default;
|
|
32975
33002
|
|
|
33003
|
+
/// The shadow of the focused Rating icon.
|
|
33004
|
+
/// @group rating
|
|
32976
33005
|
$kendo-rating-icon-focus-shadow: 0 2px 4px rgba( black, .1 ) !default;
|
|
33006
|
+
/// The shadow of the focused and selected Rating icon.
|
|
33007
|
+
/// @group rating
|
|
32977
33008
|
$kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
32978
33009
|
|
|
32979
33010
|
// #endregion
|
|
@@ -33915,31 +33946,69 @@ $_kendo-module-meta: (
|
|
|
33915
33946
|
|
|
33916
33947
|
// Component
|
|
33917
33948
|
// #region @import "./_variables.scss"; -> scss/dropzone/_variables.scss
|
|
33918
|
-
//
|
|
33949
|
+
// DropZone
|
|
33919
33950
|
|
|
33951
|
+
/// The horizontal padding of the DropZone.
|
|
33952
|
+
/// @group dropzone
|
|
33920
33953
|
$kendo-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33954
|
+
/// The vertical padding of the DropZone.
|
|
33955
|
+
/// @group dropzone
|
|
33921
33956
|
$kendo-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33957
|
+
/// The border width of the DropZone.
|
|
33958
|
+
/// @group dropzone
|
|
33922
33959
|
$kendo-dropzone-border-width: 1px !default;
|
|
33960
|
+
/// The minimum height of the DropZone.
|
|
33961
|
+
/// @group dropzone
|
|
33923
33962
|
$kendo-dropzone-min-height: 220px !default;
|
|
33924
33963
|
|
|
33964
|
+
/// The font family of the DropZone.
|
|
33965
|
+
/// @group dropzone
|
|
33925
33966
|
$kendo-dropzone-font-family: $kendo-font-family !default;
|
|
33967
|
+
/// The font size of the DropZone.
|
|
33968
|
+
/// @group dropzone
|
|
33926
33969
|
$kendo-dropzone-font-size: $kendo-font-size-md !default;
|
|
33970
|
+
/// The line height of the DropZone.
|
|
33971
|
+
/// @group dropzone
|
|
33927
33972
|
$kendo-dropzone-line-height: $kendo-line-height-md !default;
|
|
33928
33973
|
|
|
33974
|
+
/// The background color of the DropZone.
|
|
33975
|
+
/// @group dropzone
|
|
33929
33976
|
$kendo-dropzone-bg: $kendo-base-bg !default;
|
|
33977
|
+
/// The text color of the DropZone.
|
|
33978
|
+
/// @group dropzone
|
|
33930
33979
|
$kendo-dropzone-text: $kendo-base-text !default;
|
|
33980
|
+
/// The border color of the DropZone.
|
|
33981
|
+
/// @group dropzone
|
|
33931
33982
|
$kendo-dropzone-border: $kendo-base-border !default;
|
|
33932
33983
|
|
|
33984
|
+
/// The spacing below the DropZone icon.
|
|
33985
|
+
/// @group dropzone
|
|
33933
33986
|
$kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
|
|
33987
|
+
/// The text color of the DropZone icon.
|
|
33988
|
+
/// @group dropzone
|
|
33934
33989
|
$kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
|
|
33990
|
+
/// The text color of the hovered DropZone icon.
|
|
33991
|
+
/// @group dropzone
|
|
33935
33992
|
$kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
|
|
33936
33993
|
|
|
33994
|
+
/// The font size of the DropZone hint.
|
|
33995
|
+
/// @group dropzone
|
|
33937
33996
|
$kendo-dropzone-hint-font-size: null !default;
|
|
33997
|
+
/// The spacing below the DropZone hint.
|
|
33998
|
+
/// @group dropzone
|
|
33938
33999
|
$kendo-dropzone-hint-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34000
|
+
/// The text color of the DropZone hint.
|
|
34001
|
+
/// @group dropzone
|
|
33939
34002
|
$kendo-dropzone-hint-text: null !default;
|
|
33940
34003
|
|
|
34004
|
+
/// The font size of the DropZone note.
|
|
34005
|
+
/// @group dropzone
|
|
33941
34006
|
$kendo-dropzone-note-font-size: $kendo-font-size-sm !default;
|
|
34007
|
+
/// The spacing below the DropZone note.
|
|
34008
|
+
/// @group dropzone
|
|
33942
34009
|
$kendo-dropzone-note-spacing: null !default;
|
|
34010
|
+
/// The text color of the DropZone note.
|
|
34011
|
+
/// @group dropzone
|
|
33943
34012
|
$kendo-dropzone-note-text: $kendo-subtle-text !default;
|
|
33944
34013
|
|
|
33945
34014
|
// #endregion
|
|
@@ -37520,6 +37589,15 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37520
37589
|
*::after {
|
|
37521
37590
|
box-sizing: border-box;
|
|
37522
37591
|
}
|
|
37592
|
+
|
|
37593
|
+
// Card avatar
|
|
37594
|
+
.k-card-avatar,
|
|
37595
|
+
.k-avatar {
|
|
37596
|
+
margin-right: $kendo-card-avatar-spacing;
|
|
37597
|
+
width: $kendo-card-avatar-size;
|
|
37598
|
+
height: $kendo-card-avatar-size;
|
|
37599
|
+
flex-basis: $kendo-card-avatar-size;
|
|
37600
|
+
}
|
|
37523
37601
|
}
|
|
37524
37602
|
.k-card > .k-card-inner {
|
|
37525
37603
|
@include border-radius( $kendo-card-inner-border-radius );
|
|
@@ -37529,11 +37607,9 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37529
37607
|
position: relative;
|
|
37530
37608
|
}
|
|
37531
37609
|
|
|
37532
|
-
|
|
37533
37610
|
// Card orientation
|
|
37534
|
-
.k-card-horizontal
|
|
37535
|
-
.k-card-vertical
|
|
37536
|
-
|
|
37611
|
+
.k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
37612
|
+
.k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
37537
37613
|
|
|
37538
37614
|
// Header
|
|
37539
37615
|
.k-card-header {
|
|
@@ -37590,30 +37666,13 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37590
37666
|
}
|
|
37591
37667
|
}
|
|
37592
37668
|
|
|
37593
|
-
|
|
37594
|
-
// Card avatar
|
|
37595
|
-
.k-card-avatar,
|
|
37596
|
-
.k-card .k-avatar {
|
|
37597
|
-
margin-right: $kendo-card-avatar-spacing;
|
|
37598
|
-
width: $kendo-card-avatar-size;
|
|
37599
|
-
height: $kendo-card-avatar-size;
|
|
37600
|
-
flex-basis: $kendo-card-avatar-size;
|
|
37601
|
-
}
|
|
37602
|
-
|
|
37603
|
-
|
|
37604
|
-
// Card image
|
|
37605
|
-
.k-card-image,
|
|
37669
|
+
// Card media
|
|
37606
37670
|
.k-card-media {
|
|
37607
37671
|
border: 0;
|
|
37608
37672
|
max-width: 100%;
|
|
37609
37673
|
flex-shrink: 0;
|
|
37610
37674
|
overflow: hidden;
|
|
37611
37675
|
|
|
37612
|
-
> img {
|
|
37613
|
-
border: 0;
|
|
37614
|
-
max-width: 100%;
|
|
37615
|
-
}
|
|
37616
|
-
|
|
37617
37676
|
.k-card-horizontal & {
|
|
37618
37677
|
max-width: $kendo-card-img-max-width;
|
|
37619
37678
|
object-fit: cover;
|
|
@@ -37657,22 +37716,23 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37657
37716
|
flex: 0 0 auto;
|
|
37658
37717
|
align-self: stretch;
|
|
37659
37718
|
}
|
|
37660
|
-
|
|
37661
|
-
.k-card-horizontal > .k-card-separator {
|
|
37662
|
-
border-left-width: 1px;
|
|
37663
|
-
}
|
|
37719
|
+
|
|
37664
37720
|
.k-card-separator.k-separator-horizontal,
|
|
37665
37721
|
.k-card-vertical > .k-card-separator {
|
|
37666
37722
|
border-top-width: 1px;
|
|
37667
37723
|
}
|
|
37668
37724
|
|
|
37725
|
+
.k-card-separator.k-separator-vertical,
|
|
37726
|
+
.k-card-horizontal > .k-card-separator {
|
|
37727
|
+
border-left-width: 1px;
|
|
37728
|
+
}
|
|
37729
|
+
|
|
37669
37730
|
.k-card > .k-hr {
|
|
37670
37731
|
margin: 0;
|
|
37671
37732
|
flex: 0 0 auto;
|
|
37672
37733
|
border-color: inherit;
|
|
37673
37734
|
}
|
|
37674
37735
|
|
|
37675
|
-
|
|
37676
37736
|
// Card actions
|
|
37677
37737
|
.k-card-actions {
|
|
37678
37738
|
padding-block: $kendo-card-actions-padding-y;
|
|
@@ -37687,33 +37747,6 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37687
37747
|
gap: $kendo-card-actions-gap;
|
|
37688
37748
|
}
|
|
37689
37749
|
|
|
37690
|
-
|
|
37691
|
-
// Actions align
|
|
37692
|
-
.k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
|
|
37693
|
-
.k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
|
|
37694
|
-
.k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
|
|
37695
|
-
|
|
37696
|
-
|
|
37697
|
-
// Actions orientation
|
|
37698
|
-
.k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
37699
|
-
.k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
37700
|
-
|
|
37701
|
-
|
|
37702
|
-
// Stretched actions
|
|
37703
|
-
.k-card-actions-stretched > * {
|
|
37704
|
-
flex: 1 1 auto;
|
|
37705
|
-
}
|
|
37706
|
-
|
|
37707
|
-
|
|
37708
|
-
// Card action
|
|
37709
|
-
.k-card-action {
|
|
37710
|
-
border-width: 0;
|
|
37711
|
-
border-style: solid;
|
|
37712
|
-
border-color: inherit;
|
|
37713
|
-
display: inline-flex;
|
|
37714
|
-
}
|
|
37715
|
-
|
|
37716
|
-
|
|
37717
37750
|
// List
|
|
37718
37751
|
.k-card-list {
|
|
37719
37752
|
display: flex;
|
|
@@ -37805,9 +37838,6 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37805
37838
|
}
|
|
37806
37839
|
}
|
|
37807
37840
|
|
|
37808
|
-
|
|
37809
|
-
|
|
37810
|
-
|
|
37811
37841
|
// Card with callout
|
|
37812
37842
|
.k-card-with-callout {
|
|
37813
37843
|
overflow: visible;
|
|
@@ -42897,18 +42927,6 @@ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
|
42897
42927
|
height: 0;
|
|
42898
42928
|
border-width: $kendo-dock-manager-border-width 0 0;
|
|
42899
42929
|
}
|
|
42900
|
-
|
|
42901
|
-
// Needed because of a bug in Chrome - Issue 1473554
|
|
42902
|
-
// A fix will be shipped likely in milestone 118 and then we can revisit this
|
|
42903
|
-
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
|
|
42904
|
-
.k-toolbar-button {
|
|
42905
|
-
padding-block: $kendo-button-padding-x;
|
|
42906
|
-
padding-inline: $kendo-button-padding-y;
|
|
42907
|
-
}
|
|
42908
|
-
.k-toolbar-button .k-button-text {
|
|
42909
|
-
writing-mode: vertical-lr;
|
|
42910
|
-
}
|
|
42911
|
-
}
|
|
42912
42930
|
}
|
|
42913
42931
|
|
|
42914
42932
|
// Panes
|
|
@@ -45235,6 +45253,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
45235
45253
|
$_selection-aggregates-padding-x: k-map-get( $size-props, selection-aggregates-padding-x );
|
|
45236
45254
|
$_selection-aggregates-padding-y: k-map-get( $size-props, selection-aggregates-padding-y );
|
|
45237
45255
|
|
|
45256
|
+
.k-grid .k-grid-#{$size},
|
|
45238
45257
|
.k-grid-#{$size} {
|
|
45239
45258
|
|
|
45240
45259
|
.k-table-th {
|
|
@@ -49565,72 +49584,187 @@ $_kendo-module-meta: (
|
|
|
49565
49584
|
|
|
49566
49585
|
// Component
|
|
49567
49586
|
// #region @import "./_variables.scss"; -> scss/filemanager/_variables.scss
|
|
49568
|
-
//
|
|
49587
|
+
// FileManager
|
|
49588
|
+
|
|
49589
|
+
/// The space between the FileManager items.
|
|
49590
|
+
/// @group filemanager
|
|
49569
49591
|
$kendo-file-manager-spacer: k-map-get( $kendo-spacing, 4 ) !default;
|
|
49592
|
+
/// The border width of the FileManager.
|
|
49593
|
+
/// @group filemanager
|
|
49570
49594
|
$kendo-file-manager-border-width: 1px !default;
|
|
49595
|
+
/// The font family of the FileManager.
|
|
49596
|
+
/// @group filemanager
|
|
49571
49597
|
$kendo-file-manager-font-family: $kendo-font-family !default;
|
|
49598
|
+
/// The font size of the FileManager.
|
|
49599
|
+
/// @group filemanager
|
|
49572
49600
|
$kendo-file-manager-font-size: $kendo-font-size-md !default;
|
|
49601
|
+
/// The line height of the FileManager.
|
|
49602
|
+
/// @group filemanager
|
|
49573
49603
|
$kendo-file-manager-line-height: $kendo-line-height-md !default;
|
|
49604
|
+
/// The background color of the FileManager.
|
|
49605
|
+
/// @group filemanager
|
|
49574
49606
|
$kendo-file-manager-bg: $kendo-component-bg !default;
|
|
49607
|
+
/// The text color of the FileManager.
|
|
49608
|
+
/// @group filemanager
|
|
49575
49609
|
$kendo-file-manager-text: $kendo-component-text !default;
|
|
49610
|
+
/// The border color of the FileManager.
|
|
49611
|
+
/// @group filemanager
|
|
49576
49612
|
$kendo-file-manager-border: $kendo-component-border !default;
|
|
49577
49613
|
|
|
49614
|
+
/// The border width of the FileManager Toolbar.
|
|
49615
|
+
/// @group filemanager
|
|
49578
49616
|
$kendo-file-manager-toolbar-border-width: $kendo-file-manager-border-width !default;
|
|
49617
|
+
/// The background color of the FileManager Toolbar.
|
|
49618
|
+
/// @group filemanager
|
|
49579
49619
|
$kendo-file-manager-toolbar-bg: null !default;
|
|
49620
|
+
/// The text color of the FileManager Toolbar.
|
|
49621
|
+
/// @group filemanager
|
|
49580
49622
|
$kendo-file-manager-toolbar-text: null !default;
|
|
49623
|
+
/// The border color of the FileManager Toolbar.
|
|
49624
|
+
/// @group filemanager
|
|
49581
49625
|
$kendo-file-manager-toolbar-border: null !default;
|
|
49626
|
+
/// The gradient of the FileManager Toolbar.
|
|
49627
|
+
/// @group filemanager
|
|
49582
49628
|
$kendo-file-manager-toolbar-gradient: null !default;
|
|
49583
49629
|
|
|
49630
|
+
/// The horizontal padding of the FileManager Navigation.
|
|
49631
|
+
/// @group filemanager
|
|
49584
49632
|
$kendo-file-manager-navigation-padding-x: $kendo-file-manager-spacer !default;
|
|
49633
|
+
/// The vertical padding of the FileManager Navigation.
|
|
49634
|
+
/// @group filemanager
|
|
49585
49635
|
$kendo-file-manager-navigation-padding-y: $kendo-file-manager-spacer !default;
|
|
49636
|
+
/// The width of the FileManager Navigation.
|
|
49637
|
+
/// @group filemanager
|
|
49586
49638
|
$kendo-file-manager-navigation-width: 20% !default;
|
|
49639
|
+
/// The border width of the FileManager Navigation.
|
|
49640
|
+
/// @group filemanager
|
|
49587
49641
|
$kendo-file-manager-navigation-border-width: $kendo-file-manager-border-width !default;
|
|
49642
|
+
/// The background color of the FileManager Navigation.
|
|
49643
|
+
/// @group filemanager
|
|
49588
49644
|
$kendo-file-manager-navigation-bg: null !default;
|
|
49645
|
+
/// The text color of the FileManager Navigation.
|
|
49646
|
+
/// @group filemanager
|
|
49589
49647
|
$kendo-file-manager-navigation-text: null !default;
|
|
49648
|
+
/// The border color of the FileManager Navigation.
|
|
49649
|
+
/// @group filemanager
|
|
49590
49650
|
$kendo-file-manager-navigation-border: null !default;
|
|
49591
49651
|
|
|
49652
|
+
/// The horizontal padding of the FileManager Breadcrumb.
|
|
49653
|
+
/// @group filemanager
|
|
49592
49654
|
$kendo-file-manager-breadcrumb-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
49655
|
+
/// The vertical padding of the FileManager Breadcrumb.
|
|
49656
|
+
/// @group filemanager
|
|
49593
49657
|
$kendo-file-manager-breadcrumb-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
49658
|
+
/// The border width of the FileManager Breadcrumb.
|
|
49659
|
+
/// @group filemanager
|
|
49594
49660
|
$kendo-file-manager-breadcrumb-border-width: $kendo-file-manager-border-width !default;
|
|
49661
|
+
/// The background color of the FileManager Breadcrumb.
|
|
49662
|
+
/// @group filemanager
|
|
49595
49663
|
$kendo-file-manager-breadcrumb-bg: $kendo-toolbar-bg !default;
|
|
49664
|
+
/// The text color of the FileManager Breadcrumb.
|
|
49665
|
+
/// @group filemanager
|
|
49596
49666
|
$kendo-file-manager-breadcrumb-text: null !default;
|
|
49667
|
+
/// The border color of the FileManager Breadcrumb.
|
|
49668
|
+
/// @group filemanager
|
|
49597
49669
|
$kendo-file-manager-breadcrumb-border: null !default;
|
|
49598
49670
|
|
|
49671
|
+
/// The background color of the FileManager ListView.
|
|
49672
|
+
/// @group filemanager
|
|
49599
49673
|
$kendo-file-manager-listview-bg: null !default;
|
|
49674
|
+
/// The text color of the FileManager ListView.
|
|
49675
|
+
/// @group filemanager
|
|
49600
49676
|
$kendo-file-manager-listview-text: null !default;
|
|
49677
|
+
/// The border color of the FileManager ListView.
|
|
49678
|
+
/// @group filemanager
|
|
49601
49679
|
$kendo-file-manager-listview-border: null !default;
|
|
49602
49680
|
|
|
49681
|
+
/// The horizontal padding of the FileManager ListView item.
|
|
49682
|
+
/// @group filemanager
|
|
49603
49683
|
$kendo-file-manager-listview-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
49684
|
+
/// The vertical padding of the FileManager ListView item.
|
|
49685
|
+
/// @group filemanager
|
|
49604
49686
|
$kendo-file-manager-listview-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
49687
|
+
/// The width of the FileManager ListView item.
|
|
49688
|
+
/// @group filemanager
|
|
49605
49689
|
$kendo-file-manager-listview-item-width: 120px !default;
|
|
49690
|
+
/// The height of the FileManager ListView item.
|
|
49691
|
+
/// @group filemanager
|
|
49606
49692
|
$kendo-file-manager-listview-item-height: 120px !default;
|
|
49693
|
+
/// The background color of the FileManager ListView item.
|
|
49694
|
+
/// @group filemanager
|
|
49607
49695
|
$kendo-file-manager-listview-item-bg: null !default;
|
|
49696
|
+
/// The text color of the FileManager ListView item.
|
|
49697
|
+
/// @group filemanager
|
|
49608
49698
|
$kendo-file-manager-listview-item-text: null !default;
|
|
49699
|
+
/// The border color of the FileManager ListView item.
|
|
49700
|
+
/// @group filemanager
|
|
49609
49701
|
$kendo-file-manager-listview-item-border: null !default;
|
|
49610
49702
|
|
|
49703
|
+
/// The background color of the FileManager ListView item icon.
|
|
49704
|
+
/// @group filemanager
|
|
49611
49705
|
$kendo-file-manager-listview-item-icon-bg: null !default;
|
|
49706
|
+
/// The text color of the FileManager ListView item icon.
|
|
49707
|
+
/// @group filemanager
|
|
49612
49708
|
$kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
49709
|
+
/// The border color of the FileManager ListView item icon.
|
|
49710
|
+
/// @group filemanager
|
|
49613
49711
|
$kendo-file-manager-listview-item-icon-border: null !default;
|
|
49712
|
+
/// Background color of the FileManager selected ListView item icon.
|
|
49713
|
+
/// @group filemanager
|
|
49614
49714
|
$kendo-file-manager-listview-item-icon-selected-bg: null !default;
|
|
49715
|
+
/// Text color of the FileManager selected ListView item icon.
|
|
49716
|
+
/// @group filemanager
|
|
49615
49717
|
$kendo-file-manager-listview-item-icon-selected-text: inherit !default;
|
|
49718
|
+
/// Border color of the FileManager selected ListView item icon.
|
|
49719
|
+
/// @group filemanager
|
|
49616
49720
|
$kendo-file-manager-listview-item-icon-selected-border: null !default;
|
|
49617
49721
|
|
|
49722
|
+
/// The background color of the FileManager Grid.
|
|
49723
|
+
/// @group filemanager
|
|
49618
49724
|
$kendo-file-manager-grid-bg: null !default;
|
|
49725
|
+
/// The text color of the FileManager Grid.
|
|
49726
|
+
/// @group filemanager
|
|
49619
49727
|
$kendo-file-manager-grid-text: null !default;
|
|
49728
|
+
/// The border color of the FileManager Grid.
|
|
49729
|
+
/// @group filemanager
|
|
49620
49730
|
$kendo-file-manager-grid-border: null !default;
|
|
49621
49731
|
|
|
49732
|
+
/// The horizontal padding of the FileManager preview.
|
|
49733
|
+
/// @group filemanager
|
|
49622
49734
|
$kendo-file-manager-preview-padding-x: $kendo-file-manager-spacer !default;
|
|
49735
|
+
/// The vertical padding of the FileManager preview.
|
|
49736
|
+
/// @group filemanager
|
|
49623
49737
|
$kendo-file-manager-preview-padding-y: $kendo-file-manager-spacer !default;
|
|
49738
|
+
/// The width of the FileManager preview.
|
|
49739
|
+
/// @group filemanager
|
|
49624
49740
|
$kendo-file-manager-preview-width: 20% !default;
|
|
49741
|
+
/// The border width of the FileManager preview.
|
|
49742
|
+
/// @group filemanager
|
|
49625
49743
|
$kendo-file-manager-preview-border-width: $kendo-file-manager-border-width !default;
|
|
49744
|
+
/// The spacing of the FileManager preview.
|
|
49745
|
+
/// @group filemanager
|
|
49626
49746
|
$kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
|
|
49747
|
+
/// The gap between the columns in the FileManager preview.
|
|
49748
|
+
/// @group filemanager
|
|
49627
49749
|
$kendo-file-manager-preview-column-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
49750
|
+
/// The background color of the FileManager preview.
|
|
49751
|
+
/// @group filemanager
|
|
49628
49752
|
$kendo-file-manager-preview-bg: null !default;
|
|
49753
|
+
/// The text color of the FileManager preview.
|
|
49754
|
+
/// @group filemanager
|
|
49629
49755
|
$kendo-file-manager-preview-text: null !default;
|
|
49756
|
+
/// The border color of the FileManager preview.
|
|
49757
|
+
/// @group filemanager
|
|
49630
49758
|
$kendo-file-manager-preview-border: null !default;
|
|
49631
49759
|
|
|
49760
|
+
/// The background color of the FileManager preview icon.
|
|
49761
|
+
/// @group filemanager
|
|
49632
49762
|
$kendo-file-manager-preview-icon-bg: null !default;
|
|
49763
|
+
/// The text color of the FileManager preview icon.
|
|
49764
|
+
/// @group filemanager
|
|
49633
49765
|
$kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
49766
|
+
/// The border color of the FileManager preview icon.
|
|
49767
|
+
/// @group filemanager
|
|
49634
49768
|
$kendo-file-manager-preview-icon-border: null !default;
|
|
49635
49769
|
|
|
49636
49770
|
// #endregion
|
|
@@ -56340,49 +56474,115 @@ $_kendo-module-meta: (
|
|
|
56340
56474
|
|
|
56341
56475
|
// Component
|
|
56342
56476
|
// #region @import "./_variables.scss"; -> scss/pdf-viewer/_variables.scss
|
|
56343
|
-
//
|
|
56477
|
+
// PDFViewer
|
|
56344
56478
|
|
|
56479
|
+
/// The border width of the PDFViewer.
|
|
56480
|
+
/// @group pdf-viewer
|
|
56345
56481
|
$kendo-pdf-viewer-border-width: 1px !default;
|
|
56482
|
+
/// The font family of the PDFViewer.
|
|
56483
|
+
/// @group pdf-viewer
|
|
56346
56484
|
$kendo-pdf-viewer-font-family: $kendo-font-family !default;
|
|
56485
|
+
/// The font size of the PDFViewer.
|
|
56486
|
+
/// @group pdf-viewer
|
|
56347
56487
|
$kendo-pdf-viewer-font-size: $kendo-font-size-md !default;
|
|
56488
|
+
/// The line height of the PDFViewer.
|
|
56489
|
+
/// @group pdf-viewer
|
|
56348
56490
|
$kendo-pdf-viewer-line-height: $kendo-line-height-md !default;
|
|
56349
56491
|
|
|
56492
|
+
/// The background color of the PDFViewer.
|
|
56493
|
+
/// @group pdf-viewer
|
|
56350
56494
|
$kendo-pdf-viewer-bg: $kendo-component-bg !default;
|
|
56495
|
+
/// The text color of the PDFViewer.
|
|
56496
|
+
/// @group pdf-viewer
|
|
56351
56497
|
$kendo-pdf-viewer-text: $kendo-component-text !default;
|
|
56498
|
+
/// The border color of the PDFViewer.
|
|
56499
|
+
/// @group pdf-viewer
|
|
56352
56500
|
$kendo-pdf-viewer-border: $kendo-component-border !default;
|
|
56353
56501
|
|
|
56502
|
+
/// The background color of the PDFViewer Toolbar.
|
|
56503
|
+
/// @group pdf-viewer
|
|
56354
56504
|
$kendo-pdf-viewer-toolbar-bg: null !default;
|
|
56505
|
+
/// The text color of the PDFViewer Toolbar.
|
|
56506
|
+
/// @group pdf-viewer
|
|
56355
56507
|
$kendo-pdf-viewer-toolbar-text: null !default;
|
|
56508
|
+
/// The border color of the PDFViewer Toolbar.
|
|
56509
|
+
/// @group pdf-viewer
|
|
56356
56510
|
$kendo-pdf-viewer-toolbar-border: null !default;
|
|
56511
|
+
/// The gradient of the PDFViewer Toolbar.
|
|
56512
|
+
/// @group pdf-viewer
|
|
56357
56513
|
$kendo-pdf-viewer-toolbar-gradient: null !default;
|
|
56358
56514
|
|
|
56515
|
+
/// The background color of the PDFViewer canvas.
|
|
56516
|
+
/// @group pdf-viewer
|
|
56359
56517
|
$kendo-pdf-viewer-canvas-bg: $kendo-app-bg !default;
|
|
56518
|
+
/// The text color of the PDFViewer canvas.
|
|
56519
|
+
/// @group pdf-viewer
|
|
56360
56520
|
$kendo-pdf-viewer-canvas-text: null !default;
|
|
56521
|
+
/// The border color of the PDFViewer canvas.
|
|
56522
|
+
/// @group pdf-viewer
|
|
56361
56523
|
$kendo-pdf-viewer-canvas-border: null !default;
|
|
56362
56524
|
|
|
56525
|
+
/// The spacing of the PDFViewer page.
|
|
56526
|
+
/// @group pdf-viewer
|
|
56363
56527
|
$kendo-pdf-viewer-page-spacing: 30px !default;
|
|
56364
56528
|
|
|
56529
|
+
/// The background color of the PDFViewer page.
|
|
56530
|
+
/// @group pdf-viewer
|
|
56365
56531
|
$kendo-pdf-viewer-page-bg: white !default;
|
|
56532
|
+
/// The text color of the PDFViewer page.
|
|
56533
|
+
/// @group pdf-viewer
|
|
56366
56534
|
$kendo-pdf-viewer-page-text: $kendo-component-text !default;
|
|
56535
|
+
/// The border color of the PDFViewer page.
|
|
56536
|
+
/// @group pdf-viewer
|
|
56367
56537
|
$kendo-pdf-viewer-page-border: $kendo-component-border !default;
|
|
56538
|
+
/// The shadow of the PDFViewer page.
|
|
56539
|
+
/// @group pdf-viewer
|
|
56368
56540
|
$kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
|
|
56369
56541
|
|
|
56542
|
+
/// The horizontal padding of the PDFViewer search panel.
|
|
56543
|
+
/// @group pdf-viewer
|
|
56370
56544
|
$kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
|
|
56545
|
+
/// The vertical padding of the PDFViewer search panel.
|
|
56546
|
+
/// @group pdf-viewer
|
|
56371
56547
|
$kendo-pdf-viewer-search-panel-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
56548
|
+
/// The spacing of the PDFViewer search panel.
|
|
56549
|
+
/// @group pdf-viewer
|
|
56372
56550
|
$kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
|
|
56551
|
+
/// The border width of the PDFViewer search panel.
|
|
56552
|
+
/// @group pdf-viewer
|
|
56373
56553
|
$kendo-pdf-viewer-search-panel-border-width: 1px !default;
|
|
56554
|
+
/// The border radius of the PDFViewer search panel.
|
|
56555
|
+
/// @group pdf-viewer
|
|
56374
56556
|
$kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
56557
|
+
/// The background color of the PDFViewer search panel.
|
|
56558
|
+
/// @group pdf-viewer
|
|
56375
56559
|
$kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
|
|
56560
|
+
/// The text color of the PDFViewer search panel.
|
|
56561
|
+
/// @group pdf-viewer
|
|
56376
56562
|
$kendo-pdf-viewer-search-panel-text: $kendo-component-text !default;
|
|
56563
|
+
/// The border color of the PDFViewer search panel.
|
|
56564
|
+
/// @group pdf-viewer
|
|
56377
56565
|
$kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
|
|
56566
|
+
/// The shadow of the PDFViewer search panel.
|
|
56567
|
+
/// @group pdf-viewer
|
|
56378
56568
|
$kendo-pdf-viewer-search-panel-shadow: $kendo-window-shadow !default;
|
|
56569
|
+
/// The spacing of the matches container in the PDFViewer search panel.
|
|
56570
|
+
/// @group pdf-viewer
|
|
56379
56571
|
$kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
|
|
56380
56572
|
|
|
56573
|
+
/// The line height of the PDFViewer selection.
|
|
56574
|
+
/// @group pdf-viewer
|
|
56381
56575
|
$kendo-pdf-viewer-selection-line-height: $kendo-line-height-sm !default;
|
|
56382
56576
|
|
|
56577
|
+
/// The background color of the PDFViewer highlight.
|
|
56578
|
+
/// @group pdf-viewer
|
|
56383
56579
|
$kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
|
|
56580
|
+
/// The background color of the PDFViewer highlight mark.
|
|
56581
|
+
/// @group pdf-viewer
|
|
56384
56582
|
$kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
56385
56583
|
|
|
56584
|
+
/// The text color of the PDFViewer icon.
|
|
56585
|
+
/// @group pdf-viewer
|
|
56386
56586
|
$kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
|
56387
56587
|
|
|
56388
56588
|
// #endregion
|