addons.scss
9 years ago
blank-slate.scss
8 years ago
buttons.scss
9 years ago
dashboard.scss
10 years ago
donors.scss
8 years ago
fonts.scss
9 years ago
forms.scss
8 years ago
give-admin.scss
8 years ago
grids.scss
8 years ago
importer.scss
8 years ago
logs.scss
10 years ago
payment-history.scss
8 years ago
reports.scss
8 years ago
settings.scss
8 years ago
shortcodes.scss
9 years ago
system-info.scss
8 years ago
updates.scss
8 years ago
util.scss
8 years ago
welcome.scss
9 years ago
util.scss
77 lines
| 1 | //--------------------------------------------------------- |
| 2 | //Progress Bar Styles |
| 3 | //--------------------------------------------------------- |
| 4 | .give-progress { |
| 5 | height: 15px; |
| 6 | width: 95%; |
| 7 | border-radius: 4px; |
| 8 | overflow: hidden; |
| 9 | background-color: whitesmoke; |
| 10 | |
| 11 | > div { |
| 12 | height: 100%; |
| 13 | width: 0; |
| 14 | } |
| 15 | |
| 16 | } |
| 17 | |
| 18 | .admin-color-fresh .give-progress div, .give-progress div { |
| 19 | background: #0073aa; |
| 20 | } |
| 21 | |
| 22 | .admin-color-light .give-progress div { |
| 23 | background: #888; |
| 24 | } |
| 25 | |
| 26 | .admin-color-blue .give-progress div { |
| 27 | background: #096484; |
| 28 | } |
| 29 | |
| 30 | .admin-color-coffee .give-progress div { |
| 31 | background: #c7a589; |
| 32 | } |
| 33 | |
| 34 | .admin-color-ectoplasm .give-progress div { |
| 35 | background: #a3b745; |
| 36 | } |
| 37 | |
| 38 | .admin-color-midnight .give-progress div { |
| 39 | background: #e14d43; |
| 40 | } |
| 41 | |
| 42 | .admin-color-sunrise .give-progress div { |
| 43 | background: #dd823b; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | /** |
| 48 | * Spinner |
| 49 | */ |
| 50 | .give-spinner-wrapper{ |
| 51 | position: absolute; |
| 52 | left: 0; |
| 53 | right: 0; |
| 54 | bottom: 0; |
| 55 | top: 0; |
| 56 | background: rgba(245, 245, 245, 0.57); |
| 57 | z-index: 1; |
| 58 | display: none; |
| 59 | |
| 60 | &.is-active{ |
| 61 | display: inline-block; |
| 62 | } |
| 63 | |
| 64 | .aligncenter{ |
| 65 | position: absolute; |
| 66 | top: 50%; |
| 67 | left: 50%; |
| 68 | margin: 10px 10px 0 0; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | .give-spinner { |
| 73 | &.spinner.is-active{ |
| 74 | margin: 0 0 0 2px; |
| 75 | float: none; |
| 76 | } |
| 77 | } |