_category-buttons.scss
3 weeks ago
_controls.scss
1 year ago
_custom-tooltip.scss
2 years ago
_editor-selector.scss
2 years ago
_error.scss
2 years ago
_features_list.scss
1 year ago
_filters.scss
3 weeks ago
_form.scss
2 years ago
_general.scss
2 weeks ago
_header.scss
2 years ago
_import.scss
2 years ago
_media-queries.scss
2 years ago
_mock.scss
2 years ago
_progress-bar.scss
2 years ago
_search.scss
2 years ago
_site-settings.scss
1 year ago
_starter-site-card.scss
2 weeks ago
_toast.scss
2 weeks ago
_vars.scss
2 years ago
_mock.scss
58 lines
| 1 | .fetching { |
| 2 | .is-loading { |
| 3 | border-radius: 3px; |
| 4 | animation: 1.5s loading-placeholder ease-in-out infinite; |
| 5 | background-color: $dark-bg; |
| 6 | height: 20px; |
| 7 | |
| 8 | &.button { |
| 9 | background-color: #007cba; |
| 10 | height: 39px; |
| 11 | width: 100%; |
| 12 | } |
| 13 | |
| 14 | &.link { |
| 15 | width: 100px; |
| 16 | background-color: #007cba; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | .top-link { |
| 21 | background: $primary; |
| 22 | } |
| 23 | .title { |
| 24 | width: 200px; |
| 25 | display: block; |
| 26 | } |
| 27 | |
| 28 | .revert { |
| 29 | width: 35px; |
| 30 | height: 35px; |
| 31 | background: $primary; |
| 32 | } |
| 33 | |
| 34 | .description { |
| 35 | width: 100%; |
| 36 | } |
| 37 | |
| 38 | .ob-settings-bottom button { |
| 39 | width: 100%; |
| 40 | height: 55px; |
| 41 | border: none; |
| 42 | background-color: $primary; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | @keyframes loading-placeholder { |
| 47 | 0% { |
| 48 | opacity: .1; |
| 49 | } |
| 50 | |
| 51 | 50% { |
| 52 | opacity: .2; |
| 53 | } |
| 54 | |
| 55 | 100% { |
| 56 | opacity: .1; |
| 57 | } |
| 58 | } |