made mark and bookmark indicators display in consistent order across different views...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2014-02-11 07:07:15 +04:00
parent b3eebd4dc4
commit c893085b60
2 changed files with 4 additions and 4 deletions

View File

@ -628,14 +628,14 @@ button:hover {
box-sizing: border-box; box-sizing: border-box;
border-radius: 50%; border-radius: 50%;
background: blue; background: blue;
left: -15; left: -25;
} }
.marks-visible.single-image-mode.viewer .mark:after { .marks-visible.single-image-mode.viewer .mark:after {
display: none; display: none;
} }
.mark.bookmark:after { .mark.bookmark:after {
background: yellow; background: yellow;
left: -25; left: -15;
} }
/****************************************************** Image info ***/ /****************************************************** Image info ***/
.inline-image-info { .inline-image-info {

View File

@ -708,7 +708,7 @@ button:hover {
background: blue; background: blue;
left: -15; left: -25;
} }
.marks-visible.single-image-mode.viewer .mark:after { .marks-visible.single-image-mode.viewer .mark:after {
display: none; display: none;
@ -716,7 +716,7 @@ button:hover {
.mark.bookmark:after { .mark.bookmark:after {
background: yellow; background: yellow;
left: -25; left: -15;
} }