Improved input alignment in forms
This commit is contained in:
parent
2ccb7f3534
commit
aca551038f
2 changed files with 9 additions and 11 deletions
|
@ -274,9 +274,9 @@ input[type=radio],
|
||||||
input[type=checkbox] {
|
input[type=checkbox] {
|
||||||
width: auto;
|
width: auto;
|
||||||
max-width: auto;
|
max-width: auto;
|
||||||
margin: 0 10px 0 0;
|
margin: auto 10px auto 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
vertical-align: middle;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
@ -300,6 +300,8 @@ button:hover {
|
||||||
.input-wrapper {
|
.input-wrapper {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: block;
|
display: block;
|
||||||
|
line-height: 30px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.tagit,
|
ul.tagit,
|
||||||
|
@ -321,13 +323,15 @@ ul.tagit {
|
||||||
}
|
}
|
||||||
ul.tagit li.tagit-new {
|
ul.tagit li.tagit-new {
|
||||||
padding: 1px 0 !important;
|
padding: 1px 0 !important;
|
||||||
|
line-height: normal !important;
|
||||||
}
|
}
|
||||||
ul.tagit li.tagit-choice {
|
ul.tagit li.tagit-choice {
|
||||||
padding: 1px 20px 1px 5px !important;
|
padding: 1px 20px 1px 5px !important;
|
||||||
|
line-height: normal !important;
|
||||||
}
|
}
|
||||||
ul.tagit input {
|
ul.tagit input {
|
||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
line-height: auto !important;
|
line-height: normal !important;
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
}
|
}
|
||||||
|
@ -335,8 +339,8 @@ ul.tagit input {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background: rgba(255,255,255,0.7);
|
background: rgba(255,255,255,0.7);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin: 0.4em 0 0.2em 0;
|
|
||||||
font-size: 95%;
|
font-size: 95%;
|
||||||
|
line-height: 180%;
|
||||||
}
|
}
|
||||||
.related-tags ul {
|
.related-tags ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
|
|
@ -124,13 +124,7 @@
|
||||||
margin: 0 auto 1em auto;
|
margin: 0 auto 1em auto;
|
||||||
}
|
}
|
||||||
#post-edit-form .file-name strong {
|
#post-edit-form .file-name strong {
|
||||||
overflow: hidden;
|
vertical-align: middle;
|
||||||
text-overflow: ellipsis;
|
|
||||||
max-width: 100%;
|
|
||||||
white-space: pre;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: text-bottom;
|
|
||||||
line-height: 30px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue