_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
_custom-tooltip.scss
35 lines
| 1 | .ob-tooltip-toggle { |
| 2 | display: flex; |
| 3 | align-items: center; |
| 4 | |
| 5 | > svg { |
| 6 | fill: $primary; |
| 7 | } |
| 8 | |
| 9 | &:hover, &:focus { |
| 10 | outline: none; |
| 11 | box-shadow: none; |
| 12 | |
| 13 | .ob-tooltip-content { |
| 14 | opacity: 1; |
| 15 | pointer-events: all; |
| 16 | z-index: 11; |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | .ob-tooltip-content { |
| 22 | font-size: 13px; |
| 23 | top: 100%; |
| 24 | left: 1px; |
| 25 | position: absolute; |
| 26 | min-width: 264px; |
| 27 | background: $inverted-text; |
| 28 | box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0; |
| 29 | padding: 10px; |
| 30 | z-index: 1; |
| 31 | pointer-events: none; |
| 32 | opacity: 0; |
| 33 | line-height: 1.75; |
| 34 | } |
| 35 |