Network Admin: Improve width of input fields on Add New Site and Edit Site screens.

props honeysilvas.
fixes #16383.
Built from https://develop.svn.wordpress.org/trunk@30578


git-svn-id: http://core.svn.wordpress.org/trunk@30568 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling
2014-11-26 19:51:23 +00:00
parent 3a4f742175
commit 184d327ff4
9 changed files with 92 additions and 20 deletions

View File

@@ -775,6 +775,30 @@ table.form-table td .updated p {
vertical-align: middle;
}
/*------------------------------------------------------------------------------
21.0 - Network Admin
------------------------------------------------------------------------------*/
.form-field #site-address {
max-width: 25em;
}
.form-field #domain {
max-width: 22em;
}
.form-field #site-title,
.form-field #admin-email,
.form-field #path,
.form-field #blog_registered,
.form-field #blog_last_updated {
max-width: 25em;
}
.form-field #path {
margin-bottom: 5px;
}
/* =Media Queries
-------------------------------------------------------------- */
@@ -784,8 +808,11 @@ table.form-table td .updated p {
-webkit-appearance: none;
}
input[type=text], input[type="search"],
input[type=password], input[type="number"] {
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"] {
-webkit-appearance: none;
padding: 6px 10px;
}
@@ -874,6 +901,7 @@ table.form-table td .updated p {
}
.form-table td input[type="text"],
.form-table td input[type="email"],
.form-table td input[type="password"],
.form-table td select,
.form-table td textarea,
@@ -976,10 +1004,17 @@ table.form-table td .updated p {
padding: 0;
line-height: 2;
}
.form-field #domain {
max-width: none;
}
}
@media only screen and (max-width: 768px) {
.form-field input,
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field select,
.form-field textarea {
width: 99%;
}