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

props Ipstenu for initial patch.
fixes #28838.

git-svn-id: https://develop.svn.wordpress.org/trunk@29121 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-07-12 14:51:30 +00:00
parent d97b10eecf
commit 911da56fe8

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 {