Fix tags UI issue

Closes https://github.com/TryGhost/Ghost/issues/2491 & #27

- Adjust the widths of the tags wrapper element and move gradient to
the edge of said wrapper
This commit is contained in:
Paul Adam Davis 2014-06-25 14:46:35 +01:00
parent 4af9c41363
commit 6c89e529be
2 changed files with 4 additions and 4 deletions

View File

@ -524,7 +524,7 @@ body.zen {
content: "";
position: fixed;
top: 10px;
right: 270px;
right: 220px;
width: 20px;
height: 26px;
@include linear-gradient(left, rgba(26, 28, 29, 0.00), rgba(26, 28, 29, 1.00));
@ -532,7 +532,7 @@ body.zen {
pointer-events: none;
@media (max-width: 400px) {
right: 161px;
right: 165px;
}
}
@ -542,7 +542,7 @@ body.zen {
vertical-align: middle;
width: auto;
max-width: 80%;
max-width: calc(100% - 320px);
max-width: calc(100% - 250px);
height: 22px;
padding-left: 5px;
padding-bottom: 20px;

File diff suppressed because one or more lines are too long