diff options
author | Simon Rettberg | 2024-09-12 11:27:34 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-09-12 11:27:34 +0200 |
commit | 8c960784b8c3524a23a3c0a5a33926a3aa887b70 (patch) | |
tree | 7202d67efd1047c051821eab969c220c1083801b /style | |
parent | [rebootcontrol] Only run the Taskmanager check if we got work to do (diff) | |
download | slx-admin-8c960784b8c3524a23a3c0a5a33926a3aa887b70.tar.gz slx-admin-8c960784b8c3524a23a3c0a5a33926a3aa887b70.tar.xz slx-admin-8c960784b8c3524a23a3c0a5a33926a3aa887b70.zip |
[statistics] Extend usage history to 10 days, add pie chart
Diffstat (limited to 'style')
-rw-r--r-- | style/default.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/style/default.css b/style/default.css index 19e1ba08..9e5de615 100644 --- a/style/default.css +++ b/style/default.css @@ -630,4 +630,20 @@ label.disabled { cursor: not-allowed !important; background-color: #eee !important; opacity: 1 !important; -}
\ No newline at end of file +} + +div.sticky-table { + overflow: scroll; + position: relative; +} + +div.sticky-table table { + position: relative; +} + +div.sticky-table table thead { + background: #f8f8f8; + position: sticky; + top: 0; + z-index: 10; +} |