_card.scss
5 years ago
_custom-tooltip.scss
3 years ago
_demo-site-templates.scss
5 years ago
_docnotice.scss
2 years ago
_editor-selector.scss
2 years ago
_editor-tabs.scss
4 years ago
_feedback.scss
2 years ago
_general.scss
3 years ago
_header.scss
3 years ago
_import-modal.scss
3 years ago
_library.scss
2 years ago
_license.scss
3 years ago
_media-queries.scss
4 years ago
_mock.scss
5 years ago
_new-tc-notice.scss
1 year ago
_notification.scss
4 years ago
_preview.scss
5 years ago
_search.scss
4 years ago
_settings.scss
2 years ago
_starter-site-card.scss
4 years ago
_stepper.scss
3 years ago
_sticky-nav.scss
5 years ago
_vars.scss
5 years ago
_stepper.scss
58 lines
| 1 | .ob-import-modal .stepper { |
| 2 | li { |
| 3 | display: flex; |
| 4 | align-items: center; |
| 5 | margin-bottom: 20px; |
| 6 | font-size: 14px; |
| 7 | |
| 8 | .icon { |
| 9 | margin-right: 20px; |
| 10 | background-color: $blue; |
| 11 | color: #fff; |
| 12 | padding: 5px; |
| 13 | border-radius: 100%; |
| 14 | line-height: 14px; |
| 15 | |
| 16 | .dashicon { |
| 17 | font-size: 14px; |
| 18 | width: 14px; |
| 19 | height: 14px; |
| 20 | } |
| 21 | |
| 22 | &.success { |
| 23 | background-color: $success; |
| 24 | |
| 25 | svg { |
| 26 | right: 1px; |
| 27 | position: relative; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | &.warning { |
| 32 | background-color: $warning; |
| 33 | } |
| 34 | |
| 35 | &.error { |
| 36 | background-color: $error; |
| 37 | } |
| 38 | |
| 39 | &.skip { |
| 40 | background-color: $grey; |
| 41 | } |
| 42 | |
| 43 | &.loading .dashicon, &.loading svg { |
| 44 | animation-name: spin; |
| 45 | animation-duration: 2000ms; |
| 46 | animation-iteration-count: infinite; |
| 47 | animation-timing-function: linear; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | svg { |
| 52 | width: 15px; |
| 53 | height: 15px; |
| 54 | display: block; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 |