__archive.scss
6 years ago
__dashboard_assignment.scss
6 years ago
__dashboard_delete_popup.scss
6 years ago
__dashboard_withdraw_method.scss
6 years ago
_dashboard.scss
6 years ago
_frontend_course_builder.scss
6 years ago
_layout.scss
6 years ago
_option_input.scss
6 years ago
_single_course.scss
6 years ago
_theme.scss
6 years ago
main.scss
6 years ago
_option_input.scss
42 lines
| 1 | |
| 2 | .tutor-option-tooltip{ |
| 3 | @media (min-width: 992px) { |
| 4 | &.tutor-option-field{ |
| 5 | position: relative; |
| 6 | p.desc{ |
| 7 | position: absolute; |
| 8 | left: calc(100% + 16px); |
| 9 | background: #2A344F; |
| 10 | width: 160px; |
| 11 | padding: 10px 13px; |
| 12 | opacity: 0; |
| 13 | visibility: hidden; |
| 14 | transition: 300ms; |
| 15 | z-index: 98; |
| 16 | top: 10px; |
| 17 | color: #fff; |
| 18 | border-radius: 12px; |
| 19 | font-size: 12px; |
| 20 | font-style: normal; |
| 21 | &::before{ |
| 22 | content: url("data:image/svg+xml,%3Csvg width='14' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.139C5.339 5.482 8.671 2.903 9.998.403c1.99-3.75 5.481 21.94 1.567 16.037C8.955 12.505 5.1 9.738 0 8.139z' fill='%232A344F' fill-rule='evenodd'/%3E%3C/svg%3E"); |
| 23 | position: absolute; |
| 24 | left: -10px; |
| 25 | top: 16px; |
| 26 | } |
| 27 | } |
| 28 | &:hover p.desc{ |
| 29 | opacity: 1; |
| 30 | visibility: visible; |
| 31 | } |
| 32 | input:focus, |
| 33 | textarea:focus{ |
| 34 | + p.desc{ |
| 35 | opacity: 1; |
| 36 | visibility: visible; |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 |