@beacon-interactive-systems-llc/beacon-platform-ui 17.11.6 → 17.11.7
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/package.json +1 -1
- package/styles/_tables.scss +10 -0
- package/styles/_widgets.scss +2 -6
- package/styles/styles.scss +4 -0
package/package.json
CHANGED
package/styles/_tables.scss
CHANGED
|
@@ -297,6 +297,16 @@ table.platform-table {
|
|
|
297
297
|
}
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
+
.alternating-row {
|
|
301
|
+
@include themify($platform_table_contrasts) {
|
|
302
|
+
background-color: apply('tableBody');
|
|
303
|
+
|
|
304
|
+
&:nth-child(even) {
|
|
305
|
+
background-color: apply('tableBodyAlt');
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
300
310
|
@mixin status-dot-positioning() {
|
|
301
311
|
font-family: "Material Icons";
|
|
302
312
|
content: "circle";
|
package/styles/_widgets.scss
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
$platform_widget_contrasts: (
|
|
4
4
|
light: (
|
|
5
5
|
widgetText: $beacon-black,
|
|
6
|
-
widgetBackground: $beacon-
|
|
7
|
-
widgetBackgroundSecondary: $beacon-
|
|
6
|
+
widgetBackground: $beacon-white,
|
|
7
|
+
widgetBackgroundSecondary: $beacon-dark-blue-50,
|
|
8
8
|
widgetBackgroundMenu: $beacon-white,
|
|
9
9
|
widgetBorder: $beacon-dark-blue-200,
|
|
10
10
|
widgetHighlight: $beacon-dark-blue-200,
|
|
@@ -58,10 +58,6 @@ $platform_widget_contrasts: (
|
|
|
58
58
|
&.transparent {
|
|
59
59
|
background: transparent !important;
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
&.item-row-widget {
|
|
63
|
-
background: apply('widgetBackgroundSecondary') !important;
|
|
64
|
-
}
|
|
65
61
|
}
|
|
66
62
|
|
|
67
63
|
border-radius: 3px;
|