Avoid unintentional overriding of .spinner styles for HiDPI displays.
props mauryaratan for initial patch. fixes #27269. Built from https://develop.svn.wordpress.org/trunk@27504 git-svn-id: http://core.svn.wordpress.org/trunk@27347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c099c5a031
commit
6eb821aa04
|
@ -1545,6 +1545,19 @@ h2 .nav-tab {
|
|||
26.0 - Misc
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.spinner {
|
||||
background: url(../images/spinner.gif) no-repeat;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
display: none;
|
||||
float: left;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 2px 5px 0;
|
||||
}
|
||||
|
||||
#template div {
|
||||
margin-left: 190px;
|
||||
}
|
||||
|
|
|
@ -1545,6 +1545,19 @@ h2 .nav-tab {
|
|||
26.0 - Misc
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.spinner {
|
||||
background: url(../images/spinner.gif) no-repeat;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
display: none;
|
||||
float: right;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 2px 5px 0;
|
||||
}
|
||||
|
||||
#template div {
|
||||
margin-right: 190px;
|
||||
}
|
||||
|
|
|
@ -493,19 +493,6 @@ td.imgedit-settings input {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
background: url(../images/spinner.gif) no-repeat;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
display: none;
|
||||
float: left;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 2px 5px 0;
|
||||
}
|
||||
|
||||
.no-float {
|
||||
float: none;
|
||||
}
|
||||
|
|
|
@ -493,19 +493,6 @@ td.imgedit-settings input {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
background: url(../images/spinner.gif) no-repeat;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
display: none;
|
||||
float: right;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 2px 5px 0;
|
||||
}
|
||||
|
||||
.no-float {
|
||||
float: none;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue