From cbdb8bd4c9184153c38c56a41be94ddebf2c1adc Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Tue, 6 Aug 2024 00:45:18 +0200 Subject: [PATCH] style: change style of data sources and jobs --- src/main/resources/static/css/style.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css index 03c9b00..33f19ab 100644 --- a/src/main/resources/static/css/style.css +++ b/src/main/resources/static/css/style.css @@ -56,8 +56,12 @@ tr > td:last-of-type { .step > .item { display: inline-block; min-width: 6em; - padding: .4em .4em 2em; - border: 1px solid transparent; + padding: .4em; + + background: white; + border-radius: .4em; + border: 1px solid #ddd; + box-shadow: 1px 1px 2px #ddd; } .step .item:has(.statistics) { @@ -78,10 +82,17 @@ tr > td:last-of-type { display: inline-block; } -.step:first-of-type:before, .step:last-of-type:after { +.step:first-of-type:before { display: none; } +.step:last-of-type:after { + background: linear-gradient(to right, #555 0, #555 50%, transparent 50%, transparent 100%) repeat-x; + background-size: 8px; + + width: 2em; +} + .step .logo { display: block; width: 3em;