Improve styling of progress bar on wp-admin/media-new.php.

props Ipstenu for initial patch.
fixes #28838.
Built from https://develop.svn.wordpress.org/trunk@29121


git-svn-id: http://core.svn.wordpress.org/trunk@28906 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2014-07-12 14:52:15 +00:00
parent fabec026c2
commit 53aa80baa8
4 changed files with 12 additions and 12 deletions

View File

@ -133,6 +133,7 @@
.media-item .filename { .media-item .filename {
line-height: 36px; line-height: 36px;
overflow: hidden; overflow: hidden;
margin-right: 6px;
} }
.media-item .error-div { .media-item .error-div {
@ -159,17 +160,16 @@
.media-item .progress { .media-item .progress {
float: left; float: left;
height: 22px; height: 22px;
margin: 7px 0 0; margin: 7px 6px;
width: 200px; width: 200px;
line-height: 2em; line-height: 2em;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
margin-bottom: 2px;
-webkit-border-radius: 22px; -webkit-border-radius: 22px;
border-radius: 22px; border-radius: 22px;
background: #ddd; background: #ddd;
-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
} }
.media-item .bar { .media-item .bar {
@ -193,7 +193,7 @@
text-align: center; text-align: center;
line-height: 22px; line-height: 22px;
font-weight: 400; font-weight: 400;
text-shadow: 0px 1px 2px rgba(0,0,0,0.2); text-shadow: 0 1px 2px rgba(0,0,0,0.2);
} }
.upload-php .fixed .column-parent { .upload-php .fixed .column-parent {

View File

@ -133,6 +133,7 @@
.media-item .filename { .media-item .filename {
line-height: 36px; line-height: 36px;
overflow: hidden; overflow: hidden;
margin-left: 6px;
} }
.media-item .error-div { .media-item .error-div {
@ -159,17 +160,16 @@
.media-item .progress { .media-item .progress {
float: right; float: right;
height: 22px; height: 22px;
margin: 7px 0 0; margin: 7px 6px;
width: 200px; width: 200px;
line-height: 2em; line-height: 2em;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
margin-bottom: 2px;
-webkit-border-radius: 22px; -webkit-border-radius: 22px;
border-radius: 22px; border-radius: 22px;
background: #ddd; background: #ddd;
-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
} }
.media-item .bar { .media-item .bar {
@ -193,7 +193,7 @@
text-align: center; text-align: center;
line-height: 22px; line-height: 22px;
font-weight: 400; font-weight: 400;
text-shadow: 0px 1px 2px rgba(0,0,0,0.2); text-shadow: 0 1px 2px rgba(0,0,0,0.2);
} }
.upload-php .fixed .column-parent { .upload-php .fixed .column-parent {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long