Coding Standards: Apply coding standards on CSS.
Remove units when the value is zero. Combine redundant values in shorthand declarations. This was generated with `stylelint --fix` and a custom config (see #53866). Props ankitmaru, audrasjb, pbiron, ayeshrajans, hareesh-pillai, netweb, mukesh27. Fixes #53866. Built from https://develop.svn.wordpress.org/trunk@51727 git-svn-id: http://core.svn.wordpress.org/trunk@51333 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -33,7 +33,7 @@ select {
|
||||
}
|
||||
|
||||
textarea.code {
|
||||
padding: 4px 6px 1px 6px;
|
||||
padding: 4px 6px 1px;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
@@ -1000,8 +1000,8 @@ table.form-table td .updated p {
|
||||
|
||||
.pressthis-bookmarklet span {
|
||||
display: inline-block;
|
||||
margin: 0px 0 0;
|
||||
padding: 0px 9px 8px 12px;
|
||||
margin: 0;
|
||||
padding: 0 9px 8px 12px;
|
||||
}
|
||||
|
||||
.pressthis-bookmarklet span:before {
|
||||
@@ -1226,7 +1226,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form .notice {
|
||||
margin: 0 0 20px 0;
|
||||
margin: 0 0 20px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
@@ -1563,13 +1563,13 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
padding: 10px 0 0 0;
|
||||
padding: 10px 0 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 0;
|
||||
padding: 4px 0 6px 0;
|
||||
padding: 4px 0 6px;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
|
||||
Reference in New Issue
Block a user