@progress/kendo-theme-default 6.6.1-dev.0 → 6.7.0-dev.1
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 +153 -327
- package/dist/all.scss +290 -317
- package/dist/meta/sassdoc-data.json +17889 -14535
- package/dist/meta/sassdoc-raw-data.json +1798 -248
- package/dist/meta/variables.json +92 -28
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/breadcrumb/_layout.scss +28 -13
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/chat/_layout.scss +37 -114
- package/scss/chat/_theme.scss +6 -6
- package/scss/chat/_variables.scss +0 -2
- package/scss/filter/_layout.scss +9 -42
- package/scss/grid/_layout.scss +0 -12
- package/scss/grid/_variables.scss +0 -3
- package/scss/pager/_layout.scss +7 -46
- package/scss/pager/_variables.scss +0 -4
- package/scss/scrollview/_layout.scss +9 -54
- package/scss/scrollview/_theme.scss +5 -12
- package/scss/tilelayout/_layout.scss +1 -0
- package/scss/tilelayout/_variables.scss +8 -0
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
@mixin kendo-scrollview--theme-base() {
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
kendo-scrollview.k-scrollview,
|
|
5
|
-
div.k-scrollview {
|
|
3
|
+
.k-scrollview {
|
|
6
4
|
@include fill(
|
|
7
5
|
$kendo-scrollview-text,
|
|
8
6
|
$kendo-scrollview-bg,
|
|
@@ -67,7 +65,6 @@
|
|
|
67
65
|
}
|
|
68
66
|
|
|
69
67
|
// refactor when https://github.com/telerik/kendo-angular-scrollview/issues/130 is done
|
|
70
|
-
.k-scrollview-pageable > .k-button,
|
|
71
68
|
.k-scrollview-nav > .k-link {
|
|
72
69
|
background: $kendo-scrollview-pagebutton-bg;
|
|
73
70
|
border: $kendo-scrollview-pagebutton-border;
|
|
@@ -81,15 +78,11 @@
|
|
|
81
78
|
&.k-focus {
|
|
82
79
|
@include focus-indicator( $kendo-scrollview-pagebutton-shadow );
|
|
83
80
|
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.k-scrollview-nav > .k-link:hover,
|
|
87
|
-
.k-scrollview-nav > .k-link.k-hover {
|
|
88
|
-
box-shadow: $kendo-scrollview-pagebutton-shadow;
|
|
89
|
-
}
|
|
90
81
|
|
|
91
|
-
|
|
92
|
-
|
|
82
|
+
&:hover,
|
|
83
|
+
&.k-hover {
|
|
84
|
+
box-shadow: $kendo-scrollview-pagebutton-shadow;
|
|
85
|
+
}
|
|
93
86
|
}
|
|
94
87
|
|
|
95
88
|
}
|
|
@@ -7,6 +7,14 @@ $kendo-tile-layout-border-width: 0px !default;
|
|
|
7
7
|
/// @group tilelayout
|
|
8
8
|
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
9
9
|
|
|
10
|
+
/// The horizontal padding of the TileLayout.
|
|
11
|
+
/// @group tilelayout
|
|
12
|
+
$kendo-tile-layout-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
13
|
+
|
|
14
|
+
/// The vertical padding of the TileLayout
|
|
15
|
+
/// @group tilelayout
|
|
16
|
+
$kendo-tile-layout-padding-y: $kendo-tile-layout-padding-x !default;
|
|
17
|
+
|
|
10
18
|
/// The width of the border around the TileLayout card.
|
|
11
19
|
/// @group tilelayout
|
|
12
20
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|