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: http://core.svn.wordpress.org/trunk@23967 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-04-11 18:06:10 +00:00
parent 280744f555
commit 0253c4d8ae
2 changed files with 11 additions and 5 deletions

View File

@ -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;
}

View File

@ -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 {