PluginProbe
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder / 1.5
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder v1.5
3.6.0 3.5.0 trunk 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.6.1 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5 1.5.1 All 110 releases
buttonizer-multifunctional-button / freemius / assets / scss / admin / _tooltip.scss

_tooltip.scss in Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder 1.5, at freemius/assets/scss/admin/_tooltip.scss

66 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .fs-tooltip-trigger
2 {
3 &:not(a)
4 {
5 cursor: help;
6 }
7
8 position: relative;
9
10 .fs-tooltip
11 {
12 opacity: 0;
13 visibility: hidden;
14 @include transition(opacity 0.3s ease-in-out);
15 position: absolute;
16 background: $tooltip-bkg-color;
17 color: $tooltip-color;
18 font-family: 'arial', serif;
19 font-size: 12px;
20 padding: 10px;
21 z-index: 999999;
22 bottom: 100%;
23 margin-bottom: 5px;
24 left: 0;
25 right: 0;
26 @include border-radius(5px);
27 @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
28 line-height: 1.3em;
29 font-weight: bold;
30 text-align: left;
31
32 .rtl &
33 {
34 text-align: right;
35 }
36
37 &::after
38 {
39 content: ' ';
40 display: block;
41 width: 0;
42 height: 0;
43 border-style: solid;
44 border-width: 5px 5px 0 5px;
45 border-color: $tooltip-bkg-color transparent transparent transparent;
46 position: absolute;
47 top: 100%;
48 left: 21px;
49
50 .rtl &
51 {
52 right: 21px;
53 left: auto;
54 }
55 }
56 }
57
58 &:hover
59 {
60 .fs-tooltip
61 {
62 visibility: visible;
63 opacity: 1;
64 }
65 }
66 }