Mercurial > hg > cmmr2012-drupal-site
comparison 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 |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
9 } | 9 } |
10 [dir="rtl"] .ajax-progress { | 10 [dir="rtl"] .ajax-progress { |
11 float: right; | 11 float: right; |
12 } | 12 } |
13 .ajax-progress-throbber .throbber { | 13 .ajax-progress-throbber .throbber { |
14 background: transparent url(../../../images/core/throbber-active.gif) no-repeat 0 center; | |
15 display: inline; | 14 display: inline; |
16 padding: 1px 5px 2px; | 15 padding: 1px 5px 2px; |
16 background: transparent url(../../../images/core/throbber-active.gif) no-repeat 0 center; | |
17 } | 17 } |
18 .ajax-progress-throbber .message { | 18 .ajax-progress-throbber .message { |
19 display: inline; | 19 display: inline; |
20 padding: 1px 5px 2px; | 20 padding: 1px 5px 2px; |
21 } | 21 } |
26 width: 16em; | 26 width: 16em; |
27 } | 27 } |
28 | 28 |
29 /* Full screen throbber */ | 29 /* Full screen throbber */ |
30 .ajax-progress-fullscreen { | 30 .ajax-progress-fullscreen { |
31 position: fixed; | |
32 z-index: 1000; | |
33 top: 48.5%; | |
31 /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */ | 34 /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */ |
32 left: 49%; /* LTR */ | 35 left: 49%; /* LTR */ |
33 position: fixed; | 36 width: 24px; |
34 top: 48.5%; | 37 height: 24px; |
35 z-index: 1000; | 38 padding: 4px; |
39 opacity: 0.9; | |
40 border-radius: 7px; | |
36 background-color: #232323; | 41 background-color: #232323; |
37 background-image: url(../../../images/core/loading-small.gif); | 42 background-image: url(../../../images/core/loading-small.gif); |
43 background-repeat: no-repeat; | |
38 background-position: center center; | 44 background-position: center center; |
39 background-repeat: no-repeat; | |
40 border-radius: 7px; | |
41 height: 24px; | |
42 opacity: 0.9; | |
43 padding: 4px; | |
44 width: 24px; | |
45 } | 45 } |
46 [dir="rtl"] .ajax-progress-fullscreen { | 46 [dir="rtl"] .ajax-progress-fullscreen { |
47 right: 49%; | |
47 left: auto; | 48 left: auto; |
48 right: 49%; | |
49 } | 49 } |