aboutsummarybugs & patchesrefslogtreecommitdiffstats
path: root/cgit.css
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2024-08-05 00:25:49 +0200
committerChristian Hesse <mail@eworm.de>2025-11-17 21:40:57 +0100
commit69c63b1bc32a10c017a2208cdcbfe855d4037d7d (patch)
tree30129fac170cf9d1ce7857255c04cc9288678377 /cgit.css
parent0aac4ecb76d65081c64856ae64ae0a09b2d03826 (diff)
downloadcgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.gz
cgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.bz2
cgit-69c63b1bc32a10c017a2208cdcbfe855d4037d7d.tar.xz
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.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 1d4634c..092883f 100644
--- a/cgit.css
+++ b/cgit.css
@@ -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;