@progress/kendo-theme-bootstrap 10.1.0-dev.1 → 10.1.0-dev.2
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 +1 -1
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +76 -76
- package/dist/meta/sassdoc-raw-data.json +10 -10
- package/dist/meta/variables.json +28 -28
- 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 +5 -5
- package/scss/gridlayout/_index.scss +19 -0
- package/scss/gridlayout/_layout.scss +5 -0
- package/scss/gridlayout/_theme.scss +5 -0
- package/scss/gridlayout/_variables.scss +1 -0
- package/scss/index.scss +10 -52
- package/scss/stacklayout/_index.scss +19 -0
- package/scss/stacklayout/_layout.scss +6 -0
- package/scss/stacklayout/_theme.scss +6 -0
- package/scss/stacklayout/_variables.scss +1 -0
- package/scss/typography/_variables.scss +10 -10
|
@@ -26,22 +26,22 @@ $kendo-h6-font-size: $kendo-font-size !default;
|
|
|
26
26
|
|
|
27
27
|
/// The font family of the highest level heading.
|
|
28
28
|
/// @group typography
|
|
29
|
-
$kendo-h1-font-family:
|
|
29
|
+
$kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
|
|
30
30
|
/// The font family of the second highest level heading.
|
|
31
31
|
/// @group typography
|
|
32
|
-
$kendo-h2-font-family:
|
|
32
|
+
$kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
|
|
33
33
|
/// The font family of the third highest level heading.
|
|
34
34
|
/// @group typography
|
|
35
|
-
$kendo-h3-font-family:
|
|
35
|
+
$kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
|
|
36
36
|
/// The font family of the fourth highest level heading.
|
|
37
37
|
/// @group typography
|
|
38
|
-
$kendo-h4-font-family:
|
|
38
|
+
$kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
|
|
39
39
|
/// The font family of the fifth highest level heading.
|
|
40
40
|
/// @group typography
|
|
41
|
-
$kendo-h5-font-family:
|
|
41
|
+
$kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
|
|
42
42
|
/// The font family of the sixth highest level heading.
|
|
43
43
|
/// @group typography
|
|
44
|
-
$kendo-h6-font-family:
|
|
44
|
+
$kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
|
|
45
45
|
|
|
46
46
|
/// The line height of the highest level heading.
|
|
47
47
|
/// @group typography
|
|
@@ -258,16 +258,16 @@ $kendo-display4-font-size: calc( #{$kendo-font-size} * 3.5 ) !default;
|
|
|
258
258
|
|
|
259
259
|
/// The font family of the largest display text.
|
|
260
260
|
/// @group typography
|
|
261
|
-
$kendo-display1-font-family:
|
|
261
|
+
$kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
|
|
262
262
|
/// The font family of the second largest display text.
|
|
263
263
|
/// @group typography
|
|
264
|
-
$kendo-display2-font-family:
|
|
264
|
+
$kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
|
|
265
265
|
/// The font family of the third largest display text.
|
|
266
266
|
/// @group typography
|
|
267
|
-
$kendo-display3-font-family:
|
|
267
|
+
$kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
|
|
268
268
|
/// The font family of the fourth largest display text.
|
|
269
269
|
/// @group typography
|
|
270
|
-
$kendo-display4-font-family:
|
|
270
|
+
$kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
|
|
271
271
|
|
|
272
272
|
/// The line height of the largest display text.
|
|
273
273
|
/// @group typography
|