annotate core/modules/system/css/components/ajax-progress.module.css @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
children
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 display: inline;
Chris@0 15 padding: 1px 5px 2px;
Chris@18 16 background: transparent url(../../../../misc/throbber-active.gif) no-repeat 0 center;
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@18 31 position: fixed;
Chris@18 32 z-index: 1000;
Chris@18 33 top: 48.5%;
Chris@0 34 /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
Chris@0 35 left: 49%; /* LTR */
Chris@18 36 width: 24px;
Chris@18 37 height: 24px;
Chris@18 38 padding: 4px;
Chris@18 39 opacity: 0.9;
Chris@18 40 border-radius: 7px;
Chris@0 41 background-color: #232323;
Chris@0 42 background-image: url(../../../../misc/loading-small.gif);
Chris@18 43 background-repeat: no-repeat;
Chris@0 44 background-position: center center;
Chris@0 45 }
Chris@0 46 [dir="rtl"] .ajax-progress-fullscreen {
Chris@18 47 right: 49%;
Chris@0 48 left: auto;
Chris@0 49 }