PluginProbe
Tiered Pricing Table for WooCommerce / 2.0.2
Tiered Pricing Table for WooCommerce v2.0.2
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / freemius / assets / scss / admin / account.scss

account.scss in Tiered Pricing Table for WooCommerce 2.0.2, at freemius/assets/scss/admin/account.scss

302 lines 4.4 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 .dashicons
34 {
35 vertical-align: middle;
36 }
37
38 .fs-header-actions
39 {
40 position: absolute;
41 top: 17px;
42 right: 15px;
43 font-size: 0.9em;
44
45 ul
46 {
47 margin: 0;
48 }
49
50 li
51 {
52 form
53 {
54 display: inline-block;
55 }
56
57 float: left;
58 a
59 {
60 text-decoration: none;
61 }
62 }
63 }
64 }
65
66 #fs_account_details .button-group {
67 float: right;
68 }
69
70 .rtl #fs_account .fs-header-actions
71 {
72 left: 15px;
73 right: auto;
74 }
75
76 .fs-key-value-table
77 {
78 width: 100%;
79
80 form
81 {
82 display: inline-block;
83 }
84
85 tr
86 {
87 td:first-child
88 {
89 nobr
90 {
91 font-weight: bold;
92 }
93
94 text-align: right;
95
96 form
97 {
98 display: block;
99 }
100 }
101
102 td.fs-right
103 {
104 text-align: right;
105 }
106
107 &.fs-odd
108 {
109 background: #ebebeb;
110 }
111 }
112
113 td, th
114 {
115 padding: 10px;
116 }
117
118 code {
119 line-height: 28px;
120 }
121
122 var, code, input[type="text"]="text""]
123 {
124 color: #0073AA;
125 font-size: 16px;
126 background: none;
127 }
128
129 input[type="text"]="text""] {
130 width: 100%;
131 font-weight: bold;
132 }
133 }
134
135 label.fs-tag
136 {
137 background: #ffba00;
138 color: #fff;
139 display: inline-block;
140 border-radius: 3px;
141 padding: 5px;
142 font-size: 11px;
143 line-height: 11px;
144 vertical-align: baseline;
145
146 &.fs-warn
147 {
148 background: #ffba00;
149 }
150 &.fs-success
151 {
152 background: #46b450;
153 }
154 &.fs-error
155 {
156 background: #dc3232;
157 }
158 }
159
160 #fs_sites
161 {
162 .fs-scrollable-table
163 {
164 .fs-table-body {
165 max-height: 200px;
166 overflow: auto;
167 border: 1px solid #e5e5e5;
168
169 & > table.widefat {
170 border: none !important;
171 }
172 }
173
174 .fs-main-column {
175 width: 100%;
176 }
177
178 .fs-site-details
179 {
180 td:first-of-type
181 {
182 text-align: right;
183 color: grey;
184 width: 1px;
185 }
186
187 td:last-of-type
188 {
189 text-align: right;
190 }
191 }
192
193 .fs-install-details table
194 {
195 tr td
196 {
197 width: 1px;
198 white-space: nowrap;
199
200 &:last-of-type
201 {
202 width: auto;
203 }
204 }
205 }
206 }
207 }
208
209 #fs_addons
210 {
211 h3
212 {
213 border: none;
214 margin-bottom: 0;
215 padding: 4px 5px;
216 }
217
218 td
219 {
220 vertical-align: middle;
221 }
222
223 thead {
224 white-space: nowrap;
225 }
226
227 td:first-child,
228 th:first-child
229 {
230 text-align: left;
231 font-weight: bold;
232 }
233 td:last-child,
234 th:last-child
235 {
236 text-align: right;
237 }
238 th
239 {
240 font-weight: bold;
241 }
242 }
243
244 #fs_billing_address {
245 width: 100%;
246
247 tr {
248 td {
249 width: 50%;
250 padding: 5px;
251 }
252
253 &:first-of-type {
254 td {
255 padding-top: 0;
256 }
257 }
258 }
259
260 @mixin read-mode {
261 border-color: transparent;
262 color: #777;
263 border-bottom: 1px dashed #ccc;
264 padding-left: 0;
265 background: none;
266 }
267
268 span {
269 font-weight: bold;
270 }
271
272 input, select {
273 @include placeholder(transparent);
274
275 display: block;
276 width: 100%;
277 margin-top: 5px;
278
279 &.fs-read-mode {
280 @include read-mode();
281 }
282 }
283
284
285 &.fs-read-mode {
286 td span {
287 display: none;
288 }
289
290 input, select
291 {
292 @include read-mode();
293 @include placeholder(#ccc);
294 }
295 }
296
297
298 button {
299 display: block;
300 width: 100%;
301 }
302 }