diff core/themes/stable/css/system/components/ajax-progress.module.css @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line diff
--- a/core/themes/stable/css/system/components/ajax-progress.module.css	Thu Feb 28 13:11:55 2019 +0000
+++ b/core/themes/stable/css/system/components/ajax-progress.module.css	Thu May 09 15:34:47 2019 +0100
@@ -11,9 +11,9 @@
   float: right;
 }
 .ajax-progress-throbber .throbber {
-  background: transparent url(../../../images/core/throbber-active.gif) no-repeat 0 center;
   display: inline;
   padding: 1px 5px 2px;
+  background: transparent url(../../../images/core/throbber-active.gif) no-repeat 0 center;
 }
 .ajax-progress-throbber .message {
   display: inline;
@@ -28,22 +28,22 @@
 
 /* Full screen throbber */
 .ajax-progress-fullscreen {
+  position: fixed;
+  z-index: 1000;
+  top: 48.5%;
   /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
   left: 49%; /* LTR */
-  position: fixed;
-  top: 48.5%;
-  z-index: 1000;
+  width: 24px;
+  height: 24px;
+  padding: 4px;
+  opacity: 0.9;
+  border-radius: 7px;
   background-color: #232323;
   background-image: url(../../../images/core/loading-small.gif);
+  background-repeat: no-repeat;
   background-position: center center;
-  background-repeat: no-repeat;
-  border-radius: 7px;
-  height: 24px;
-  opacity: 0.9;
-  padding: 4px;
-  width: 24px;
 }
 [dir="rtl"] .ajax-progress-fullscreen {
+  right: 49%;
   left: auto;
-  right: 49%;
 }