diff options
author | Julien Dessaux | 2025-01-26 00:04:38 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-01-26 00:04:38 +0100 |
commit | 4e029fb83a1e70495330eaac94981a97de24682e (patch) | |
tree | fb041970dcbf38daf06de5034cf6fd567c586069 /pkg/webui/static | |
parent | feat(webui): implement states list (diff) | |
download | tfstated-4e029fb83a1e70495330eaac94981a97de24682e.tar.gz tfstated-4e029fb83a1e70495330eaac94981a97de24682e.tar.bz2 tfstated-4e029fb83a1e70495330eaac94981a97de24682e.zip |
feat(webui): bootstrap a proper UI
Diffstat (limited to 'pkg/webui/static')
-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); } |