fix tag input field

closes #1532
- giving higher priority to css selector for .tag-input in order to override global input-style
- remove padding set by global input-style to align nicely with already set tags
This commit is contained in:
Sebastian Gräßl 2013-11-23 19:45:08 +01:00
parent 2701f3e664
commit 9692f1d577

View File

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