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
data/README.textile CHANGED
@@ -2,40 +2,18 @@ h1. Introduction
2
2
 
3
3
  ForgeosCore is the core of Forgeos project "http://www.forgeos.com":http://www.forgeos.com
4
4
 
5
- VERSION : 0.9.6
5
+ VERSION : 1.9.2
6
6
 
7
7
  h1. Prerequisites
8
8
 
9
9
  h2. Plugins
10
10
 
11
- * engines
12
11
  * attachment_fu
13
12
  * localized_dates
14
13
 
15
- h2. Gems
16
-
17
- * acts-as-taggable-on
18
- * fastercsv >= 1.5.1
19
- * ar-extensions >= 0.9.2
20
- * bcrypt-ruby >= 2.1.2
21
- * authlogic >= 2.1.3
22
- * haml >= 2.2.15
23
- * will_paginate > 2.3.11
24
- * mime-types >= 1.16
25
- * acts_as_list >= 0.1.2
26
- * acts_as_tree >= 0.1.1
27
- * acts_as_commentable = 3.0.0
28
- * webpulser-jrails >= 0.4.2
29
- * webpulser-habtm_list = 0.1.2
30
- * globalize2
31
- * thinking-sphinx >= 1.3.14
32
- * ruleby = 0.6
33
- * aasm = 2.1.5
34
-
35
14
  h1. Initialize
36
15
 
37
16
  <pre><code>
38
- ./script/generate plugin_migration forgeos_core
39
17
  rake forgeos:core:install
40
18
  </code></pre>
41
19
 
@@ -112,6 +112,8 @@ function InitCustomSelects() {
112
112
 
113
113
  // set the proper index
114
114
  realselect.selectedIndex = option.find('span.index').text();
115
+ realselect.find('option').attr('selected', false);
116
+ realselect.find('option:eq('+option.find('span.index').text()+')').attr('selected', true);
115
117
  /* Begin of Webpulser code */
116
118
  realselect.trigger('change');
117
119
  enhanced.find('.dropdown').addClass(realselect.val());
@@ -10,8 +10,9 @@ function openimageUploadDialog(link){
10
10
  }
11
11
 
12
12
  //open an upload dialog Box
13
- function openimageUploadDialogLeftSidebar(link){
14
- initImageUploadLeftSidebar(link);
13
+ function openimageLeftSidebarUploadDialog(link){
14
+ jQuery('#imageLeftSidebarUploadDialog').dialog('open');
15
+ forgeosInitUpload('#imageLeftSidebar','add_picture_to_category');
15
16
  }
16
17
 
17
18
  //open an upload dialog Box
@@ -31,4 +32,22 @@ function toggleSelectedOverlay(element){
31
32
  jQuery(element).addClass('selected');
32
33
  jQuery(element).siblings().removeClass('selected');
33
34
  }
34
- }
35
+ }
36
+
37
+ function add_picture_to_category(path, id, name){
38
+ var cat_id = get_rails_element_id($('.tree-li-selected-to-add-image'));
39
+ jQuery.ajax({
40
+ "success": function(result){
41
+ jQuery.jstree._focused().refresh();
42
+ jQuery('#imageLeftSidebarSelectDialog').dialog('close');
43
+ },
44
+ "error": function(){},
45
+ "data": {
46
+ 'category[attachment_ids]': [id],
47
+ authenticity_token: window._forgeos_js_vars.token
48
+ },
49
+ "dataType": 'json',
50
+ "type": 'put',
51
+ "url": '/admin/categories/'+ cat_id +'.json',
52
+ });
53
+ }
@@ -19,7 +19,7 @@ function tmceInit(selector){
19
19
  content_css : "/assets/forgeos/tinyMCE/styles.css",
20
20
  convert_urls: 0,
21
21
  onchange_callback: function(inst){ jQuery(inst.getElement()).trigger('change'); },
22
- theme_advanced_buttons1 : "undo,redo,|,pasteword,|,anchor,image,media,|,code,preview,|,removeformat,cleanup",
22
+ theme_advanced_buttons1 : "undo,redo,|,pasteword,|,anchor,image,media,|,code,preview,|,removeformat,cleanup,|, cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,link,unlink,anchor,image,code,preview,|,forecolor,backcolor",
23
23
  theme_advanced_buttons2 : "bold,italic,underline,strikethrough,|,styleselect,formatselect,fontselect,fontsizeselect,forecolor,|,hr",
24
24
  theme_advanced_buttons3 : "",
25
25
  theme_advanced_resize_horizontal : false,
@@ -0,0 +1,55 @@
1
+ function setup_upload_dialog(selector) {
2
+ jQuery(selector + 'Dialog').dialog({
3
+ autoOpen:false,
4
+ modal:true,
5
+ width: 500,
6
+ buttons: {
7
+ Upload: function() {
8
+ jQuery(selector).uploadifyUpload();
9
+ },
10
+ 'Clear queue': function() {
11
+ jQuery(selector).uploadifyClearQueue();
12
+ }
13
+ },
14
+ resizable:'se'
15
+ });
16
+ }
17
+
18
+ function forgeosInitUpload(selector, callback) {
19
+ var upload = selector + 'Upload';
20
+ var dialog = upload + 'Dialog';
21
+ var select_dialog = selector + 'SelectDialog';
22
+
23
+ jQuery(selector + 'Dialog').html('<div id="'+upload.replace('#','')+'"></div><div class="library-add"><span>or</span><a href="#" onclick="$("'+dialog+'").dialog(\'close\'); $("'+select_dialog+'").dialog(\'open\'); return false;">add from library</a></div>');
24
+
25
+ var uploadify_datas = { "format": "json" };
26
+ uploadify_datas[window._forgeos_js_vars.session_key] = window._forgeos_js_vars.session;
27
+
28
+ $(upload).uploadify({
29
+ "uploader": '/assets/forgeos/uploadify/uploadify.swf',
30
+ "cancelImg": '/assets/forgeos/admin/big-icons/delete-icon.png',
31
+ "script": "/admin/pictures",
32
+ "buttonImg": '/assets/forgeos/uploadify/choose-picture_'+window._forgeos_js_vars.locale+'.png',
33
+ "width": "154",
34
+ "height": "24",
35
+ "scriptData": uploadify_datas,
36
+ "ScriptAccess": "always",
37
+ "multi": "true",
38
+ "displayData": "speed",
39
+ "onComplete": function(e,queueID,fileObj,response,data) {
40
+ if(typeof JSON=="object" && typeof JSON.parse=="function") {
41
+ result = JSON.parse(response);
42
+ } else{
43
+ result = eval('(' + response + ')');
44
+ }
45
+ if (result.result == 'success'){
46
+ eval(callback + '(result.path,result.id,fileObj.name);');
47
+ } else {
48
+ display_notification_message('error',result.error);
49
+ }
50
+ },
51
+ "onAllComplete": function() {
52
+ jQuery(dialog).dialog('close');
53
+ }
54
+ });
55
+ }
@@ -1,12 +1,12 @@
1
1
  function openpictureimageUploadDialog(link){
2
- initpictureImageUpload(link);
2
+ forgeosInitUpload('#imagepicture', 'add_picture_picture_to_element');
3
3
  jQuery('#imagepictureSelectDialog').dialog('open');
4
4
  }
5
5
  function openimageimageUploadDialog(link){
6
- initimageImageUpload(link);
6
+ forgeosInitUpload('#imageimage','add_image_picture_to_element');
7
7
  jQuery('#imageimageSelectDialog').dialog('open');
8
8
  }
9
9
  function openvisualsimageUploadDialog(link){
10
- initvisualsImageUpload(link);
10
+ forgeosInitUpload('#imagevisuals', 'add_picture_to_visuals');
11
11
  jQuery('#imagevisualsSelectDialog').dialog('open');
12
12
  }
@@ -8,37 +8,11 @@ jQuery(document).ready(function(){
8
8
  resizable:'se'
9
9
  });
10
10
 
11
- jQuery('#imageUploadDialog').dialog({
12
- autoOpen:false,
13
- modal:true,
14
- width: 500,
15
- buttons: {
16
- Upload: function() {
17
- jQuery('#imageUpload').uploadifyUpload();
18
- },
19
- 'Clear queue': function() {
20
- jQuery('#imageUpload').uploadifyClearQueue();
21
- }
22
- },
23
- resizable:'se'
24
- });
25
-
26
- jQuery('#imageUploadDialogLeftSidebar').dialog({
27
- autoOpen:false,
28
- modal:true,
29
- width: 500,
30
- buttons: {
31
- Upload: function() {
32
- jQuery('#imageUploadLeftSidebar').uploadifyUpload();
33
- },
34
- 'Clear queue': function() {
35
- jQuery('#imageUploadLeftSidebar').uploadifyClearQueue();
36
- }
37
- },
38
- resizable:'se'
39
- });
11
+ setup_upload_dialog('#imageUpload');
12
+ setup_upload_dialog('#imageLeftSidebarUpload');
13
+ setup_upload_dialog('#fileUpload');
40
14
 
41
- jQuery('#imageSelectDialogLeftSidebar').dialog({
15
+ jQuery('#imageLeftSidebarSelectDialog').dialog({
42
16
  autoOpen:false,
43
17
  modal:true,
44
18
  width: 800,
@@ -51,22 +25,6 @@ jQuery(document).ready(function(){
51
25
  resizable:'se'
52
26
  });
53
27
 
54
-
55
- jQuery('#fileUploadDialog').dialog({
56
- autoOpen:false,
57
- modal:true,
58
- width: 500,
59
- buttons: {
60
- Upload: function() {
61
- jQuery('#fileUpload').uploadifyUpload();
62
- },
63
- 'Clear queue': function() {
64
- jQuery('#fileUpload').uploadifyClearQueue();
65
- }
66
- },
67
- resizable:'se'
68
- });
69
-
70
28
  jQuery('.display-thumbnails').click(function(e) {
71
29
  e.preventDefault();
72
30
  if(jQuery(this).hasClass('off')){
@@ -1,11 +1,28 @@
1
1
  jQuery(document).ready(function(){
2
2
 
3
+ setup_upload_dialog('#imagepictureUpload');
4
+ setup_upload_dialog('#imageimageUpload');
5
+ setup_upload_dialog('#imagevisualsUpload');
6
+
7
+
3
8
  // add a picture button
4
9
  jQuery('.add-picturepicture').live('click',function(){
5
10
  openpictureimageUploadDialog(jQuery(this));
6
11
  return false;
7
12
  });
8
13
 
14
+ // add visuals button
15
+ jQuery('.add-visualpictures').live('click',function(){
16
+ openvisualsimageUploadDialog(jQuery(this));
17
+ return false;
18
+ });
19
+
20
+ // add a image button
21
+ jQuery('.add-imagepicture').live('click',function(){
22
+ openimageimageUploadDialog(jQuery(this));
23
+ return false;
24
+ });
25
+
9
26
  // Dialog to select picture
10
27
  jQuery('#imagepictureSelectDialog.project').dialog({
11
28
  autoOpen:false,
@@ -32,27 +49,6 @@ jQuery(document).ready(function(){
32
49
  }
33
50
  });
34
51
 
35
- jQuery('#imagepictureUploadDialog').dialog({
36
- autoOpen:false,
37
- modal:true,
38
- width: 500,
39
- buttons: {
40
- Upload: function() {
41
- jQuery('#imagepictureUpload').uploadifyUpload();
42
- },
43
- 'Clear queue': function() {
44
- jQuery('#imagepictureUpload').uploadifyClearQueue();
45
- }
46
- },
47
- resizable:'se'
48
- });
49
-
50
- // add a image button
51
- jQuery('.add-imagepicture').live('click',function(){
52
- openimageimageUploadDialog(jQuery(this));
53
- return false;
54
- });
55
-
56
52
  // Dialog to select picture
57
53
  jQuery('#imageimageSelectDialog.project').dialog({
58
54
  autoOpen:false,
@@ -79,27 +75,6 @@ jQuery(document).ready(function(){
79
75
  }
80
76
  });
81
77
 
82
- jQuery('#imageimageUploadDialog').dialog({
83
- autoOpen:false,
84
- modal:true,
85
- width: 500,
86
- buttons: {
87
- Upload: function() {
88
- jQuery('#imageimageUpload').uploadifyUpload();
89
- },
90
- 'Clear queue': function() {
91
- jQuery('#imageimageUpload').uploadifyClearQueue();
92
- }
93
- },
94
- resizable:'se'
95
- });
96
-
97
- // add visuals button
98
- jQuery('.add-visualpictures').live('click',function(){
99
- openvisualsimageUploadDialog(jQuery(this));
100
- return false;
101
- });
102
-
103
78
  // Dialog to select pictures
104
79
  jQuery('#imagevisualsSelectDialog.project').dialog({
105
80
  autoOpen:false,
@@ -126,19 +101,4 @@ jQuery(document).ready(function(){
126
101
  }
127
102
  });
128
103
 
129
- jQuery('#imagevisualsUploadDialog').dialog({
130
- autoOpen:false,
131
- modal:true,
132
- width: 500,
133
- buttons: {
134
- Upload: function() {
135
- jQuery('#imagevisualsUpload').uploadifyUpload();
136
- },
137
- 'Clear queue': function() {
138
- jQuery('#imagevisualsUpload').uploadifyClearQueue();
139
- }
140
- },
141
- resizable:'se'
142
- });
143
-
144
104
  });
@@ -3,7 +3,6 @@
3
3
  margin-right: auto
4
4
  width: 960px
5
5
 
6
-
7
6
  .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12, .grid_13, .grid_14, .grid_15, .grid_16
8
7
  display: inline
9
8
  float: left
@@ -11,399 +10,280 @@
11
10
  margin-left: 10px
12
11
  margin-right: 10px
13
12
 
14
-
15
13
  .container_12 .grid_3, .container_16 .grid_4
16
14
  width: 220px
17
15
 
18
-
19
16
  .container_12 .grid_6, .container_16 .grid_8
20
17
  width: 460px
21
18
 
22
-
23
19
  .container_12 .grid_9, .container_16 .grid_12
24
20
  width: 700px
25
21
 
26
-
27
22
  .container_12 .grid_12, .container_16 .grid_16
28
23
  width: 940px
29
24
 
30
-
31
25
  .alpha
32
26
  margin-left: 0
33
27
 
34
-
35
28
  .omega
36
29
  margin-right: 0
37
30
 
38
-
39
31
  .container_12
40
32
  .grid_1
41
33
  width: 60px
42
-
43
34
  .grid_2
44
35
  width: 140px
45
-
46
36
  .grid_4
47
37
  width: 300px
48
-
49
38
  .grid_5
50
39
  width: 380px
51
-
52
40
  .grid_7
53
41
  width: 540px
54
-
55
42
  .grid_8
56
43
  width: 620px
57
-
58
44
  .grid_10
59
45
  width: 780px
60
-
61
46
  .grid_11
62
47
  width: 860px
63
48
 
64
-
65
49
  .container_16
66
50
  .grid_1
67
51
  width: 40px
68
-
69
52
  .grid_2
70
53
  width: 100px
71
-
72
54
  .grid_3
73
55
  width: 160px
74
-
75
56
  .grid_5
76
57
  width: 280px
77
-
78
58
  .grid_6
79
59
  width: 340px
80
-
81
60
  .grid_7
82
61
  width: 400px
83
-
84
62
  .grid_9
85
63
  width: 520px
86
-
87
64
  .grid_10
88
65
  width: 580px
89
-
90
66
  .grid_11
91
67
  width: 640px
92
-
93
68
  .grid_13
94
69
  width: 760px
95
-
96
70
  .grid_14
97
71
  width: 820px
98
-
99
72
  .grid_15
100
73
  width: 880px
101
74
 
102
-
103
75
  .container_12 .prefix_3, .container_16 .prefix_4
104
76
  padding-left: 240px
105
77
 
106
-
107
78
  .container_12 .prefix_6, .container_16 .prefix_8
108
79
  padding-left: 480px
109
80
 
110
-
111
81
  .container_12 .prefix_9, .container_16 .prefix_12
112
82
  padding-left: 720px
113
83
 
114
-
115
84
  .container_12
116
85
  .prefix_1
117
86
  padding-left: 80px
118
-
119
87
  .prefix_2
120
88
  padding-left: 160px
121
-
122
89
  .prefix_4
123
90
  padding-left: 320px
124
-
125
91
  .prefix_5
126
92
  padding-left: 400px
127
-
128
93
  .prefix_7
129
94
  padding-left: 560px
130
-
131
95
  .prefix_8
132
96
  padding-left: 640px
133
-
134
97
  .prefix_10
135
98
  padding-left: 800px
136
-
137
99
  .prefix_11
138
100
  padding-left: 880px
139
101
 
140
-
141
102
  .container_16
142
103
  .prefix_1
143
104
  padding-left: 60px
144
-
145
105
  .prefix_2
146
106
  padding-left: 120px
147
-
148
107
  .prefix_3
149
108
  padding-left: 180px
150
-
151
109
  .prefix_5
152
110
  padding-left: 300px
153
-
154
111
  .prefix_6
155
112
  padding-left: 360px
156
-
157
113
  .prefix_7
158
114
  padding-left: 420px
159
-
160
115
  .prefix_9
161
116
  padding-left: 540px
162
-
163
117
  .prefix_10
164
118
  padding-left: 600px
165
-
166
119
  .prefix_11
167
120
  padding-left: 660px
168
-
169
121
  .prefix_13
170
122
  padding-left: 780px
171
-
172
123
  .prefix_14
173
124
  padding-left: 840px
174
-
175
125
  .prefix_15
176
126
  padding-left: 900px
177
127
 
178
-
179
128
  .container_12 .suffix_3, .container_16 .suffix_4
180
129
  padding-right: 240px
181
130
 
182
-
183
131
  .container_12 .suffix_6, .container_16 .suffix_8
184
132
  padding-right: 480px
185
133
 
186
-
187
134
  .container_12 .suffix_9, .container_16 .suffix_12
188
135
  padding-right: 720px
189
136
 
190
-
191
137
  .container_12
192
138
  .suffix_1
193
139
  padding-right: 80px
194
-
195
140
  .suffix_2
196
141
  padding-right: 160px
197
-
198
142
  .suffix_4
199
143
  padding-right: 320px
200
-
201
144
  .suffix_5
202
145
  padding-right: 400px
203
-
204
146
  .suffix_7
205
147
  padding-right: 560px
206
-
207
148
  .suffix_8
208
149
  padding-right: 640px
209
-
210
150
  .suffix_10
211
151
  padding-right: 800px
212
-
213
152
  .suffix_11
214
153
  padding-right: 880px
215
154
 
216
-
217
155
  .container_16
218
156
  .suffix_1
219
157
  padding-right: 60px
220
-
221
158
  .suffix_2
222
159
  padding-right: 120px
223
-
224
160
  .suffix_3
225
161
  padding-right: 180px
226
-
227
162
  .suffix_5
228
163
  padding-right: 300px
229
-
230
164
  .suffix_6
231
165
  padding-right: 360px
232
-
233
166
  .suffix_7
234
167
  padding-right: 420px
235
-
236
168
  .suffix_9
237
169
  padding-right: 540px
238
-
239
170
  .suffix_10
240
171
  padding-right: 600px
241
-
242
172
  .suffix_11
243
173
  padding-right: 660px
244
-
245
174
  .suffix_13
246
175
  padding-right: 780px
247
-
248
176
  .suffix_14
249
177
  padding-right: 840px
250
-
251
178
  .suffix_15
252
179
  padding-right: 900px
253
180
 
254
-
255
181
  .container_12 .push_3, .container_16 .push_4
256
182
  left: 240px
257
183
 
258
-
259
184
  .container_12 .push_6, .container_16 .push_8
260
185
  left: 480px
261
186
 
262
-
263
187
  .container_12 .push_9, .container_16 .push_12
264
188
  left: 720px
265
189
 
266
-
267
190
  .container_12
268
191
  .push_1
269
192
  left: 80px
270
-
271
193
  .push_2
272
194
  left: 160px
273
-
274
195
  .push_4
275
196
  left: 320px
276
-
277
197
  .push_5
278
198
  left: 400px
279
-
280
199
  .push_7
281
200
  left: 560px
282
-
283
201
  .push_8
284
202
  left: 640px
285
-
286
203
  .push_10
287
204
  left: 800px
288
-
289
205
  .push_11
290
206
  left: 880px
291
207
 
292
-
293
208
  .container_16
294
209
  .push_1
295
210
  left: 60px
296
-
297
211
  .push_2
298
212
  left: 120px
299
-
300
213
  .push_3
301
214
  left: 180px
302
-
303
215
  .push_5
304
216
  left: 300px
305
-
306
217
  .push_6
307
218
  left: 360px
308
-
309
219
  .push_7
310
220
  left: 420px
311
-
312
221
  .push_9
313
222
  left: 540px
314
-
315
223
  .push_10
316
224
  left: 600px
317
-
318
225
  .push_11
319
226
  left: 660px
320
-
321
227
  .push_13
322
228
  left: 780px
323
-
324
229
  .push_14
325
230
  left: 840px
326
-
327
231
  .push_15
328
232
  left: 900px
329
233
 
330
-
331
234
  .container_12 .pull_3, .container_16 .pull_4
332
235
  left: -240px
333
236
 
334
-
335
237
  .container_12 .pull_6, .container_16 .pull_8
336
238
  left: -480px
337
239
 
338
-
339
240
  .container_12 .pull_9, .container_16 .pull_12
340
241
  left: -720px
341
242
 
342
-
343
243
  .container_12
344
244
  .pull_1
345
245
  left: -80px
346
-
347
246
  .pull_2
348
247
  left: -160px
349
-
350
248
  .pull_4
351
249
  left: -320px
352
-
353
250
  .pull_5
354
251
  left: -400px
355
-
356
252
  .pull_7
357
253
  left: -560px
358
-
359
254
  .pull_8
360
255
  left: -640px
361
-
362
256
  .pull_10
363
257
  left: -800px
364
-
365
258
  .pull_11
366
259
  left: -880px
367
260
 
368
-
369
261
  .container_16
370
262
  .pull_1
371
263
  left: -60px
372
-
373
264
  .pull_2
374
265
  left: -120px
375
-
376
266
  .pull_3
377
267
  left: -180px
378
-
379
268
  .pull_5
380
269
  left: -300px
381
-
382
270
  .pull_6
383
271
  left: -360px
384
-
385
272
  .pull_7
386
273
  left: -420px
387
-
388
274
  .pull_9
389
275
  left: -540px
390
-
391
276
  .pull_10
392
277
  left: -600px
393
-
394
278
  .pull_11
395
279
  left: -660px
396
-
397
280
  .pull_13
398
281
  left: -780px
399
-
400
282
  .pull_14
401
283
  left: -840px
402
-
403
284
  .pull_15
404
285
  left: -900px
405
286
 
406
-
407
287
  .clear
408
288
  clear: both
409
289
  display: block
@@ -412,13 +292,11 @@
412
292
  width: 0
413
293
  height: 0
414
294
 
415
-
416
295
  .clearfix
417
296
  display: inline-block
418
-
419
297
  &:after
420
298
  clear: both
421
- content: ' '
299
+ content: " "
422
300
  display: block
423
301
  font-size: 0
424
302
  line-height: 0
@@ -426,10 +304,8 @@
426
304
  width: 0
427
305
  height: 0
428
306
 
429
-
430
307
  * html .clearfix
431
308
  height: 1%
432
309
 
433
-
434
310
  .clearfix
435
311
  display: block