commons-shared-web-ui 0.0.4 → 0.0.6

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.
@@ -0,0 +1,25 @@
1
+ @use './components/input/_theme' as input;
2
+ @use './components/dropdown/_theme' as dropdown;
3
+ @use './components/checkbox/_theme' as checkbox;
4
+ @use './components/radio/_theme' as radio;
5
+ @use './components/toggle/_theme' as toggle;
6
+ @use './components/datepicker/_theme' as datepicker;
7
+ @use './components/search/_theme' as search;
8
+
9
+ @forward './components/input/_theme';
10
+ @forward './components/dropdown/_theme';
11
+ @forward './components/checkbox/_theme';
12
+ @forward './components/radio/_theme';
13
+ @forward './components/toggle/_theme';
14
+ @forward './components/datepicker/_theme';
15
+ @forward './components/search/_theme';
16
+
17
+ @mixin form-components-theme() {
18
+ @include input.input-theme();
19
+ @include dropdown.dropdown-theme();
20
+ @include checkbox.checkbox-theme();
21
+ @include radio.radio-theme();
22
+ @include toggle.toggle-theme();
23
+ @include datepicker.datepicker-theme();
24
+ @include search.search-theme();
25
+ }
@@ -22,8 +22,11 @@ $smart-table-theme-defaults: (
22
22
  // Row Colors
23
23
  row-bg: #ffffff,
24
24
  row-hover-bg: #f9f9f9,
25
+ cell-hover-bg: #f0f0f0,
25
26
  row-selected-bg: #f3e5f5,
26
27
 
28
+
29
+
27
30
  // Header Styling
28
31
  header-bg: #f5f5f5,
29
32
  header-color: #333333,
@@ -130,6 +133,7 @@ $smart-table-theme-defaults: (
130
133
  // --- Rows ---
131
134
  --st-row-bg: #{map.get($theme, row-bg)};
132
135
  --st-row-hover-bg: #{map.get($theme, row-hover-bg)};
136
+ --st-cell-hover-bg: #{map.get($theme, cell-hover-bg)};
133
137
  --st-row-selected-bg: #{map.get($theme, row-selected-bg)};
134
138
 
135
139
  // --- Header ---