From 1aed4bf729f8a24c4b1d2bf75c1325c5b65f2578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 19 May 2022 16:53:47 +0200 Subject: [PATCH] Web: nicer styling for notification history placeholder The `user-select: none` mirrors the 'hint text' in the columns when there is no active job/task. --- web/app/src/assets/base.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 54dd0bf5..0d2f82bf 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -413,3 +413,10 @@ section.footer-popup .tabulator-tableholder { * horizontal scrollbar as well. */ overflow-y: scroll; } + +section.footer-popup .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents { + font-size: var(--font-size); + font-weight: normal; + color: var(--color-text-hint); + user-select: none; +}