@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.
@@ -1,8 +1,6 @@
1
1
  @mixin kendo-scrollview--theme-base() {
2
2
 
3
- kendo-scrollview.k-scrollview-wrap,
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
- .k-scrollview-pageable > .k-button {
92
- box-shadow: inset 0 0 2px rgba(0, 0, 0, .08);
82
+ &:hover,
83
+ &.k-hover {
84
+ box-shadow: $kendo-scrollview-pagebutton-shadow;
85
+ }
93
86
  }
94
87
 
95
88
  }
@@ -6,6 +6,7 @@
6
6
  box-sizing: border-box;
7
7
  outline: 0;
8
8
  display: grid;
9
+ padding: $kendo-tile-layout-padding-y $kendo-tile-layout-padding-x;
9
10
  -webkit-touch-callout: none;
10
11
  -webkit-tap-highlight-color: $kendo-color-rgba-transparent;
11
12
 
@@ -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;