Twenty Thirteen: improve comment label selectors and nudge up their width a bit to account for non-English installs. Props obenland for initial patch, fixes #24039.
git-svn-id: https://develop.svn.wordpress.org/trunk@23967 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c25cac4dd6
commit
37842118d2
@ -663,7 +663,10 @@ div.nav-menu > ul {
|
||||
content: normal;
|
||||
}
|
||||
|
||||
#commentform label {
|
||||
#commentform [for="author"],
|
||||
#commentform [for="email"],
|
||||
#commentform [for="url"],
|
||||
#commentform [for="comment"] {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
@ -2454,10 +2454,13 @@ footer.entry-meta {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
#commentform label {
|
||||
#commentform [for="author"],
|
||||
#commentform [for="email"],
|
||||
#commentform [for="url"],
|
||||
#commentform [for="comment"] {
|
||||
float: left;
|
||||
padding: 5px 0;
|
||||
width: 100px;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
#commentform .required {
|
||||
@ -3113,8 +3116,8 @@ footer.entry-meta {
|
||||
#commentform input[type="text"],
|
||||
#commentform input[type="email"],
|
||||
#commentform input[type="url"] {
|
||||
width: -webkit-calc(100% - 100px);
|
||||
width: calc(100% - 100px);
|
||||
width: -webkit-calc(100% - 120px);
|
||||
width: calc(100% - 120px);
|
||||
}
|
||||
|
||||
#commentform textarea {
|
||||
|
Loading…
Reference in New Issue
Block a user