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 / customizer.scss

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

125 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "start";
2
3 #fs_customizer_upsell {
4 .fs-customizer-plan {
5 padding: 10px 20px 20px 20px;
6 border-radius: 3px;
7 background: #fff;
8
9 h2 {
10 position: relative;
11 margin: 0;
12 line-height: 2em;
13 text-transform: uppercase;
14
15 .button-link {
16 top: -2px;
17 }
18 }
19 }
20
21 .fs-feature {
22 position: relative;
23 }
24
25 .dashicons-yes {
26 color: #0085ba;
27 font-size: 2em;
28 vertical-align: bottom;
29 margin-left: -7px;
30 margin-right: 10px;
31
32 .rtl & {
33 margin-left: 10px;
34 margin-right: -7px;
35 }
36 }
37
38 .dashicons-editor-help
39 {
40 color: #bbb;
41 cursor: help;
42
43 $tooltip-color: #000;
44
45 .fs-feature-desc {
46 opacity: 0;
47 visibility: hidden;
48 @include transition(opacity 0.3s ease-in-out);
49
50 position: absolute;
51 background: $tooltip-color;
52 color: #fff;
53 font-family: 'arial', serif;
54 font-size: 12px;
55 padding: 10px;
56 z-index: 999999;
57 bottom: 100%;
58 margin-bottom: 5px;
59 left: 0;
60 right: 0;
61 @include border-radius(5px);
62 @include box-shadow(1px 1px 1px rgba(0,0,0,0.2));
63 line-height: 1.3em;
64 font-weight: bold;
65 text-align: left;
66
67 .rtl &
68 {
69 text-align: right;
70 }
71
72 &::after {
73 content: ' ';
74 display: block;
75 width: 0;
76 height: 0;
77 border-style: solid;
78 border-width: 5px 5px 0 5px;
79 border-color: $tooltip-color transparent transparent transparent;
80 position: absolute;
81 top: 100%;
82 left: 21px;
83
84 .rtl & {
85 right: 21px;
86 left: auto;
87 }
88 }
89 }
90
91 &:hover {
92 .fs-feature-desc {
93 visibility: visible;
94 opacity: 1;
95 }
96 }
97 }
98
99 .button-primary {
100 display: block;
101 text-align: center;
102 margin-top: 10px;
103 }
104 }
105
106 #fs_customizer_support
107 {
108 display: block !important;
109
110 .button {
111 float: right;
112 }
113
114 .button-group {
115 width: 100%;
116 display: block;
117 margin-top: 10px;
118
119 .button {
120 float: none;
121 width: 50%;
122 text-align: center;
123 }
124 }
125 }