mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@51727 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -623,7 +623,7 @@ div.mce-path {
|
||||
div.mce-menubar {
|
||||
border-color: #dcdcde;
|
||||
background: #fff;
|
||||
border-width: 0px 0px 1px;
|
||||
border-width: 0 0 1px;
|
||||
}
|
||||
|
||||
.mce-menubar .mce-menubtn:hover,
|
||||
@@ -643,7 +643,7 @@ div.mce-menubar {
|
||||
div.mce-menu .mce-menu-item-sep,
|
||||
.mce-menu-item-sep:hover {
|
||||
border-bottom: 1px solid #dcdcde;
|
||||
height: 0px;
|
||||
height: 0;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -1394,7 +1394,7 @@
|
||||
top: 50%;
|
||||
left: 15%;
|
||||
width: 70%;
|
||||
margin: -5px 0 0 0;
|
||||
margin: -5px 0 0;
|
||||
}
|
||||
|
||||
.media-uploader-status {
|
||||
@@ -1976,7 +1976,7 @@
|
||||
}
|
||||
|
||||
.media-modal .imgedit-wrap .imgedit-panel-content {
|
||||
padding: 16px 16px 0 16px;
|
||||
padding: 16px 16px 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 282px;
|
||||
@@ -2289,7 +2289,7 @@
|
||||
|
||||
.image-details .custom-size .sep {
|
||||
float: left;
|
||||
margin: 26px 6px 0 6px;
|
||||
margin: 26px 6px 0;
|
||||
}
|
||||
|
||||
.image-details .custom-size .description {
|
||||
@@ -2428,7 +2428,7 @@
|
||||
float: left;
|
||||
width: 25%;
|
||||
text-align: right;
|
||||
margin: 8px 1% 0 1%;
|
||||
margin: 8px 1% 0;
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
@@ -2625,7 +2625,7 @@
|
||||
|
||||
.media-sidebar .setting,
|
||||
.attachment-details .setting {
|
||||
margin: 6px 0px;
|
||||
margin: 6px 0;
|
||||
}
|
||||
|
||||
.media-sidebar .setting input,
|
||||
@@ -2919,7 +2919,7 @@
|
||||
|
||||
/* Change margin direction on load more button in responsive views. */
|
||||
.load-more-wrapper .load-more-jump {
|
||||
margin: 12px 0 0 0;
|
||||
margin: 12px 0 0;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2933,7 +2933,7 @@
|
||||
|
||||
/* Change margin direction on load more button in responsive views. */
|
||||
.load-more-wrapper .load-more-jump {
|
||||
margin: 12px 0 0 0;
|
||||
margin: 12px 0 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -301,7 +301,7 @@ p.wp-embed-share-description {
|
||||
width: 100%;
|
||||
border: none;
|
||||
height: 28px;
|
||||
margin: 0 0 10px 0;
|
||||
margin: 0 0 10px;
|
||||
padding: 0 5px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
top: 0;
|
||||
border-width: 0 13px 13px 13px;
|
||||
border-width: 0 13px 13px;
|
||||
border-bottom-color: #2271b1;
|
||||
}
|
||||
|
||||
@@ -157,7 +157,7 @@
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
border-width: 13px 13px 0 13px;
|
||||
border-width: 13px 13px 0;
|
||||
border-top-color: #c3c4c7;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user