Issue #769936 by fago, Jacine, quicksketch, jenlampton: Fixed .ajax-progress divs floating problem.

8.0.x
catch 2011-12-23 12:31:10 +09:00
parent d9c93a90db
commit ed3c7d8b01
3 changed files with 8 additions and 17 deletions

View File

@ -15,12 +15,6 @@
display: inline; display: inline;
float: none; float: none;
} }
.form-managed-file div.ajax-progress,
.form-managed-file div.throbber {
display: inline;
float: none;
padding: 1px 5px 2px 5px;
}
.form-managed-file div.ajax-progress-bar { .form-managed-file div.ajax-progress-bar {
display: none; display: none;
margin-top: 4px; margin-top: 4px;

View File

@ -27,9 +27,6 @@ html.js input.throbbing {
.ajax-progress { .ajax-progress {
float: right; float: right;
} }
.ajax-progress .throbber {
float: right;
}
/** /**
* TableDrag behavior. * TableDrag behavior.

View File

@ -160,18 +160,18 @@ table.sticky-header {
/* Throbber */ /* Throbber */
.ajax-progress { .ajax-progress {
display: inline-block; display: inline-block;
padding: 1px 5px 2px 5px;
} }
.ajax-progress .throbber { .ajax-progress-throbber .throbber {
background: transparent url(../../misc/throbber.gif) no-repeat 0px -18px; background: transparent url(../../misc/throbber.gif) no-repeat 0px -18px;
float: left; /* LTR */ display: inline;
height: 15px; padding: 1px 5px 2px;
margin: 2px;
width: 15px;
} }
.ajax-progress .message { .ajax-progress-throbber .message {
padding-left: 20px; display: inline;
padding: 1px 5px 2px;
} }
tr .ajax-progress .throbber { tr .ajax-progress-throbber .throbber {
margin: 0 2px; margin: 0 2px;
} }
.ajax-progress-bar { .ajax-progress-bar {