Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-03-19 12:58:41 +0400
committerJason A. Donenfeld <Jason@zx2c4.com>2026-05-05 00:03:58 +0300
commitd73763edd7cf8f594072a00a8da42c35c9822395 (patch)
tree8455dab62511e44b62906592c681dda4997c9e36 /cgit.css
parente11e95a4792f7c18170ee6a449daaea72e936606 (diff)
Steal kernel.org's libravatar lua.
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 d10a24d..1f0edd2 100644
--- a/cgit.css
+++ b/cgit.css
@@ -907,3 +907,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);
+}