tienda 1.1.2 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/tienda/application.coffee +114 -84
- data/app/assets/javascripts/tienda/custom-scripts.js +182 -0
- data/app/assets/javascripts/tienda/custom.js +200 -0
- data/app/assets/javascripts/tienda/jquery.metisMenu.js +45 -0
- data/app/assets/javascripts/tienda/morris.js +1913 -0
- data/app/assets/javascripts/tienda/raphael-2.1.0.min.js +10 -0
- data/app/assets/stylesheets/tienda/application.scss +2 -577
- data/app/assets/stylesheets/tienda/custom-styles.scss +518 -0
- data/app/assets/stylesheets/tienda/morris-0.4.3.min.css +2 -0
- data/app/controllers/tienda/dashboard_controller.rb +11 -1
- data/app/controllers/tienda/products_controller.rb +7 -3
- data/app/controllers/tienda/sessions_controller.rb +1 -1
- data/app/controllers/tienda/stock_level_adjustments_controller.rb +1 -5
- data/app/helpers/tienda/application_helper.rb +10 -4
- data/app/models/tienda/country.rb +3 -5
- data/app/models/tienda/delivery_service.rb +5 -7
- data/app/models/tienda/order/actions.rb +3 -3
- data/app/models/tienda/order/delivery.rb +1 -1
- data/app/models/tienda/order.rb +8 -8
- data/app/models/tienda/order_item.rb +11 -11
- data/app/models/tienda/product.rb +38 -54
- data/app/models/tienda/stock_level_adjustment.rb +9 -7
- data/app/models/tienda/tax_rate.rb +5 -7
- data/app/models/tienda/user.rb +4 -4
- data/app/validators/permalink_validator.rb +1 -1
- data/app/views/layouts/tienda/application.html.haml +29 -22
- data/app/views/layouts/tienda/sub.html.haml +44 -6
- data/app/views/tienda/application/_navbar.html.haml +164 -0
- data/app/views/tienda/application/_sidebar.html.haml +6 -0
- data/app/views/tienda/countries/_form.html.haml +40 -34
- data/app/views/tienda/countries/edit.html.haml +12 -3
- data/app/views/tienda/countries/index.html.haml +31 -21
- data/app/views/tienda/countries/new.html.haml +11 -3
- data/app/views/tienda/dashboard/home.html.haml +156 -0
- data/app/views/tienda/delivery_service_prices/_form.html.haml +53 -39
- data/app/views/tienda/delivery_service_prices/edit.html.haml +12 -3
- data/app/views/tienda/delivery_service_prices/index.html.haml +28 -19
- data/app/views/tienda/delivery_service_prices/new.html.haml +12 -3
- data/app/views/tienda/delivery_services/_form.html.haml +48 -35
- data/app/views/tienda/delivery_services/edit.html.haml +11 -5
- data/app/views/tienda/delivery_services/index.html.haml +34 -24
- data/app/views/tienda/delivery_services/new.html.haml +12 -3
- data/app/views/tienda/orders/_form.html.haml +78 -53
- data/app/views/tienda/orders/_order_details.html.haml +57 -54
- data/app/views/tienda/orders/_order_items.html.haml +5 -3
- data/app/views/tienda/orders/_payments_form.html.haml +18 -14
- data/app/views/tienda/orders/_payments_table.html.haml +6 -5
- data/app/views/tienda/orders/_search_form.html.haml +40 -24
- data/app/views/tienda/orders/_status_bar.html.haml +36 -32
- data/app/views/tienda/orders/index.html.haml +41 -34
- data/app/views/tienda/orders/new.html.haml +22 -11
- data/app/views/tienda/orders/show.html.haml +24 -18
- data/app/views/tienda/product_categories/_form.html.haml +34 -22
- data/app/views/tienda/product_categories/edit.html.haml +12 -4
- data/app/views/tienda/product_categories/index.html.haml +26 -16
- data/app/views/tienda/product_categories/new.html.haml +11 -3
- data/app/views/tienda/products/_form.html.haml +163 -126
- data/app/views/tienda/products/_table.html.haml +49 -40
- data/app/views/tienda/products/edit.html.haml +14 -6
- data/app/views/tienda/products/index.html.haml +35 -7
- data/app/views/tienda/sessions/new.html.haml +8 -6
- data/app/views/tienda/sessions/reset.html.haml +5 -5
- data/app/views/tienda/settings/edit.html.haml +20 -14
- data/app/views/tienda/stock_level_adjustments/_table.html.haml +33 -0
- data/app/views/tienda/stock_level_adjustments/index.html.haml +20 -39
- data/app/views/tienda/tax_rates/form.html.haml +41 -25
- data/app/views/tienda/tax_rates/index.html.haml +23 -13
- data/app/views/tienda/users/_form.html.haml +36 -24
- data/app/views/tienda/users/edit.html.haml +12 -3
- data/app/views/tienda/users/index.html.haml +23 -13
- data/app/views/tienda/users/new.html.haml +10 -3
- data/app/views/tienda/variants/form.html.haml +98 -57
- data/app/views/tienda/variants/index.html.haml +47 -29
- data/config/initializers/assets.rb +9 -0
- data/config/locales/en.yml +3 -2
- data/config/routes.rb +1 -1
- data/db/migrate/20150517191600_add_stock_counter_cache.rb +5 -0
- data/db/migrate/20150517195800_remove_stock_level_item_polymorphism.rb +6 -0
- data/db/migrate/20150517212100_update_stock_counter_cache.rb +5 -0
- data/db/migrate/20150603235417_add_document_to_orders.rb +5 -0
- data/lib/tienda/default_navigation.rb +9 -8
- data/lib/tienda/navigation_manager.rb +2 -5
- data/lib/tienda/version.rb +1 -1
- data/lib/tienda.rb +2 -6
- metadata +54 -65
@@ -1,585 +1,10 @@
|
|
1
1
|
/*
|
2
2
|
*= require tienda/reset
|
3
|
-
*= require tienda/elements
|
4
|
-
*= require tienda/chosen
|
5
|
-
*= require nifty/dialog
|
6
|
-
*= require tienda/dialog
|
7
3
|
*= require_self
|
8
4
|
*/
|
9
5
|
|
10
6
|
@import 'variables';
|
11
7
|
|
12
|
-
|
13
|
-
|
14
|
-
nav.sidebar {
|
15
|
-
width:200px;
|
16
|
-
background:#40454D;
|
17
|
-
position:fixed;
|
18
|
-
top:0;
|
19
|
-
bottom:0;
|
20
|
-
header.logo {
|
21
|
-
height:57px;
|
22
|
-
background:image-url('tienda/logo.svg') #9AC835 no-repeat 22px 25px;
|
23
|
-
background-size:45px;
|
24
|
-
padding-left:80px;
|
25
|
-
padding-top:28px;
|
26
|
-
h1 a {
|
27
|
-
display:block;
|
28
|
-
width:72px;
|
29
|
-
height:16px;
|
30
|
-
background:image-url('tienda/tienda.svg') no-repeat;
|
31
|
-
background-size:72px 16px;
|
32
|
-
text-indent:-40000px;
|
33
|
-
}
|
34
|
-
p { color:#fff; font-size:0.9em; margin-top:4px; }
|
35
|
-
}
|
36
|
-
|
37
|
-
p.logged {
|
38
|
-
background:#5B6270;
|
39
|
-
padding:12px 20px;
|
40
|
-
color:#fff;
|
41
|
-
font-size:0.9em;
|
42
|
-
}
|
43
|
-
|
44
|
-
ul {
|
45
|
-
li {
|
46
|
-
span.pending { float:right; font-size:0.9em; font-weight:bold;background:#5B6270; color:#fff; padding:2px 10px; border-radius:16px; margin-top:9px; margin-right:10px;}
|
47
|
-
a {
|
48
|
-
display:block;
|
49
|
-
border-bottom:1px solid rgba(255,255,255,0.05);
|
50
|
-
color:rgba(255,255,255,0.7);
|
51
|
-
text-decoration:none;
|
52
|
-
padding:10px 20px;
|
53
|
-
font-size:1.1em;
|
54
|
-
&:hover {
|
55
|
-
background:rgba(0,0,0,0.05);
|
56
|
-
}
|
57
|
-
&.active {
|
58
|
-
font-weight:bold;
|
59
|
-
color:#fff;
|
60
|
-
background:rgba(0,0,0,0.08);
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
header.main {
|
68
|
-
position:fixed;
|
69
|
-
left:200px;
|
70
|
-
right:0;
|
71
|
-
height:85px;
|
72
|
-
background:#fff;
|
73
|
-
box-shadow: 0 0px 15px -2px rgba(0,0,0,0.2);
|
74
|
-
z-index: 1;
|
75
|
-
p.buttons { float:right; margin-top:27px; margin-right:35px;}
|
76
|
-
p.buttons a { margin-left:10px;}
|
77
|
-
h2 { margin-top:28px; margin-left:35px; font-size:2.0em; font-weight:300; color:#333; background-repeat:no-repeat; background-size:22px; background-position:0 5px; padding-left:32px;}
|
78
|
-
h2 span { font-size:0.4em; font-weight:normal; color:#999; margin-left:10px;}
|
79
|
-
h2 b { font-weight:500;}
|
80
|
-
h2.products { background-image:image-url('tienda/icons/tags.svg')}
|
81
|
-
h2.orders { background-image:image-url('tienda/icons/bag.svg'); background-position: 0 3px;}
|
82
|
-
h2.delivery_services { background-image:image-url('tienda/icons/box.svg'); background-position: 0 3px; background-size:20px;}
|
83
|
-
h2.tax_rates { background-image:image-url('tienda/icons/currency.svg'); background-position: 0 2px; background-size:22px;}
|
84
|
-
h2.users { background-image:image-url('tienda/icons/id.svg'); background-position: 0 2px; background-size:22px;}
|
85
|
-
h2.countries { background-image:image-url('tienda/icons/globe.svg'); background-position: 0 2px; background-size:22px;}
|
86
|
-
h2.settings { background-image:image-url('tienda/icons/toolbox.svg'); background-position: 0 2px; background-size:22px;}
|
87
|
-
|
88
|
-
}
|
89
|
-
|
90
|
-
#content {
|
91
|
-
padding-left:200px;
|
92
|
-
padding-top:85px;
|
93
|
-
|
94
|
-
section.main {
|
95
|
-
padding:35px;
|
96
|
-
}
|
97
|
-
|
98
|
-
//
|
99
|
-
// flashes
|
100
|
-
//
|
101
|
-
#flash-notice { background:#21a3e0; padding:15px 35px; color:#fff; font-size:1.2em; font-weight:bold;}
|
102
|
-
#flash-alert { background:#e04e21; padding:15px 35px; color:#fff; font-size:1.2em; font-weight:bold;}
|
103
|
-
|
104
|
-
//
|
105
|
-
// sub title
|
106
|
-
//
|
107
|
-
.subtitle {
|
108
|
-
background:#fff;
|
109
|
-
border:1px solid #CFD4DD;
|
110
|
-
margin-bottom:25px;
|
111
|
-
padding:15px;
|
112
|
-
h3 { font-size:2.0em; font-weight:500;}
|
113
|
-
}
|
114
|
-
|
115
|
-
|
116
|
-
//
|
117
|
-
// Status tags
|
118
|
-
//
|
119
|
-
span.status-tag {
|
120
|
-
font-weight:600;
|
121
|
-
font-size:11px;
|
122
|
-
text-transform:uppercase;
|
123
|
-
background-size:16px;
|
124
|
-
background-repeat:no-repeat;
|
125
|
-
padding-left:20px;
|
126
|
-
min-height:16px;
|
127
|
-
display:inline-block;
|
128
|
-
&.shipped { color:#E32479; background-image:image-url('tienda/statuses/shipped.svg'); }
|
129
|
-
&.accepted { color:#89BD2F; background-image:image-url('tienda/statuses/accepted.svg'); }
|
130
|
-
&.rejected { color:#E33127; background-image:image-url('tienda/statuses/rejected.svg'); }
|
131
|
-
&.received { color:#909091; background-image:image-url('tienda/statuses/received.svg'); }
|
132
|
-
}
|
133
|
-
|
134
|
-
//
|
135
|
-
// fieldset
|
136
|
-
//
|
137
|
-
fieldset {
|
138
|
-
border:1px solid #dce2eb;
|
139
|
-
background:#fff;
|
140
|
-
padding-top:15px;
|
141
|
-
padding-bottom:25px;
|
142
|
-
margin-bottom:15px;
|
143
|
-
legend {color:#5B6270; margin:0 25px; font-weight:300; font-size:1.5em;}
|
144
|
-
&.padded { padding:15px 25px 25px 25px;}
|
145
|
-
&.padded legend { margin:0;}
|
146
|
-
}
|
147
|
-
|
148
|
-
//
|
149
|
-
// forms
|
150
|
-
//
|
151
|
-
form {
|
152
|
-
fieldset {
|
153
|
-
|
154
|
-
.splitContainer { margin:0 25px; margin-bottom:15px; height:50px;}
|
155
|
-
.splitContainer:last-child { margin-bottom:0;}
|
156
|
-
|
157
|
-
dl {
|
158
|
-
margin:0 25px;
|
159
|
-
margin-bottom:15px;
|
160
|
-
&:last-child { margin-bottom:0;}
|
161
|
-
dt { margin-bottom:10px; font-size:1.2em;}
|
162
|
-
dt label { font-weight:500;}
|
163
|
-
dd { }
|
164
|
-
dd input[type=text], dd input[type=password], textarea {
|
165
|
-
}
|
166
|
-
dd select { width:100%;}
|
167
|
-
dd textarea { height:80px; }
|
168
|
-
dd p.help { margin-top:15px; color:#333; background:image-url('tienda/icons/support.svg') no-repeat 0 3px; line-height:1.5; background-size:13px; padding-left:18px; opacity:0.7;}
|
169
|
-
dd.checkbox { margin-top:14px; font-size:1.1em; color:#999;}
|
170
|
-
dd.checkbox input { float:left; margin-right:10px; margin-top:2px; }
|
171
|
-
dd div.radios {
|
172
|
-
padding-top:4px;
|
173
|
-
input,label { margin-right:10px;}
|
174
|
-
}
|
175
|
-
dd.space { margin-bottom:5px;}
|
176
|
-
dd.space:last-child { margin-bottom:0;}
|
177
|
-
&.half {
|
178
|
-
width:49%;
|
179
|
-
margin:0;
|
180
|
-
float:left;
|
181
|
-
&:last-child { float:right;}
|
182
|
-
}
|
183
|
-
|
184
|
-
&.third {
|
185
|
-
width:31%;
|
186
|
-
margin:0;
|
187
|
-
float:left;
|
188
|
-
&:nth-child(2) { margin-left:2%; width:32%;}
|
189
|
-
&:last-child { float:right; width:33%;}
|
190
|
-
}
|
191
|
-
|
192
|
-
&.quarter {
|
193
|
-
width:23%;
|
194
|
-
margin:0;
|
195
|
-
margin-left:2%;
|
196
|
-
float:left;
|
197
|
-
&:last-child { float:right; width:25%;}
|
198
|
-
&:first-child { margin:0;}
|
199
|
-
}
|
200
|
-
|
201
|
-
&.three-quarter {
|
202
|
-
width:75%;
|
203
|
-
margin:0;
|
204
|
-
float:right;
|
205
|
-
}
|
206
|
-
}
|
207
|
-
|
208
|
-
dl.sided {
|
209
|
-
clear:both;
|
210
|
-
dt { float:left; width:25%; text-align:right; padding-top:4px;}
|
211
|
-
dd { margin-left:30%; }
|
212
|
-
dd p.help { margin-top:10px;}
|
213
|
-
dd div.checkbox { padding-top:5px;}
|
214
|
-
}
|
215
|
-
|
216
|
-
|
217
|
-
//
|
218
|
-
// margined container
|
219
|
-
//
|
220
|
-
div.margin { margin: 0 25px;}
|
221
|
-
|
222
|
-
//
|
223
|
-
// attributes table
|
224
|
-
//
|
225
|
-
table.productAttributes {
|
226
|
-
width:100%;
|
227
|
-
margin-bottom:10px;
|
228
|
-
line-height:1.0;
|
229
|
-
thead td, thead th { text-align:left; border:1px solid #ccc; background:#f7f7f7; color:#999; font-size:0.9em; padding:10px; }
|
230
|
-
tr:nth-child(even) td {
|
231
|
-
background:#fbfbfb;
|
232
|
-
}
|
233
|
-
td {
|
234
|
-
border:1px solid #ccc;
|
235
|
-
padding:10px;
|
236
|
-
vertical-align:middle;
|
237
|
-
width:40%;
|
238
|
-
input[type=text] { width:100%; border:0; padding:0; margin:0; font-size:1.2em;}
|
239
|
-
&.remove { width:8%; text-align:center; background:#ffeff5;}
|
240
|
-
&.searchable { width:8%; text-align:center; }
|
241
|
-
&.handle { width:4%; background:image-url('tienda/move.svg') no-repeat center; background-size:16px;}
|
242
|
-
}
|
243
|
-
}
|
244
|
-
|
245
|
-
//
|
246
|
-
// imports example table
|
247
|
-
//
|
248
|
-
table.importExample {
|
249
|
-
@extend table.productAttributes;
|
250
|
-
tr:nth-last-child(2) td {
|
251
|
-
border-bottom: none;
|
252
|
-
}
|
253
|
-
tr.tear-off td {
|
254
|
-
border:none;
|
255
|
-
background:image-url('tienda/table-tear-off.png') repeat-x 0 0;
|
256
|
-
height:5px;
|
257
|
-
padding:0;
|
258
|
-
}
|
259
|
-
td {
|
260
|
-
border:1px solid #ddd;
|
261
|
-
font-size:0.9em;
|
262
|
-
width:auto;
|
263
|
-
}
|
264
|
-
}
|
265
|
-
}
|
266
|
-
p.submit {margin:0; background:#fff; border:1px solid #dce2eb; padding:25px; }
|
267
|
-
p.submit .button {
|
268
|
-
margin-right:5px;
|
269
|
-
vertical-align: middle;
|
270
|
-
}
|
271
|
-
p.submit .right .button {margin-left:5px; margin-right:0;}
|
272
|
-
p.submit span.right {float:right;}
|
273
|
-
p.submit.sided { padding-left:30%;}
|
274
|
-
.errorExplanation {
|
275
|
-
margin-bottom:25px;
|
276
|
-
border:1px solid #EB2732;
|
277
|
-
background:#fff;
|
278
|
-
padding:25px;
|
279
|
-
line-height:1.5;
|
280
|
-
h2 { font-size:1.5em !important; font-weight:300; color:#de1818; margin-bottom:10px;}
|
281
|
-
p { display:none;}
|
282
|
-
ul li { list-style:disc; margin-left:25px; font-size:1.2em;}
|
283
|
-
}
|
284
|
-
}
|
285
|
-
|
286
|
-
//
|
287
|
-
// attachment preview
|
288
|
-
//
|
289
|
-
div.attachmentPreview {
|
290
|
-
overflow:hidden;
|
291
|
-
border:1px solid #ccc;
|
292
|
-
background:#f7f7f7;
|
293
|
-
padding:10px;
|
294
|
-
margin-bottom:15px;
|
295
|
-
div.imgContainer { float:left;padding:4px; border:1px solid #ccc; background:#fff;}
|
296
|
-
div.imgContainer div.img { background-image:image-url('tienda/document.svg'); width:40px; height:40px; display:block;background-size:contain; background-repeat:no-repeat; background-position: center center;}
|
297
|
-
div.imgContainer div.img.none { background-image:none;}
|
298
|
-
div.desc {margin-left:60px; padding-top:5px;}
|
299
|
-
div.desc span { display:block}
|
300
|
-
div.desc span.filename { font-size:1.1em; margin-bottom:5px;}
|
301
|
-
div.desc span.filename a { text-decoration:none; font-weight:bold;}
|
302
|
-
div.desc span.delete a { color:#FF9781; font-size:0.9em; }
|
303
|
-
div.desc a { color:#000;}
|
304
|
-
div.desc.none { color:#999; font-style:italic;}
|
305
|
-
}
|
306
|
-
|
307
|
-
//
|
308
|
-
// order summary page
|
309
|
-
//
|
310
|
-
#order {
|
311
|
-
.details {
|
312
|
-
overflow:hidden;
|
313
|
-
.left {
|
314
|
-
width:55%;
|
315
|
-
float:left
|
316
|
-
}
|
317
|
-
.right {
|
318
|
-
width:45%;
|
319
|
-
float:left;
|
320
|
-
p.acceptreject { text-align:center; margin-top:22px; }
|
321
|
-
p.acceptreject a { margin: 0 5px;}
|
322
|
-
p.ship { text-align:center; margin-top:22px;}
|
323
|
-
p.ship input[type=text] { }
|
324
|
-
}
|
325
|
-
|
326
|
-
dl {
|
327
|
-
dt { float:left; width:30%; text-align:right; color:#888;white-space:nowrap}
|
328
|
-
dd { font-weight:bold; margin-left:35%; margin-bottom:6px; white-space:nowrap}
|
329
|
-
dd a { color:inherit;}
|
330
|
-
dt.padding { padding-top:6px;}
|
331
|
-
}
|
332
|
-
|
333
|
-
dl.form {
|
334
|
-
margin-top:15px;
|
335
|
-
input.text { width:70%;}
|
336
|
-
a.button { margin-right:5px;}
|
337
|
-
}
|
338
|
-
|
339
|
-
}
|
340
|
-
|
341
|
-
.status-bar {
|
342
|
-
background:image-url('tienda/square.svg') repeat-x 0 15px;
|
343
|
-
background-size:8px;
|
344
|
-
margin:45px 0;
|
345
|
-
overflow:hidden;
|
346
|
-
ul {
|
347
|
-
li { width:33%;float:left; text-align:center; background:image-url('tienda/statuses/shipped.svg') no-repeat center 0; background-size:36px; padding-top:42px;z-index:10;}
|
348
|
-
h4 { color:#E32479;}
|
349
|
-
li p { margin-top:5px; font-size:0.9em; color:#999;}
|
350
|
-
li a { color:inherit;}
|
351
|
-
li.payment { background-image:image-url('tienda/statuses/paid.svg')}
|
352
|
-
li.payment h4 { color:#3DB3E2;}
|
353
|
-
li.received { background-image:image-url('tienda/statuses/received.svg')}
|
354
|
-
li.received h4 { color:#909091;}
|
355
|
-
li.accepted { background-image:image-url('tienda/statuses/accepted.svg')}
|
356
|
-
li.accepted h4 { color:#89BD2F;}
|
357
|
-
li.rejected { background-image:image-url('tienda/statuses/rejected.svg')}
|
358
|
-
li.rejected h4 { color: #E33127}
|
359
|
-
}
|
360
|
-
}
|
361
|
-
|
362
|
-
.order_items {
|
363
|
-
table.data {
|
364
|
-
.money { text-align:right; width:8%}
|
365
|
-
.product { width:42%;}
|
366
|
-
.sku { width:18%;}
|
367
|
-
.qty {text-align:center; width:5%;}
|
368
|
-
}
|
369
|
-
}
|
370
|
-
}
|
371
|
-
|
372
|
-
//
|
373
|
-
// warning message
|
374
|
-
//
|
375
|
-
p.warning {
|
376
|
-
background:#ffffed;
|
377
|
-
border:1px solid #ed7c04;
|
378
|
-
color:#ed7c04;
|
379
|
-
font-size:1.1em;
|
380
|
-
font-weight:500;
|
381
|
-
margin-bottom:25px;
|
382
|
-
padding:15px;
|
383
|
-
}
|
384
|
-
|
385
|
-
//
|
386
|
-
// payments
|
387
|
-
//
|
388
|
-
fieldset.orderPayments {
|
389
|
-
h4 { font-weight:bold; text-transform:uppercase; color:#5B6270;}
|
390
|
-
.table {
|
391
|
-
margin-bottom:20px;
|
392
|
-
table td.refund { width:10%; text-align:center;}
|
393
|
-
table td.confirmed { width:5%; text-align:center;}
|
394
|
-
}
|
395
|
-
form {
|
396
|
-
overflow:hidden;
|
397
|
-
background:#F7F9FC;
|
398
|
-
border:1px solid #DCE2EB;
|
399
|
-
padding:15px;
|
400
|
-
dl {
|
401
|
-
width:23%;float:left;
|
402
|
-
dt { margin-bottom:4px; font-size:0.9em;color:#A9AEB5; font-weight:500;}
|
403
|
-
&.text { width:27%;margin-right:2%;}
|
404
|
-
&.amount { width:25%;}
|
405
|
-
&.submit { width:15%; text-align:right; margin-top:15px;}
|
406
|
-
}
|
407
|
-
}
|
408
|
-
p.notice {
|
409
|
-
background:#fffff3;
|
410
|
-
padding:10px;
|
411
|
-
color:#F67C00;
|
412
|
-
border:1px solid #F6B721;
|
413
|
-
margin-bottom:15px;
|
414
|
-
}
|
415
|
-
}
|
416
|
-
|
417
|
-
//
|
418
|
-
// order search
|
419
|
-
//
|
420
|
-
div.orderSearch {
|
421
|
-
overflow:hidden;
|
422
|
-
display:none;
|
423
|
-
dl.left, dl.right {
|
424
|
-
float:left;
|
425
|
-
width:50%;
|
426
|
-
dt { float:left; width:40%; text-align:right; padding-top:3px; color:#888;}
|
427
|
-
dd { margin-left:44%; margin-bottom:15px;}
|
428
|
-
dd input.small { width:40%;}
|
429
|
-
}
|
430
|
-
p.submit {
|
431
|
-
float:right;
|
432
|
-
}
|
433
|
-
}
|
434
|
-
|
435
|
-
//
|
436
|
-
// new order form
|
437
|
-
//
|
438
|
-
form.orderForm {
|
439
|
-
input[type=text].disabled { background:#f7f7f7; color:#888}
|
440
|
-
p.slaWarning {
|
441
|
-
background:#e5eaf4;
|
442
|
-
padding:15px;
|
443
|
-
border:1px solid #abb4c6;
|
444
|
-
border-top:0;
|
445
|
-
text-align:center;
|
446
|
-
}
|
447
|
-
table.orderItems {
|
448
|
-
thead {
|
449
|
-
th.product { width:40%;}
|
450
|
-
th.qty, th.stock { width:5%; text-align:center;}
|
451
|
-
th.price, th.tax, th.total, th.weight { width:50px;}
|
452
|
-
}
|
453
|
-
tbody {
|
454
|
-
td.qty input { text-align:center;}
|
455
|
-
td.stock { text-align:center;}
|
456
|
-
td input { width:100%; font-size:1.0em; padding:3px; background:#f7f7f7;}
|
457
|
-
td.product select {width:400px;}
|
458
|
-
tr.item.new td { background:#f7f7f7;}
|
459
|
-
td.stock.oos { background:#fff4f4; color:#e32828;}
|
460
|
-
tr.delivery td.none { background:#fff4f4; color:#e32828; font-weight:500;}
|
461
|
-
}
|
462
|
-
tfoot {
|
463
|
-
td input { width:100%;padding:3px; background:transparent; border:0; font-size:1.0em; color:#fff;}
|
464
|
-
}
|
465
|
-
|
466
|
-
}
|
467
|
-
}
|
468
|
-
|
469
|
-
|
470
|
-
}
|
471
|
-
|
472
|
-
footer {
|
473
|
-
position:fixed;
|
474
|
-
bottom:0;
|
475
|
-
width:200px;
|
476
|
-
background:rgba(0,0,0,0.05);
|
477
|
-
|
478
|
-
p.store {
|
479
|
-
a {
|
480
|
-
display:block;
|
481
|
-
background:#4B515C;
|
482
|
-
color:rgba(255,255,255,0.7);
|
483
|
-
padding:12px 20px;
|
484
|
-
font-size:1.1em;
|
485
|
-
text-decoration:none;
|
486
|
-
}
|
487
|
-
}
|
488
|
-
}
|
489
|
-
|
490
|
-
span.boolean span.true { color:#96BF48}
|
491
|
-
span.boolean span.false { color:#c04a4a}
|
492
|
-
|
493
|
-
.float-right { float:right;}
|
494
|
-
|
495
|
-
div.field_with_errors { display:inline;}
|
496
|
-
|
497
|
-
//
|
498
|
-
// money input box
|
499
|
-
//
|
500
|
-
div.moneyInput {
|
501
|
-
overflow:hidden;
|
502
|
-
div.currency {float:left; background:#f3f6ec; color:#74884a; padding:5px; width:20px; text-align:center;border:1px solid #c5ceb1; font-size:1.1em; border-right:0;}
|
503
|
-
input { width:100px; font-size:1.1em;}
|
504
|
-
}
|
505
|
-
|
506
|
-
//
|
507
|
-
// standard text input box
|
508
|
-
//
|
509
|
-
input.text, textarea.text {
|
510
|
-
width:100%; padding:5px; border:1px solid #ccc;
|
511
|
-
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
512
|
-
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
513
|
-
box-sizing: border-box; /* Opera/IE 8+ */
|
514
|
-
font-size:1.1em;
|
515
|
-
font-family:$font;
|
516
|
-
&:focus { border-color:#9AC835; }
|
517
|
-
&.short { width:100px;}
|
518
|
-
}
|
519
|
-
|
520
|
-
//
|
521
|
-
// data table
|
522
|
-
//
|
523
|
-
div.table {
|
524
|
-
p.info {
|
525
|
-
overflow:hidden;
|
526
|
-
margin-bottom:10px;
|
527
|
-
color:#40454D;
|
528
|
-
}
|
529
|
-
}
|
530
|
-
|
531
|
-
table.data {
|
532
|
-
width:100%;
|
533
|
-
th, td { padding:10px; vertical-align:middle;}
|
534
|
-
thead th { border:1px solid #40454D; background:#40454D; text-align:left; font-weight:normal; font-size:0.9em; color:#fff; }
|
535
|
-
tbody td { border:1px solid #cfd4dd; background:#fff;}
|
536
|
-
a { color:inherit;}
|
537
|
-
tbody th { text-align:left; background:#5B6270; border:1px solid #5B6270;font-size:1.2em; color:#fff;}
|
538
|
-
tbody tr.empty td { padding:50px 0; text-align:center; color:#999; font-style:italic;}
|
539
|
-
tfoot td.right { text-align:right; }
|
540
|
-
tfoot td.bold { font-weight:bold;}
|
541
|
-
tfoot td { border-top:0 solid #ccc; background:#fafafa;}
|
542
|
-
tfoot tr:first-child td { border-top-width:3px;}
|
543
|
-
tbody td a.edit { background:image-url('tienda/icons/edit.svg') no-repeat; margin-top:3px;width:16px; width:16px; background-size:13px; display:inline-block; text-indent:-40000px; opacity:0.3}
|
544
|
-
tbody td a.edit:hover { opacity:0.5}
|
545
|
-
tbody td.table {
|
546
|
-
padding:0;
|
547
|
-
table.data {
|
548
|
-
td { padding:10px; border-width:0; border-right-width:1px; border-bottom-width:1px;}
|
549
|
-
td:last-child { border-right-width:0;}
|
550
|
-
tr:last-child td { border-bottom-width:0;}
|
551
|
-
}
|
552
|
-
}
|
553
|
-
tbody tr.form {
|
554
|
-
td { background:#f2f6fb;}
|
555
|
-
input[type=text] { border:1px solid #CFD4DD; padding:5px;}
|
556
|
-
input[type=text]:focus { border-color:#9AC835;}
|
557
|
-
td.desc input[type=text] { width:95%;}
|
558
|
-
td.adjustment input[type=text] { width:50px; margin-right:5px;}
|
559
|
-
}
|
560
|
-
tfoot td { background:#5B6270; color:#fff; border:1px solid #5B6270; font-weight:bold; font-size:1.1em;}
|
561
|
-
}
|
562
|
-
|
563
|
-
//
|
564
|
-
// pagination
|
565
|
-
//
|
566
|
-
nav.pagination {
|
567
|
-
display:block;
|
568
|
-
margin:25px 0;
|
569
|
-
overflow:hidden;
|
570
|
-
text-align:center;
|
571
|
-
span {
|
572
|
-
display:inline-block;
|
573
|
-
border:1px solid #ccc;
|
574
|
-
margin-right:3px;
|
575
|
-
color:#333;
|
576
|
-
background:#fff;
|
577
|
-
&.current { background:#9AC835; border-color:#7B9F26; color:#fff; font-weight:600; padding:5px 10px;}
|
578
|
-
a {
|
579
|
-
padding:5px 10px;
|
580
|
-
display:inline-block;
|
581
|
-
color:inherit;
|
582
|
-
text-decoration:none;
|
583
|
-
}
|
584
|
-
}
|
8
|
+
body {
|
9
|
+
padding-top: 85px;
|
585
10
|
}
|