@progress/kendo-theme-material 7.0.3-dev.2 → 7.0.3-dev.3
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 +0 -11
- package/dist/all.scss +294 -17
- package/dist/meta/sassdoc-data.json +27311 -19499
- package/dist/meta/sassdoc-raw-data.json +11230 -7630
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +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
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
// Skeleton
|
|
2
|
+
|
|
3
|
+
/// The transform scale of the Skeleton text.
|
|
4
|
+
/// @group skeleton
|
|
2
5
|
$kendo-skeleton-text-transform: scale( 1, .6 ) !default;
|
|
6
|
+
/// The border radius of the Skeleton text.
|
|
7
|
+
/// @group skeleton
|
|
3
8
|
$kendo-skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
4
9
|
|
|
10
|
+
/// The border radius of the rectangular Skeleton.
|
|
11
|
+
/// @group skeleton
|
|
5
12
|
$kendo-skeleton-rect-border-radius: 0 !default;
|
|
6
13
|
|
|
14
|
+
/// The border radius of the circular Skeleton.
|
|
15
|
+
/// @group skeleton
|
|
7
16
|
$kendo-skeleton-circle-border-radius: 9999px !default;
|
|
8
17
|
|
|
18
|
+
/// The background color of the Skeleton item.
|
|
19
|
+
/// @group skeleton
|
|
9
20
|
$kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
|
|
10
|
-
|
|
21
|
+
/// The background color of the Skeleton wave animation.
|
|
22
|
+
/// @group skeleton
|
|
11
23
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|