0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #1550 from bastilian/fix_1532

Fix tag input field
This commit is contained in:
Hannah Wolfe 2013-11-23 14:37:30 -08:00
commit ae31304af0

View file

@ -564,15 +564,18 @@ body.zen {
} }
} }
.tag-input { input[type="text"].tag-input {
display: inline-block; display: inline-block;
padding: 0;
vertical-align: top; vertical-align: top;
color: $lightgrey; color: $lightgrey;
font-weight: 300; font-weight: 300;
background: transparent; background: transparent;
border: none; border: none;
&:focus {outline: none;} &:focus {
outline: none;
}
} }
.tag { .tag {