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:
Sergey Biryukov 2014-03-11 19:42:14 +00:00
parent c099c5a031
commit 6eb821aa04
6 changed files with 28 additions and 28 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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