mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-23 20:54:24 +00:00
Administration: CSS coding standards: use double quotes for values that require quotes.
As per the WordPress CSS coding standards, CSS properties with values that require quotes must use double quotes. Also fixes some indentation and spacing. Fixes #43220. git-svn-id: https://develop.svn.wordpress.org/trunk@42641 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -228,8 +228,8 @@ textarea[readonly] {
|
||||
}
|
||||
|
||||
::-moz-placeholder {
|
||||
color: #72777c;
|
||||
opacity: 1;
|
||||
color: #72777c;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
@@ -252,11 +252,11 @@ textarea[readonly] {
|
||||
|
||||
/* Adjust error indicator for password layout */
|
||||
.form-table .form-required.user-pass1-wrap.form-invalid td:after {
|
||||
content: '';
|
||||
content: "";
|
||||
}
|
||||
|
||||
.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after {
|
||||
content: '\f534';
|
||||
content: "\f534";
|
||||
font: normal 20px/1 dashicons;
|
||||
color: #dc3232;
|
||||
margin: 0 6px 0 -29px;
|
||||
@@ -966,8 +966,8 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
#request-filesystem-credentials-title {
|
||||
font-size: 1.3em;
|
||||
margin: 1em 0;
|
||||
font-size: 1.3em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form legend {
|
||||
@@ -1368,7 +1368,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
@media only screen and (max-height: 480px), screen and (max-width: 450px) {
|
||||
/* Request Credentials / File Editor Warning */
|
||||
/* Request Credentials / File Editor Warning */
|
||||
.request-filesystem-credentials-dialog .notification-dialog,
|
||||
.file-editor-warning .notification-dialog {
|
||||
width: 100%;
|
||||
|
||||
Reference in New Issue
Block a user