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