aboutsummarybugs & patchesrefslogtreecommitdiffstats
path: root/cgit.css
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-03-19 02:58:41 -0600
committerChristian Hesse <mail@eworm.de>2025-11-17 21:40:58 +0100
commit5bc778e53d5c67d66db6407235c1a2d76b40be88 (patch)
tree4f6724d4add42a12d1ae00dc7ab5b3a57899aea5 /cgit.css
parent6f08e89a88f1f09f9eb7b45aa99d4abcc9040ab9 (diff)
downloadcgit-5bc778e53d5c67d66db6407235c1a2d76b40be88.tar.gz
cgit-5bc778e53d5c67d66db6407235c1a2d76b40be88.tar.bz2
cgit-5bc778e53d5c67d66db6407235c1a2d76b40be88.tar.xz
steal kernel.org's libravatar lua
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.css')
-rw-r--r--cgit.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 092883f..dab5977 100644
--- a/cgit.css
+++ b/cgit.css
@@ -934,3 +934,31 @@ div#cgit table.ssdiff td.space {
div#cgit table.ssdiff td.space div {
min-height: 3em;
}
+div#cgit span.libravatar img.onhover {
+ display: none;
+ border: 1px solid gray;
+ padding: 0px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ width: 128px;
+ height: 128px;
+}
+
+div#cgit span.libravatar img.inline {
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ width: 13px;
+ height: 13px;
+ margin-right: 0.2em;
+ opacity: 0.6;
+}
+
+div#cgit span.libravatar:hover > img.onhover {
+ display: block;
+ position: absolute;
+ margin-left: 1.5em;
+ background-color: #eeeeee;
+ box-shadow: 2px 2px 7px rgba(100,100,100,0.75);
+}