mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
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:
parent
2701f3e664
commit
9692f1d577
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user