diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-03-19 08:58:41 +0000 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-01-11 20:51:17 +0000 |
commit | 0c27ce4aefe14a70a823739d5670604bca9581c4 (patch) | |
tree | fd79f1d137ca2cbb7b0dcc94b7044bc9cb4aeec3 /cgit.css | |
parent | 8a0eaa5204a7360d96c82e6b938424438dddb617 (diff) | |
download | cgit-0c27ce4aefe14a70a823739d5670604bca9581c4.tar cgit-0c27ce4aefe14a70a823739d5670604bca9581c4.tar.gz cgit-0c27ce4aefe14a70a823739d5670604bca9581c4.zip |
Steal kernel.org's libravatar lua.
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -897,3 +897,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); +} |