aboutsummaryrefslogtreecommitdiffstats
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>2024-11-25 10:05:37 +0100
commite4d1e9cae04ccc0c575053f99b8c9c16fb9e3a88 (patch)
treed921c8bcece3f5d35cc942a4e1e9fe39aa6a79fa /cgit.css
parent60bcfac1fb66fc94df4b7395d5749da90413acb6 (diff)
downloadcgit-e4d1e9cae04ccc0c575053f99b8c9c16fb9e3a88.tar.gz
cgit-e4d1e9cae04ccc0c575053f99b8c9c16fb9e3a88.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;