forgeos_core 1.9.2 → 1.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. data/README.textile +1 -23
  2. data/app/assets/javascripts/forgeos/admin/customselects.js +2 -0
  3. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/overlay.js +22 -3
  4. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/tinyMCE.js +1 -1
  5. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/uploads.js +55 -0
  6. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/visual.js +3 -3
  7. data/app/assets/javascripts/forgeos/admin/inits/forgeos_core/overlays.js +4 -46
  8. data/app/assets/javascripts/forgeos/admin/inits/forgeos_core/visual.js +17 -57
  9. data/app/assets/stylesheets/forgeos/960.css.sass +1 -125
  10. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_attachments.css.sass +13 -4
  11. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_content.css.sass +7 -2
  12. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_customer.css.sass +18 -5
  13. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_dashboard.css.sass +38 -16
  14. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_datatable.css.sass +32 -13
  15. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_generals.css.sass +75 -39
  16. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_icons.css.sass +130 -16
  17. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_lightbox.css.sass +21 -18
  18. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_notifications.css.sass +0 -1
  19. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_payment.css.sass +1 -1
  20. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_rightSidebar.css.sass +14 -14
  21. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_roles.css.sass +1 -1
  22. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_search.css.sass +6 -5
  23. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_settings.css.sass +1 -3
  24. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_sidebar.css.sass +11 -3
  25. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_uploadify.css.sass +10 -8
  26. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_visuals.css.sass +12 -12
  27. data/app/assets/stylesheets/forgeos/admin/login.css.sass +30 -14
  28. data/app/assets/stylesheets/forgeos/jquery-ui/themes/forgeos.css.sass +96 -733
  29. data/app/assets/stylesheets/forgeos/jstree/themes/categories/style.css.sass +12 -18
  30. data/app/controllers/admin/administrators_controller.rb +2 -2
  31. data/app/controllers/admin/attachments_controller.rb +3 -3
  32. data/app/controllers/admin/categories_controller.rb +1 -1
  33. data/app/controllers/admin/person_sessions_controller.rb +1 -1
  34. data/app/controllers/admin/rights_controller.rb +2 -2
  35. data/app/controllers/admin/roles_controller.rb +3 -3
  36. data/app/controllers/admin/users_controller.rb +2 -2
  37. data/app/controllers/forgeos/application_controller.rb +1 -1
  38. data/app/models/category.rb +7 -3
  39. data/app/models/right.rb +1 -1
  40. data/app/models/role.rb +1 -1
  41. data/app/models/user.rb +6 -3
  42. data/app/views/admin/administrators/index.json.erb +3 -1
  43. data/app/views/admin/attachments/_attachments_popup.html.haml +4 -4
  44. data/app/views/admin/attachments/_form.html.haml +1 -1
  45. data/app/views/admin/attachments/_tabs.html.haml +1 -1
  46. data/app/views/admin/attachments/index.json.erb +4 -2
  47. data/app/views/admin/attachments/show.html.haml +1 -1
  48. data/app/views/admin/cachings/index.html.haml +2 -2
  49. data/app/views/admin/categories/index.json.erb +3 -1
  50. data/app/views/admin/import/_tabs.html.haml +1 -0
  51. data/app/views/admin/import/index.html.haml +1 -1
  52. data/app/views/admin/rights/_tabs.html.haml +1 -0
  53. data/app/views/admin/rights/index.json.erb +7 -5
  54. data/app/views/admin/roles/_tabs.html.haml +1 -0
  55. data/app/views/admin/roles/index.json.erb +5 -3
  56. data/app/views/admin/sidebars/_attachments_popups.html.haml +7 -76
  57. data/app/views/admin/users/index.json.erb +3 -1
  58. data/app/views/admin/visual/_visual_popup.html.haml +18 -107
  59. data/app/views/admin/visual/_visuals_popup.html.haml +7 -47
  60. data/app/views/layouts/admin.html.haml +2 -2
  61. data/app/views/layouts/admin_login.html.haml +2 -2
  62. data/config/locales/common/en.yml +1 -0
  63. data/config/locales/common/fr.yml +1 -0
  64. data/config/routes.rb +12 -1
  65. data/lib/forgeos/urlified.rb +16 -0
  66. data/lib/tasks/install.rake +3 -3
  67. data/lib/technoweenie/attachment_fu/backends/ftp_backend.rb +8 -12
  68. data/recipes/db.rb +1 -1
  69. metadata +52 -57
  70. data/app/controllers/admin/base_controller.rbc +0 -1305
  71. data/app/controllers/admin/dashboard_controller.rbc +0 -361
  72. data/app/controllers/admin/person_sessions_controller.rbc +0 -1248
  73. data/app/controllers/forgeos/application_controller.rbc +0 -2027
  74. data/app/helpers/admin/attachment_helper.rbc +0 -2340
  75. data/app/helpers/admin/base_helper.rbc +0 -2522
  76. data/app/helpers/forgeos/application_helper.rbc +0 -3152
  77. data/app/models/administrator.rbc +0 -415
  78. data/app/models/person.rbc +0 -1498
  79. data/app/models/person_session.rbc +0 -142
  80. data/app/models/right.rbc +0 -432
  81. data/app/models/role.rbc +0 -469
  82. data/app/models/setting.rbc +0 -699
  83. data/config/initializers/load_settings.rbc +0 -330
  84. data/config/routes.rbc +0 -2203
  85. data/lib/extensions.rbc +0 -126
  86. data/lib/extensions/form_helper_extensions.rbc +0 -295
  87. data/lib/extensions/i18n_fallbacks_config.rbc +0 -246
  88. data/lib/forgeos.rbc +0 -1942
  89. data/lib/forgeos/core.rbc +0 -325
  90. data/lib/forgeos/core/engine.rbc +0 -316
  91. data/lib/forgeos_core.rbc +0 -53
  92. data/lib/map_fields.rbc +0 -4437
  93. data/lib/sortable_attachments.rbc +0 -1399
  94. data/lib/sphinx_globalize.rbc +0 -785
@@ -2,7 +2,7 @@
2
2
  // COMMONS
3
3
  //--------------------- ----------
4
4
  body
5
- font-size: 62,5%
5
+ font-size: 16px
6
6
  background-image: url(/assets/forgeos/admin/backgrounds/background.png)
7
7
  font-family: Arial, Helvetica, sans-serif
8
8
  margin: 0px
@@ -31,6 +31,7 @@ li
31
31
  height: 35px
32
32
  padding:
33
33
  top: 5px
34
+
34
35
  .big-header
35
36
  background-position: 0px -251px
36
37
  padding: 10px 15px 0
@@ -42,11 +43,11 @@ li
42
43
  background-color: $white
43
44
  h1
44
45
  color: $orange
45
- +left()
46
+ +left
46
47
  font-size: 1.3em
47
48
  span
48
49
  display: block
49
- +left()
50
+ +left
50
51
  color: $lightGray
51
52
  font-size: 1.2em
52
53
  .header-separator
@@ -60,6 +61,7 @@ li
60
61
  a span
61
62
  line-height: 1em
62
63
  float: none
64
+
63
65
  //--------------------- ----------
64
66
  // BACKGROUNDS
65
67
  //--------------------- ----------
@@ -85,21 +87,22 @@ li
85
87
  .action-button
86
88
  background-position: 0 -1308px
87
89
  height: 19px
88
- +block()
90
+ +block
89
91
  margin: 3px 0 0 20px
90
92
  text-align: center
91
93
  border: 1px solid $contentHeaderBorder
92
- +borderCorner("3px","3px","3px","3px")
93
- +left()
94
- padding: 3px 5px 0 5px
94
+ +borderCorner(3px,3px,3px,3px)
95
+ +left
96
+ padding: 3px 5px 0 5px
95
97
  font-size: 0.8em
96
98
  color: $blueLink
97
99
  font-weight: bold
98
100
  background-color: white
99
101
  cursor: pointer
102
+
100
103
  .button
101
- +borderCorner("2px","2px","2px","2px")
102
- background-color: #EAEBEC
104
+ +borderCorner(2px,2px,2px,2px)
105
+ background-color: #eaebec
103
106
  background-position: 0 -10px
104
107
  border: 1px solid $contentHeaderBorder
105
108
  color: $blueLink
@@ -112,17 +115,19 @@ li
112
115
  span
113
116
  padding-top: 5px
114
117
  padding-bottom: 5px
118
+
115
119
  .library-add
116
120
  color: $lightGray
117
121
  position: absolute
118
122
  top: 45px
119
123
  left: 160px
120
- font-size: .8em
124
+ font-size: 0.8em
121
125
  span
122
126
  margin: 0 5px
123
127
  a
124
128
  color: $blueLink
125
129
  text-decoration: underline
130
+
126
131
  .add-link
127
132
  background-position: 0 -1434px
128
133
  text-decoration: underline
@@ -136,13 +141,16 @@ li
136
141
  &.gray
137
142
  background-position: 0 -1816px
138
143
  color: $gray
144
+
139
145
  //--------------------- ----------
140
146
  // HANDLERS
141
147
  //--------------------- ----------
142
148
  .ui-resizable-se, .ui-resizable-e
143
149
  display: none
150
+
144
151
  .handler
145
152
  cursor: move
153
+
146
154
  //--------------------- ----------
147
155
  // CONTENT
148
156
  //--------------------- ----------
@@ -150,22 +158,26 @@ li
150
158
  background: $lightOrangeBg
151
159
  padding: 0
152
160
  border: 0 !important
153
- +borderCorner(0,0,0,0)
161
+ +borderCorner(0, 0, 0, 0)
162
+
154
163
  .ui-tabs-nav.ui-helper-reset.ui-helper-clearfix.ui-widget-header.ui-corner-all
155
- +borderCorner(0,0,0,0)
164
+ +borderCorner(0, 0, 0, 0)
165
+
156
166
  #wrap
157
- background-color: $white !important
167
+ background-color: $white !important
158
168
  margin: 0
159
169
  width: 100%
170
+
160
171
  .padding-wrap
161
172
  padding: 10px
173
+
162
174
  .permalink
163
175
  border: 1px solid #f9f9f9
164
176
  color: $lightGray
165
177
  padding: 5px 10px
166
178
  font-weight: normal
167
179
  display: inline-block
168
- +borderCorner()
180
+ +borderCorner
169
181
  a
170
182
  color: $blueLink
171
183
  text-decoration: underline
@@ -180,9 +192,8 @@ h2.description
180
192
  font-weight: normal
181
193
 
182
194
  .fieldset
183
- zoom: 1
184
195
  border: 3px solid $lightLightGray
185
- +borderCorner(8px,8px,8px,8px)
196
+ +borderCorner(8px, 8px, 8px, 8px)
186
197
  position: relative
187
198
  margin: 20px 0
188
199
  clear: both
@@ -191,11 +202,11 @@ h2.description
191
202
  background-color: $white
192
203
  text-transform: uppercase
193
204
  color: $gray
194
- font-size: .9em
205
+ font-size: 0.9em
195
206
  font-weight: normal
196
207
  padding: 10px
197
208
  margin: -20px 0 0 20px
198
- +left()
209
+ +left
199
210
  .panel
200
211
  padding-left: 17px
201
212
  background-position: 0 -805px
@@ -205,7 +216,7 @@ h2.description
205
216
  label
206
217
  display: block
207
218
  color: $lightGray
208
- font-size: .9em
219
+ font-size: 0.9em
209
220
  margin: 8px 2px 2px
210
221
  &.radio
211
222
  display: inline
@@ -237,9 +248,9 @@ input.center
237
248
  .block-container
238
249
  height: 24px
239
250
  position: relative
240
- border: 1px solid #E0E0E0
251
+ border: 1px solid #e0e0e0
241
252
  margin: 5px 0px
242
- +borderCorner()
253
+ +borderCorner
243
254
  background: white
244
255
  .edit-link
245
256
  position: absolute
@@ -249,17 +260,18 @@ input.center
249
260
  height: 18px
250
261
  .block-type
251
262
  display: inline-block
252
- background: #E0E0E0
263
+ background: #e0e0e0
253
264
  color: $lightGray
254
265
  padding: 4px
255
266
  clear: both
256
- +left()
267
+ +left
257
268
  .block-name
258
269
  padding: 7px
270
+
259
271
  form#wrap
260
272
  .field
261
273
  width: 200px
262
- +borderCorner("3px","3px","3px","3px")
274
+ +borderCorner(3px,3px,3px,3px)
263
275
  background-position: 0 -595px
264
276
  border: 1px solid $contentHeaderBorder
265
277
  .disabled
@@ -267,58 +279,70 @@ form#wrap
267
279
  cursor: default
268
280
  a
269
281
  cursor: default
282
+
270
283
  .price
271
284
  font-weight: bold
272
285
  .tcurrency
273
286
  font-size: 0.95em
287
+
274
288
  .option-panel
275
289
  clear: both
276
290
  background-position: 0 -400px
277
291
  border-top: 1px solid $contentHeaderBorder
278
292
  position: relative
293
+
279
294
  .content-header
280
295
  background-position: 0 -588px
281
296
  height: 35px
282
297
  +opacity(0.5)
283
298
  position: relative
284
299
  z-index: 0
300
+
285
301
  .panel
286
302
  text-transform: uppercase
287
303
  color: $lightGray
288
304
  background-position: 0 -816px
289
305
  position: relative
290
306
  z-index: 1
291
- +left()
307
+ +left
292
308
  background-color: white
293
309
  padding-right: 5px
294
310
  margin: -18px 0 5px 10px
311
+
295
312
  .open .panel, .disabled .panel
296
313
  background-position: 0 -912px
314
+
297
315
  .option-panel-content
298
316
  display: none
299
317
  padding: 0 10px
300
318
  margin-bottom: 10px
301
319
  clear: both
320
+
302
321
  .open .option-panel-content
303
- +block()
322
+ +block
323
+
304
324
  .option-second-title
305
325
  text-transform: uppercase
306
326
  color: #606060 !important
307
- background-color: #FFF
327
+ background-color: white
308
328
  padding-right: 13px
329
+
309
330
  .fake-hr
310
- border-bottom: 1px solid #EEEEEE
331
+ border-bottom: 1px solid #eeeeee
311
332
  height: 0.8em
312
333
  margin: 10px 0
313
334
  overflow: visible
335
+
314
336
  #capacity
315
337
  width: 65px
338
+
316
339
  .tool-tip-me
317
340
  position: relative
318
341
  clear: both
342
+
319
343
  .tool-tip-content
320
344
  background:
321
- image: url(/assets/forgeos/admin/backgrounds/left-bubble-tool-tip.png)
345
+ image: url(/assets/forgeos/admin/backgrounds/left-bubble-tool-tip.png)
322
346
  repeat: no-repeat
323
347
  position: left top
324
348
  position: absolute
@@ -332,55 +356,65 @@ form#wrap
332
356
  border: 1px solid $whiteGray
333
357
  border-left: 0
334
358
  padding: 5px
359
+
335
360
  .option-panel-content .button.right
336
361
  position: absolute
337
362
  top: -10px
338
363
  right: 10px
364
+
339
365
  .option-panel .ui-state-highlight
340
366
  height: 26px
367
+
341
368
  .block-container .handler
342
- +left()
369
+ +left
343
370
  padding: 0
344
371
  width: 5px
345
372
  height: 16px
346
373
  margin-right: 5px
347
374
  .inner
348
375
  background:
349
- image: url(/assets/forgeos/admin/backgrounds/drag-and-drop.png)
376
+ image: url(/assets/forgeos/admin/backgrounds/drag-and-drop.png)
350
377
  repeat: repeat
351
378
  height: 16px
352
379
  margin: 0 0
353
380
  width: 5px
354
- +block()
381
+ +block
382
+
355
383
  .i-will-appear
356
384
  display: none
357
385
  span
358
386
  margin-left: 15px
359
387
  input
360
388
  border: 1px solid $contentHeaderBorder
361
- +borderCorner()
389
+ +borderCorner
362
390
  width: 80px
363
391
  text-align: center
364
392
  color: $lightGray
393
+
365
394
  .linked_to, .widget-type
366
- +left()
395
+ +left
367
396
  color: $lightGray
397
+
368
398
  .action-button.tattributes
369
399
  margin-left: 4px
370
400
  &.first
371
401
  margin-left: 20px
402
+
372
403
  .attribute-name
373
404
  font-weight: bold
405
+
374
406
  .choices
375
407
  margin: 20px 0
376
408
  input
377
409
  border: 1px solid $lightGray
378
- +borderCorner()
410
+ +borderCorner
379
411
  padding: 3px
412
+
380
413
  .legend textarea
381
- border: 1px solid #A3A3A3
382
- +borderCorner()
414
+ border: 1px solid #a3a3a3
415
+ +borderCorner
383
416
  padding: 3px
417
+
384
418
  .choices
385
419
  input
386
420
  font-weight: bold
@@ -388,10 +422,11 @@ form#wrap
388
422
  color: $lightGray
389
423
  font-weight: normal
390
424
  font-size: 1.1em
425
+
391
426
  .legend label
392
427
  color: $lightGray
393
428
  font-weight: normal
394
- font-size: .9em
429
+ font-size: 0.9em
395
430
  display: block
396
431
  margin-bottom: 5px
397
432
  a.truncate
@@ -401,6 +436,7 @@ a.truncate
401
436
 
402
437
  .select-title
403
438
  margin-left: 15px
439
+
404
440
  //--------------------- ----------
405
441
  // FOOTER
406
442
  //--------------------- ----------
@@ -424,4 +460,4 @@ a.truncate
424
460
  //--------------------- ---------
425
461
 
426
462
  .big_orange_input
427
- +element_form_name()
463
+ +element_form_name
@@ -3,42 +3,60 @@
3
3
  padding: 0
4
4
  width: 22px
5
5
  height: 24px
6
+
6
7
  .create-menu
7
8
  background-position: 0 -488px
9
+
8
10
  .create-page
9
11
  background-position: 0 -560px
12
+
10
13
  .create-block
11
14
  background-position: 0 -344px
15
+
12
16
  .create-widget
13
17
  background-position: 0 -704px
18
+
14
19
  .create-picture
15
20
  background-position: 0 -1244px
21
+
16
22
  .create-product
17
23
  background-position: 0 -632px
24
+
18
25
  .create-pack
19
26
  background-position: 0 -632px
27
+
20
28
  .add-product
21
29
  background-position: 0 -632px
30
+
22
31
  .create-product-type
23
32
  background-position: 0 -1349px
33
+
24
34
  .create-rights
25
35
  background-position: 0 -1421px
36
+
26
37
  .create-admin,
27
38
  .create-user
28
39
  background-position: 0 -1638px
40
+
29
41
  .create-role
30
42
  background-position: 0 -1494px
43
+
31
44
  .create-offer
32
45
  background-position: 0 -1565px
46
+
33
47
  .create-order
34
48
  background-position: 0 -918px
49
+
35
50
  .right-ico, .all-rights
36
51
  background-position: 0 -2833px
52
+
37
53
  .admin-ico, .all-admins,
38
54
  .user-ico, .all-users
39
55
  background-position: 0 -3503px
56
+
40
57
  .role-ico, .all-roles
41
58
  background-position: 0 -2881px
59
+
42
60
  .action-button span.create-list,
43
61
  .action-button span.update-list,
44
62
  .action-button span.widget-types,
@@ -56,18 +74,21 @@
56
74
  left: 5px
57
75
  display: none
58
76
  width: 200px
77
+
59
78
  .action-button span.choices_list
60
79
  top: 22px
61
80
  left: 0
62
81
  width: 100%
82
+
63
83
  .select_choice
64
84
  position: relative
65
85
  span.big-icons
66
86
  padding-bottom: 2px
87
+
67
88
  .action-button span.choices_list
68
89
  a
69
90
  display: block
70
- border-bottom: 1px solid #D5D5D5
91
+ border-bottom: 1px solid #d5d5d5
71
92
  color: black
72
93
  cursor: pointer
73
94
  float: none
@@ -81,39 +102,50 @@
81
102
  color: $blueLink
82
103
  span
83
104
  float: none
105
+
84
106
  .action-button span
85
- +block()
107
+ +block
86
108
  padding-top: 1px
87
109
  float: left
110
+
88
111
  .create-folder
89
112
  background-position: 0 -268px
113
+
90
114
  .create-smart-folder
91
115
  background-position: 4px -3595px
116
+
92
117
  .delete-folder
93
118
  background-position: 4px -428px
119
+
94
120
  .modify-folder
95
121
  background-position: 4px -332px
122
+
96
123
  .duplicate-folder
97
124
  background-position: 4px -284px
125
+
98
126
  .displayed
99
127
  display: block !important
128
+
100
129
  .more-actions
101
130
  background-position: 0 -3072px
102
131
  padding: 0
103
132
  width: 20px
104
133
  height: 24px
134
+
105
135
  .action-button .arrow
106
136
  padding: 0
107
137
  width: 10px
108
138
  height: 16px
109
139
  background-position: -3px -478px
140
+
110
141
  .action-button span
111
142
  &.update-list
112
143
  left: 54px
113
144
  &.widget-types
114
145
  left: 20px
146
+
115
147
  .create-list span, .update-list span, .widget-types span
116
- +block()
148
+ +block
117
149
  color: $black
118
150
  padding: 5px 10px 5px 24px
119
151
  top: 30px
@@ -125,7 +157,7 @@
125
157
  float: none
126
158
  height: auto
127
159
  cursor: pointer
128
- font-size: .9em
160
+ font-size: 0.9em
129
161
  a
130
162
  color: $black
131
163
  display: block
@@ -133,58 +165,70 @@
133
165
  background-color: $lightBlueBg
134
166
  a
135
167
  color: $blueLink
168
+
136
169
  .widget-item
137
- background-color: #FFF
170
+ background-color: white
171
+
138
172
  .create-list span:hover, .update-list span:hover, .create-list span:hover a, .update-list span:hover a
139
173
  color: $blueLink
140
174
  background-color: $lightBlueBg
175
+
141
176
  .products, .offers, .all-admins, .all-roles, .all-rights, .all-menus, .pages, .product-types
142
177
  color: $darkBrown
178
+
143
179
  .page-name, .widget-name, .menu-name, .product-name, .order-name, .media-name, .admin-name, .role-name, .right-name, .user-name, .category-name
144
180
  color: $lightGray
145
181
  padding-left: 0px
182
+
146
183
  .page-name a, .widget-name a, .menu-name a, .product-name a, .order-name a, .media-name a, .admin-name a, .role-name a, .right-name a, .user-name a, .category-name a
147
184
  color: $blueLink
148
185
  font:
149
186
  size: 1.3em !important
150
187
  weight: normal
151
- +block()
152
- +left()
188
+ +block
189
+ +left
190
+
153
191
  .page-name span, .widget-name span, .menu-name span, .product-name span, .order-name span, .media-name span, .admin-name span, .role-name span, .right-name span, .user-name span, .category-name span
154
192
  background-color: $blueLink
155
193
  color: $white
156
- +left()
157
- +borderCorner(5px,5px,5px,5px)
194
+ +left
195
+ +borderCorner(5px, 5px, 5px, 5px)
158
196
  padding: 0 5px
159
197
  margin: 3px 0 0 10px
198
+
160
199
  .see-on, .see-off
161
200
  width: 16px
162
201
  height: 16px
163
202
  display: block
164
203
  padding: 0px
165
- +left()
204
+ +left
166
205
  margin-right: 3px
206
+
167
207
  .see-on
168
208
  background-position: 0px -1008px
209
+
169
210
  .see-off
170
211
  background-position: 0px -960px
212
+
171
213
  .interact-button
172
214
  background-position: 0 -359px
173
215
  padding: 0 5px
174
- +left()
175
- +borderCorner()
216
+ +left
217
+ +borderCorner
176
218
  font-size: 1.1em
177
219
  font-weight: bold
178
220
  margin: 0 5px
179
221
  color: $white
180
222
  height: 32px
223
+
181
224
  input.interact-button
182
225
  padding: 7px 5px 8px
183
226
  border: 0px
184
227
  cursor: pointer
185
- +borderCorner()
228
+ +borderCorner
186
229
  margin: 0 5px
187
230
  width: auto
231
+
188
232
  .interact-links
189
233
  float: right
190
234
  font-size: 13px
@@ -197,7 +241,7 @@ input.interact-button
197
241
  margin-top: 20px
198
242
  margin-right: 30px
199
243
  .back-link
200
- +borderCorner(8px,8px,8px,8px)
244
+ +borderCorner(8px, 8px, 8px, 8px)
201
245
  text-decoration: underline
202
246
  color: $lightGray
203
247
  border: 0 !important
@@ -213,61 +257,86 @@ input.interact-button
213
257
  background-position: 0 -52px
214
258
  width: 3px
215
259
  height: 32px
216
- +left()
260
+ +left
217
261
  margin-left: 5px
262
+
218
263
  .interact-button-right
219
264
  background-position: 0 -533px
220
265
  width: 3px
221
266
  height: 32px
222
- +left()
267
+ +left
223
268
  margin-right: 5px
269
+
224
270
  .admin
225
271
  background-position: 0 -4301px
272
+
226
273
  .folder
227
274
  background-position: 0 -272px
275
+
228
276
  .menu, .menu-ico, .all-menus
229
277
  background-position: 0 -1152px
278
+
230
279
  .external
231
280
  background-position: 0 -1492px
281
+
232
282
  .category
233
283
  background-position: 0 -4257px
284
+
234
285
  .page
235
286
  background-position: 0 -1197px
236
287
  padding-top: 2px
288
+
237
289
  .pages
238
290
  background-position: 0 -1248px
291
+
239
292
  .block
240
293
  background-position: 0 -3685px
294
+
241
295
  .blocks
242
296
  background-position: 0 -3687px
297
+
243
298
  .widget, .widgets
244
299
  background-position: 0 -1588px
300
+
245
301
  .order
246
302
  background-position: 0 -2449px
303
+
247
304
  .products, .product
248
305
  background-position: 0 -525px
306
+
249
307
  .product-types
250
308
  background-position: 0 -2687px
309
+
251
310
  .offers
252
311
  background-position: 0 -3121px
312
+
253
313
  .picture
254
314
  background-position: 0 -2592px
315
+
255
316
  .pdf
256
317
  background-position: 0 -2546px
318
+
257
319
  .video
258
320
  background-position: 0 -3552px
321
+
259
322
  .audio
260
323
  background-position: 0 -4371px
324
+
261
325
  .media
262
326
  background-position: 0 -1969px
327
+
263
328
  .doc
264
329
  background-position: 0 -1200px
330
+
265
331
  .duplicate-link
266
332
  background-position: 0 -289px
333
+
267
334
  .edit-link
268
335
  background-position: 0 -336px
336
+
269
337
  .destroy-link
270
338
  background-position: 0 -432px
339
+
271
340
  .gray-destroy, .gray-destroy-tattribute
272
341
  background-position: 0 -205px !important
273
342
  position: absolute
@@ -277,38 +346,53 @@ input.interact-button
277
346
  width: 18px
278
347
  padding: 0
279
348
  +opacity(0.6)
349
+
280
350
  .static-content .big-icons, .widget-content .big-icons
281
351
  display: inline-block
282
352
  height: 100%
353
+
283
354
  .static-content .big-icons
284
355
  background-position: 0 -345px
356
+
285
357
  .widget-content .big-icons
286
358
  background-position: 0 -705px
359
+
287
360
  .add-picture
288
361
  background-position: 0 -1277px
362
+
289
363
  .add-pdf
290
364
  background-position: 0 -1206px
365
+
291
366
  .add-video
292
367
  background-position: 0 -1708px
368
+
293
369
  .add-audio
294
370
  background-position: 0 -1846px
371
+
295
372
  .add-media
296
373
  background-position: 0 -1131px
374
+
297
375
  .add-doc
298
376
  background-position: 0 -560px
377
+
299
378
  .add-carousel-item
300
379
  background-position: 0 -1277px
380
+
301
381
  .big-icons-verti-delete-icon
302
382
  background-position: 0 -206px
383
+
303
384
  .big-icons-verti-folder
304
385
  background-position: 0 -272px
305
386
  width: 17px
387
+
306
388
  .small-icons-verti-small-blue-plus
307
389
  background-position: 0 -1444px
308
390
  display: block
391
+
309
392
  .add-menu-link
310
393
  background-position: 0 -1442px
311
394
  color: $blueLink
395
+
312
396
  .media-hoverlay
313
397
  #inner-lightbox a
314
398
  &.picture
@@ -317,26 +401,37 @@ input.interact-button
317
401
  background-position: 5px -2544px
318
402
  &.video
319
403
  background-position: 5px -3551px
404
+
320
405
  .attribute-attribute
321
406
  background-position: 0 -3738px
407
+
322
408
  .text_attribute
323
409
  background-position: 0 -3784px
410
+
324
411
  .longtext_attribute
325
412
  background-position: 0 -3829px
413
+
326
414
  .number_attribute
327
415
  background-position: 0 -3875px
416
+
328
417
  .picklist_attribute
329
418
  background-position: 0 -3914px
419
+
330
420
  .checkbox_attribute
331
421
  background-position: 0 -3951px
422
+
332
423
  .radiobutton_attribute
333
424
  background-position: 0 -3985px
425
+
334
426
  .date_attribute
335
427
  background-position: 0 -4022px
428
+
336
429
  .picture_attribute
337
430
  background-position: 0 -2592px
431
+
338
432
  .url_attribute
339
433
  background-position: 0 -1970px
434
+
340
435
  h2
341
436
  &.orders
342
437
  background-position: 0 -2449px
@@ -346,30 +441,43 @@ h2
346
441
  background-position: 0 -3452px
347
442
  &.live-stats
348
443
  background-position: 0 -2110px
444
+
349
445
  .main-infos-cutomer h4
350
446
  background-position: 0 -3361px
447
+
351
448
  .main-infos-payment h4
352
449
  background-position: 0 -2496px
450
+
353
451
  .main-infos-note h4
354
452
  background-position: 0 -2160px
453
+
355
454
  .order-delivery-adress h4
356
455
  background-position: 0 -2066px
456
+
357
457
  .order-billing-adress h4
358
458
  background-position: 0 -1779px
459
+
359
460
  .order-delivery-method h4
360
461
  background-position: 0 -1875px
462
+
361
463
  .add-green-plus
362
464
  background-position: 0 -4062px
465
+
363
466
  .planet
364
467
  background-position: 0 -1493px
468
+
365
469
  .red-delete-icon
366
470
  background-position: 10px -4105px
471
+
367
472
  .green-add-icon
368
473
  background-position: 0px -4064px
474
+
369
475
  .tattributes
370
476
  background-position: 0px -4208px
477
+
371
478
  .create-text-attribute
372
479
  background-position: 0px -487px
480
+
373
481
  .create-choice-attribute
374
482
  background-position: 0px -488px
375
483
  .sortable-choices .block-container
@@ -390,15 +498,21 @@ h2
390
498
  &:hover
391
499
  .red-delete-icon,.green-add-icon
392
500
  display: block
501
+
393
502
  .preview
394
503
  background-position: 0px -144px
504
+
395
505
  .duplicate
396
506
  background-position: 0px -288px
507
+
397
508
  .delete
398
509
  background-position: 0px -864px
510
+
399
511
  .contact
400
512
  background-position: 0px -2977px
513
+
401
514
  .save
402
515
  background-position: 0 -96px
516
+
403
517
  .cancel
404
518
  background-position: 0 -4339px