diff options
Diffstat (limited to '')
-rw-r--r-- | pkg/webui/static/main.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pkg/webui/static/main.css b/pkg/webui/static/main.css index a2472b7..f0fe350 100644 --- a/pkg/webui/static/main.css +++ b/pkg/webui/static/main.css @@ -1,3 +1,9 @@ -.error-message { - color:red; +.clickable-rows tbody a { + display: block; + padding: 0 1em 0; + text-decoration: none; + transition: all 0.25s ease-out; +} +.clickable-rows tbody tr:hover a { + background-color: var(--secondary-container); } |