PluginProbe
WPIDE – File Manager & Code Editor / 3.5.9
WPIDE – File Manager & Code Editor v3.5.9
3.5.9 3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 All 55 releases
wpide / freemius / assets / scss / customizer.scss

customizer.scss in WPIDE – File Manager & Code Editor 3.5.9, at freemius/assets/scss/customizer.scss

166 lines 3.8 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 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 border-radius: 5px;
62 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 }
126
127 #customize-theme-controls #accordion-section-freemius_upsell
128 {
129 border-top: 1px solid $wp-button-primary-background-color !important;;
130 border-bottom: 1px solid $wp-button-primary-background-color !important;;
131
132 h3.accordion-section-title
133 {
134 color: $wp-button-primary-color;
135 background-color: $wp-button-primary-background-color;
136 border-left: 4px solid $wp-button-primary-background-color;
137 transition: .15s background-color ease-in-out, .15s border-color ease-in-out;
138 outline: none;
139 border-bottom: none !important;
140
141 &:hover
142 {
143 background-color: $wp-button-primary-hover-background-color;
144 border-left-color: $wp-button-primary-active-background-color;
145 }
146
147 &:after {
148 color: $wp-button-primary-color;
149 }
150 }
151
152 .rtl
153 {
154 h3.accordion-section-title
155 {
156 border-left: none;
157 border-right: 4px solid $wp-button-primary-background-color;
158
159 &:hover
160 {
161 border-right-color: $wp-button-primary-active-background-color;
162 }
163 }
164 }
165 }
166