_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
_editor-selector.scss
58 lines
| 1 | .ob-editor-selector { |
| 2 | overflow: visible; |
| 3 | display: inline-block; |
| 4 | position: relative; |
| 5 | height: 54px; |
| 6 | |
| 7 | img { |
| 8 | border-radius: 100%; |
| 9 | max-width: 38px; |
| 10 | max-height: 38px; |
| 11 | } |
| 12 | |
| 13 | .options { |
| 14 | margin: 0; |
| 15 | |
| 16 | li { |
| 17 | margin: 0; |
| 18 | } |
| 19 | |
| 20 | .ob-editor-option { |
| 21 | display: block; |
| 22 | padding: 8px; |
| 23 | text-align: left; |
| 24 | background: none; |
| 25 | border: none; |
| 26 | width: 100%; |
| 27 | cursor: pointer; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | .ob-current-editor{ |
| 32 | display: flex; |
| 33 | align-items: center; |
| 34 | > img, span { |
| 35 | padding: 8px; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | .components-button { |
| 40 | height: auto; |
| 41 | padding: 0; |
| 42 | } |
| 43 | |
| 44 | .ob-dropdown { |
| 45 | display: flex; |
| 46 | flex-direction: column; |
| 47 | align-items: flex-start; |
| 48 | border-radius: 5px; |
| 49 | &.active { |
| 50 | background: $inverted-text; |
| 51 | box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.10); |
| 52 | } |
| 53 | > span { |
| 54 | width: 100%; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 |