annotate core/modules/system/css/components/ajax-progress.module.css @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children 12f9dff5fda9
rev   line source
Chris@0 1 /**
Chris@0 2 * @file
Chris@0 3 * Throbber.
Chris@0 4 */
Chris@0 5
Chris@0 6 .ajax-progress {
Chris@0 7 display: inline-block;
Chris@0 8 padding: 1px 5px 2px 5px;
Chris@0 9 }
Chris@0 10 [dir="rtl"] .ajax-progress {
Chris@0 11 float: right;
Chris@0 12 }
Chris@0 13 .ajax-progress-throbber .throbber {
Chris@0 14 background: transparent url(../../../../misc/throbber-active.gif) no-repeat 0 center;
Chris@0 15 display: inline;
Chris@0 16 padding: 1px 5px 2px;
Chris@0 17 }
Chris@0 18 .ajax-progress-throbber .message {
Chris@0 19 display: inline;
Chris@0 20 padding: 1px 5px 2px;
Chris@0 21 }
Chris@0 22 tr .ajax-progress-throbber .throbber {
Chris@0 23 margin: 0 2px;
Chris@0 24 }
Chris@0 25 .ajax-progress-bar {
Chris@0 26 width: 16em;
Chris@0 27 }
Chris@0 28
Chris@0 29 /* Full screen throbber */
Chris@0 30 .ajax-progress-fullscreen {
Chris@0 31 /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
Chris@0 32 left: 49%; /* LTR */
Chris@0 33 position: fixed;
Chris@0 34 top: 48.5%;
Chris@0 35 z-index: 1000;
Chris@0 36 background-color: #232323;
Chris@0 37 background-image: url(../../../../misc/loading-small.gif);
Chris@0 38 background-position: center center;
Chris@0 39 background-repeat: no-repeat;
Chris@0 40 border-radius: 7px;
Chris@0 41 height: 24px;
Chris@0 42 opacity: 0.9;
Chris@0 43 padding: 4px;
Chris@0 44 width: 24px;
Chris@0 45 }
Chris@0 46 [dir="rtl"] .ajax-progress-fullscreen {
Chris@0 47 left: auto;
Chris@0 48 right: 49%;
Chris@0 49 }