2
0
mirror of https://github.com/janeczku/calibre-web synced 2024-11-10 01:13:33 +00:00

fix standard theme badges so that they stand on top left corner instead of top right: each element's width in the list seems to be double the size of the image, so right alignment gets tricky. https://github.com/janeczku/calibre-web/pull/986#issuecomment-517999218 suggests top-left alignment which does make a lot of sense. Using this for now. Maintainer might have a better idea to fix it

This commit is contained in:
pthiben 2020-04-18 20:36:27 -04:00
parent 1e3a948977
commit 5222e157cb

View File

@ -66,8 +66,8 @@ span.glyphicon.glyphicon-tags {padding-right: 5px;color: #999;vertical-align: te
.cover { margin-bottom: 10px;} .cover { margin-bottom: 10px;}
.cover .badge{ .cover .badge{
position: absolute; position: absolute;
top: 10px; top: 2px;
right: 10px; left: 2px;
background-color: #45b29d; background-color: #45b29d;
} }
.cover-height { max-height: 100px;} .cover-height { max-height: 100px;}