You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2022/07/12 20:52:45 UTC

[incubator-streampipes] 01/02: [hotfix] Minor layout improvement

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch STREAMPIPES-558
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit fe932e50c1e2d288e748a69e34bc199ca8685f27
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Tue Jul 12 18:01:20 2022 +0200

    [hotfix] Minor layout improvement
---
 .../dashboard/components/overview/dashboard-overview.component.css | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/ui/src/app/dashboard/components/overview/dashboard-overview.component.css b/ui/src/app/dashboard/components/overview/dashboard-overview.component.css
index 121e83846..8bd5722e9 100644
--- a/ui/src/app/dashboard/components/overview/dashboard-overview.component.css
+++ b/ui/src/app/dashboard/components/overview/dashboard-overview.component.css
@@ -36,3 +36,10 @@ table {
     display: inline;
     margin-right: 10px;
 }
+
+.mat-row:nth-child(even) {
+    background-color: var(--color-bg-1);
+}
+.mat-row:nth-child(odd) {
+    background-color: var(--color-bg-2);
+}