diff options
author | Christian Hesse <mail@eworm.de> | 2024-08-05 01:25:49 +0300 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-08-17 00:29:06 +0300 |
commit | 1b63a1f4c4b3a4c59210f39eca3e960844f2770c (patch) | |
tree | 29c340aa0cedd7eeadd16f7625a7b16fc8c9c715 /cgit.css | |
parent | 933bdca263d696d337a577f808b2898a6e3ee7ed (diff) |
ui-log: show commit message in tooltip
... now that we have the ellipsis to indicate it is available.
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -687,6 +687,24 @@ div#cgit span.msg-avail { border-radius: 5px; } +div#cgit span.msg-avail span.msg-tooltip { + color: #000; + margin: 0px 0.5em; + padding: 0px 0.25em; + background-color: #f0f0f0; + border: solid 1px #777777; + border-radius: 5px; + box-shadow: 2px 2px 7px rgba(100,100,100,0.75); + visibility: hidden; + position: absolute; + white-space: pre; + z-index: 1; +} + +div#cgit span.msg-avail:hover span.msg-tooltip { + visibility: visible; +} + div#cgit a.branch-deco { color: #000; margin: 0px 0.5em; |