Skip to content
Snippets Groups Projects
Commit ed3c7d8b authored by catch's avatar catch
Browse files

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

parent d9c93a90
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -15,12 +15,6 @@ ...@@ -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;
......
...@@ -27,9 +27,6 @@ html.js input.throbbing { ...@@ -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.
......
...@@ -160,18 +160,18 @@ table.sticky-header { ...@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment