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.
This commit is contained in:
Sybren A. Stüvel 2022-05-19 16:53:47 +02:00
parent dbd32e56cd
commit 1aed4bf729

View File

@ -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;
}