PluginProbe
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder / 1.4.2
Buttonizer – Floating Menus, Sticky Buttons, & Popup Builder v1.4.2
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 / account.scss

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

256 lines 3.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_account
4 {
5 .postbox,
6 .widefat
7 {
8 max-width: 700px;
9 }
10
11 h3
12 {
13 font-size: 1.3em;
14 padding: 12px 15px;
15 margin: 0 0 12px 0;
16 line-height: 1.4;
17 border-bottom: 1px solid #F1F1F1;
18
19 .dashicons {
20 width: 26px;
21 height: 26px;
22 font-size: 1.3em;
23 }
24 }
25
26 i.dashicons
27 {
28 font-size: 1.2em;
29 height: 1.2em;
30 width: 1.2em;
31 }
32
33 .button
34 {
35 i.dashicons
36 {
37 vertical-align: middle;
38 }
39 }
40
41 .fs-header-actions
42 {
43 position: absolute;
44 top: 17px;
45 right: 15px;
46 font-size: 0.9em;
47
48 ul
49 {
50 margin: 0;
51 }
52
53 li
54 {
55 form
56 {
57 display: inline-block;
58 }
59
60 float: left;
61 a
62 {
63 text-decoration: none;
64 }
65 }
66 }
67 }
68
69 #fs_account_details .button-group {
70 float: right;
71 }
72
73 .rtl #fs_account .fs-header-actions
74 {
75 left: 15px;
76 right: auto;
77 }
78
79 .fs-key-value-table
80 {
81 width: 100%;
82
83 form
84 {
85 display: inline-block;
86 }
87
88 tr
89 {
90 td:first-child
91 {
92 nobr
93 {
94 font-weight: bold;
95 }
96
97 text-align: right;
98
99 form
100 {
101 display: block;
102 }
103 }
104
105 td.fs-right
106 {
107 text-align: right;
108 }
109
110 &.fs-odd
111 {
112 background: #ebebeb;
113 }
114 }
115
116 td, th
117 {
118 padding: 10px;
119 }
120
121 code {
122 line-height: 28px;
123 }
124
125 var, code, input[type="text"]="text""]
126 {
127 color: #0073AA;
128 font-size: 16px;
129 background: none;
130 }
131
132 input[type="text"]="text""] {
133 width: 100%;
134 font-weight: bold;
135 }
136 }
137
138 label.fs-tag
139 {
140 background: #ffba00;
141 color: #fff;
142 display: inline-block;
143 border-radius: 3px;
144 padding: 5px;
145 font-size: 11px;
146 line-height: 11px;
147 vertical-align: baseline;
148
149 &.fs-warn
150 {
151 background: #ffba00;
152 }
153 &.fs-success
154 {
155 background: #46b450;
156 }
157 &.fs-error
158 {
159 background: #dc3232;
160 }
161 }
162
163 #fs_addons
164 {
165 h3
166 {
167 border: none;
168 margin-bottom: 0;
169 padding: 4px 5px;
170 }
171
172 td
173 {
174 vertical-align: middle;
175 }
176
177 thead {
178 white-space: nowrap;
179 }
180
181 td:first-child,
182 th:first-child
183 {
184 text-align: left;
185 font-weight: bold;
186 }
187 td:last-child,
188 th:last-child
189 {
190 text-align: right;
191 }
192 th
193 {
194 font-weight: bold;
195 }
196 }
197
198 #fs_billing_address {
199 width: 100%;
200
201 tr {
202 td {
203 width: 50%;
204 padding: 5px;
205 }
206
207 &:first-of-type {
208 td {
209 padding-top: 0;
210 }
211 }
212 }
213
214 @mixin read-mode {
215 border-color: transparent;
216 color: #777;
217 border-bottom: 1px dashed #ccc;
218 padding-left: 0;
219 background: none;
220 }
221
222 span {
223 font-weight: bold;
224 }
225
226 input, select {
227 @include placeholder(transparent);
228
229 display: block;
230 width: 100%;
231 margin-top: 5px;
232
233 &.fs-read-mode {
234 @include read-mode();
235 }
236 }
237
238
239 &.fs-read-mode {
240 td span {
241 display: none;
242 }
243
244 input, select
245 {
246 @include read-mode();
247 @include placeholder(#ccc);
248 }
249 }
250
251
252 button {
253 display: block;
254 width: 100%;
255 }
256 }