raffle_v1 0.0.5 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (418) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +1 -1
  3. data/Rakefile +3 -9
  4. data/app/assets/javascripts/raffle_v1/application.js +6 -5
  5. data/app/assets/stylesheets/raffle_v1/application.css.scss +4 -31
  6. data/app/assets/stylesheets/raffle_v1/framework_and_overrides.css.scss +422 -0
  7. data/app/controllers/raffle_v1/admin/base_controller.rb +11 -0
  8. data/app/controllers/raffle_v1/admin/users_controller.rb +69 -0
  9. data/app/controllers/raffle_v1/application_controller.rb +51 -78
  10. data/app/controllers/raffle_v1/pages_controller.rb +11 -178
  11. data/app/helpers/raffle_v1/application_helper.rb +5 -0
  12. data/app/models/raffle_v1/user.rb +61 -107
  13. data/app/views/layouts/raffle_v1/application.html.erb +28 -5
  14. data/app/views/raffle_v1/admin/base/index.html.erb +39 -0
  15. data/app/views/raffle_v1/admin/users/edit.html.erb +65 -0
  16. data/app/views/raffle_v1/admin/users/index.html.erb +55 -0
  17. data/app/views/raffle_v1/devise/confirmations/new.html.erb +31 -0
  18. data/app/views/raffle_v1/devise/mailer/confirmation_instructions.html.erb +12 -0
  19. data/app/views/raffle_v1/devise/mailer/reset_password_instructions.html.erb +15 -0
  20. data/app/views/raffle_v1/devise/passwords/edit.html.erb +43 -0
  21. data/app/views/raffle_v1/devise/passwords/new.html.erb +31 -0
  22. data/app/views/raffle_v1/devise/registrations/edit.html.erb +63 -0
  23. data/app/views/raffle_v1/devise/registrations/new.html.erb +58 -0
  24. data/app/views/raffle_v1/devise/sessions/new.html.erb +45 -0
  25. data/app/views/raffle_v1/devise/shared/_links.erb +29 -0
  26. data/app/views/raffle_v1/layouts/_footer.html.erb +17 -0
  27. data/app/views/raffle_v1/layouts/_messages.html.erb +9 -0
  28. data/app/views/raffle_v1/layouts/_navigation.html.erb +18 -0
  29. data/app/views/raffle_v1/layouts/_navigation_links.html.erb +13 -0
  30. data/app/views/raffle_v1/layouts/application.html.erb +37 -0
  31. data/app/views/raffle_v1/pages/home.html.erb +3 -0
  32. data/app/views/raffle_v1/pages/inside.html.erb +3 -0
  33. data/config/add_files/date_format.rb +27 -0
  34. data/config/add_files/devise.rb +267 -0
  35. data/config/add_files/filter_parameter_logging.rb +4 -0
  36. data/config/add_files/friendly_id.rb +88 -0
  37. data/config/add_files/kaminari_config.rb +10 -0
  38. data/config/add_files/rafflev1.rb +4 -0
  39. data/config/initializers/rafflev1.rb +1 -6
  40. data/config/locales/devise.en.yml +59 -0
  41. data/config/routes.rb +30 -5
  42. data/db/migrate/20130123214645_devise_create_raffle_v1_users.rb +56 -0
  43. data/db/migrate/{20130123214645_devise_create_users.rb → 20130124004626_devise_create_raffle_v1_admins.rb} +7 -7
  44. data/db/migrate/{20130124231541_create_versions.rb → 20130124231541_create_raffle_v1_versions.rb} +5 -5
  45. data/db/migrate/20140719165853_create_raffle_v1_friendly_id_slugs.rb +15 -0
  46. data/db/seeds.rb +24 -77
  47. data/lib/generators/raffle_v1/install/install_generator.rb +142 -54
  48. data/lib/generators/raffle_v1/install/templates/assets/images/raffle_v1/game.png +0 -0
  49. data/lib/generators/raffle_v1/install/templates/assets/images/raffle_v1/gift.png +0 -0
  50. data/lib/generators/raffle_v1/install/templates/assets/images/raffle_v1/lifesaver.png +0 -0
  51. data/lib/generators/raffle_v1/install/templates/assets/images/raffle_v1/person01.jpg +0 -0
  52. data/lib/generators/raffle_v1/install/templates/assets/javascripts/raffle_v1/application.js +17 -0
  53. data/lib/generators/raffle_v1/install/templates/assets/stylesheets/raffle_v1/application.css.scss +7 -0
  54. data/lib/generators/raffle_v1/install/templates/assets/stylesheets/raffle_v1/framework_and_overrides.css.scss +422 -0
  55. data/lib/generators/raffle_v1/install/templates/config/initializers/date_format.rb +27 -0
  56. data/lib/generators/raffle_v1/install/templates/config/initializers/devise.rb +269 -0
  57. data/lib/generators/raffle_v1/install/templates/config/initializers/filter_parameter_logging.rb +4 -0
  58. data/lib/generators/raffle_v1/install/templates/config/initializers/friendly_id.rb +89 -0
  59. data/lib/generators/raffle_v1/install/templates/config/initializers/kaminari_config.rb +11 -0
  60. data/lib/generators/raffle_v1/install/templates/config/initializers/rafflev1.rb +4 -0
  61. data/lib/generators/raffle_v1/install/templates/db/seeds.rb +28 -0
  62. data/lib/raffle_v1/version.rb +2 -2
  63. data/test/controllers/raffle_v1/locales_controller_test.rb +51 -0
  64. data/test/controllers/raffle_v1/page_layouts_controller_test.rb +51 -0
  65. data/test/controllers/raffle_v1/pages_controller_test.rb +51 -0
  66. data/test/controllers/raffle_v1/program_locales_controller_test.rb +51 -0
  67. data/test/controllers/raffle_v1/program_settings_controller_test.rb +51 -0
  68. data/test/controllers/raffle_v1/programs_controller_test.rb +51 -0
  69. data/test/controllers/raffle_v1/role_users_controller_test.rb +51 -0
  70. data/test/controllers/raffle_v1/roles_controller_test.rb +51 -0
  71. data/test/controllers/raffle_v1/style_sheets_controller_test.rb +51 -0
  72. data/test/dummy/Guardfile +24 -0
  73. data/test/dummy/README.rdoc +15 -248
  74. data/test/dummy/Rakefile +1 -2
  75. data/test/dummy/app/assets/javascripts/application.js +3 -5
  76. data/test/dummy/app/assets/stylesheets/application.css +5 -3
  77. data/test/dummy/app/controllers/application_controller.rb +3 -1
  78. data/test/dummy/app/models/user.rb +4 -0
  79. data/test/dummy/app/views/layouts/application.html.erb +2 -2
  80. data/test/dummy/assets/javascripts/application.js +17 -0
  81. data/test/dummy/assets/stylesheets/application.css.scss +7 -0
  82. data/test/dummy/assets/stylesheets/framework_and_overrides.css.scss +422 -0
  83. data/test/dummy/bin/bundle +3 -0
  84. data/test/dummy/bin/rails +4 -0
  85. data/test/dummy/bin/rake +4 -0
  86. data/test/dummy/config.ru +1 -1
  87. data/test/dummy/config/application.rb +29 -47
  88. data/test/dummy/config/boot.rb +4 -9
  89. data/test/dummy/config/database.yml +48 -13
  90. data/test/dummy/config/environment.rb +3 -3
  91. data/test/dummy/config/environments/development.rb +19 -19
  92. data/test/dummy/config/environments/production.rb +44 -28
  93. data/test/dummy/config/environments/test.rb +17 -15
  94. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  95. data/test/dummy/config/initializers/date_format.rb +27 -0
  96. data/test/dummy/config/initializers/devise.rb +269 -0
  97. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  98. data/test/dummy/config/initializers/friendly_id.rb +89 -0
  99. data/test/dummy/config/initializers/inflections.rb +6 -5
  100. data/test/dummy/config/initializers/kaminari_config.rb +11 -0
  101. data/test/dummy/config/initializers/mime_types.rb +0 -1
  102. data/test/dummy/config/initializers/rafflev1.rb +4 -0
  103. data/test/dummy/config/initializers/session_store.rb +1 -6
  104. data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
  105. data/test/dummy/config/locales/en.yml +20 -2
  106. data/{lib/database_cleaner-0.7.2/examples/db/sqlite_databases_go_here → test/dummy/config/rafflev1.yml} +0 -0
  107. data/test/dummy/config/routes.rb +3 -1
  108. data/test/dummy/config/secrets.yml +22 -0
  109. data/test/dummy/db/migrate/20140719173448_devise_create_raffle_v1_users.raffle_v1.rb +57 -0
  110. data/{db/migrate/20130124004626_devise_create_admins.rb → test/dummy/db/migrate/20140719173449_devise_create_raffle_v1_admins.raffle_v1.rb} +8 -7
  111. data/test/dummy/db/migrate/20140719173450_create_raffle_v1_versions.raffle_v1.rb +19 -0
  112. data/test/dummy/db/migrate/20140719173451_create_raffle_v1_friendly_id_slugs.raffle_v1.rb +16 -0
  113. data/test/dummy/db/schema.rb +72 -12
  114. data/test/dummy/db/seeds.rb +30 -0
  115. data/test/dummy/public/404.html +54 -13
  116. data/test/dummy/public/422.html +54 -13
  117. data/test/dummy/public/500.html +53 -12
  118. data/test/dummy/spec/factories.rb +5 -0
  119. data/test/dummy/spec/models/user_spec.rb +5 -0
  120. data/test/dummy/spec/rails_helper.rb +66 -0
  121. data/test/dummy/spec/spec_helper.rb +78 -0
  122. data/test/dummy/test/factories/users.rb +6 -0
  123. data/test/dummy/vendor/assets/javascripts/all_file.js +0 -0
  124. data/test/dummy/vendor/assets/javascripts/all_raffle_v1.js +7 -0
  125. data/test/dummy/vendor/assets/stylesheets/all_file.css +0 -0
  126. data/test/dummy/vendor/assets/stylesheets/all_raffle_v1.css +9 -0
  127. data/test/fixtures/raffle_v1/abilities.yml +11 -0
  128. data/test/fixtures/raffle_v1/add_name_to_users.yml +11 -0
  129. data/test/fixtures/raffle_v1/admin_abilities.yml +11 -0
  130. data/test/fixtures/raffle_v1/admins.yml +11 -0
  131. data/test/fixtures/raffle_v1/locales.yml +9 -0
  132. data/test/fixtures/raffle_v1/page_layouts.yml +11 -0
  133. data/test/fixtures/raffle_v1/pages.yml +41 -0
  134. data/test/fixtures/raffle_v1/program_locales.yml +9 -0
  135. data/test/fixtures/raffle_v1/program_settings.yml +7 -0
  136. data/test/fixtures/raffle_v1/programs.yml +23 -0
  137. data/test/fixtures/raffle_v1/role_users.yml +9 -0
  138. data/test/fixtures/raffle_v1/roles.yml +7 -0
  139. data/test/fixtures/raffle_v1/style_sheets.yml +17 -0
  140. data/test/fixtures/raffle_v1/stylesheets.yml +11 -0
  141. data/test/fixtures/raffle_v1/terms_and_conditions.yml +11 -0
  142. data/test/fixtures/raffle_v1/testers.yml +11 -0
  143. data/test/fixtures/raffle_v1/translation_keys.yml +11 -0
  144. data/test/fixtures/raffle_v1/translation_objects.yml +11 -0
  145. data/test/fixtures/raffle_v1/translations.yml +11 -0
  146. data/test/fixtures/raffle_v1/users.yml +11 -0
  147. data/test/helpers/raffle_v1/locales_helper_test.rb +6 -0
  148. data/test/helpers/raffle_v1/page_layouts_helper_test.rb +6 -0
  149. data/test/{unit/helpers/raffle_v1/posts_helper_test.rb → helpers/raffle_v1/pages_helper_test.rb} +1 -1
  150. data/test/helpers/raffle_v1/program_locales_helper_test.rb +6 -0
  151. data/test/helpers/raffle_v1/program_settings_helper_test.rb +6 -0
  152. data/test/helpers/raffle_v1/programs_helper_test.rb +6 -0
  153. data/test/helpers/raffle_v1/role_users_helper_test.rb +6 -0
  154. data/test/helpers/raffle_v1/roles_helper_test.rb +6 -0
  155. data/test/helpers/raffle_v1/style_sheets_helper_test.rb +6 -0
  156. data/test/{unit/raffle_v1/comment_test.rb → models/raffle_v1/ability_test.rb} +1 -1
  157. data/test/{functional/raffle_v1/comments_controller_test.rb → models/raffle_v1/add_name_to_user_test.rb} +1 -1
  158. data/test/models/raffle_v1/admin_ability_test.rb +9 -0
  159. data/test/models/raffle_v1/admin_test.rb +9 -0
  160. data/test/models/raffle_v1/locale_test.rb +9 -0
  161. data/test/models/raffle_v1/page_layout_test.rb +9 -0
  162. data/test/{unit/raffle_v1/post_test.rb → models/raffle_v1/page_test.rb} +1 -1
  163. data/test/models/raffle_v1/program_locale_test.rb +9 -0
  164. data/test/models/raffle_v1/program_setting_test.rb +9 -0
  165. data/test/models/raffle_v1/program_test.rb +9 -0
  166. data/test/models/raffle_v1/role_test.rb +9 -0
  167. data/test/models/raffle_v1/role_user_test.rb +9 -0
  168. data/test/models/raffle_v1/style_sheet_test.rb +9 -0
  169. data/test/models/raffle_v1/stylesheet_test.rb +9 -0
  170. data/test/models/raffle_v1/terms_and_condition_test.rb +9 -0
  171. data/test/models/raffle_v1/tester_test.rb +9 -0
  172. data/test/models/raffle_v1/translation_key_test.rb +9 -0
  173. data/test/models/raffle_v1/translation_object_test.rb +9 -0
  174. data/test/models/raffle_v1/translation_test.rb +9 -0
  175. data/test/models/raffle_v1/user_test.rb +9 -0
  176. metadata +409 -278
  177. data/README.md +0 -53
  178. data/app/assets/javascripts/raffle_v1/comments.js +0 -2
  179. data/app/assets/javascripts/raffle_v1/home.js.coffee +0 -3
  180. data/app/assets/javascripts/raffle_v1/locales.js.coffee +0 -3
  181. data/app/assets/javascripts/raffle_v1/page_layouts.js.coffee +0 -3
  182. data/app/assets/javascripts/raffle_v1/pages.js.coffee +0 -3
  183. data/app/assets/javascripts/raffle_v1/posts.js +0 -2
  184. data/app/assets/javascripts/raffle_v1/programs.js.coffee +0 -3
  185. data/app/assets/javascripts/raffle_v1/roles.js.coffee +0 -3
  186. data/app/assets/javascripts/raffle_v1/stylesheets.js.coffee +0 -3
  187. data/app/assets/javascripts/raffle_v1/terms_and_conditions.js.coffee +0 -3
  188. data/app/assets/javascripts/raffle_v1/terms_of_conditions.js.coffee +0 -3
  189. data/app/assets/javascripts/raffle_v1/translation_keys.js.coffee +0 -3
  190. data/app/assets/javascripts/raffle_v1/translation_objects.js.coffee +0 -3
  191. data/app/assets/javascripts/raffle_v1/user.js.coffee +0 -3
  192. data/app/assets/javascripts/raffle_v1/versions.js.coffee +0 -3
  193. data/app/assets/stylesheets/raffle_v1/TableTools.css +0 -264
  194. data/app/assets/stylesheets/raffle_v1/TableTools.css.scss +0 -264
  195. data/app/assets/stylesheets/raffle_v1/TableTools_JUI.css +0 -182
  196. data/app/assets/stylesheets/raffle_v1/TableTools_JUI.css.scss +0 -183
  197. data/app/assets/stylesheets/raffle_v1/_custom.css.scss +0 -3310
  198. data/app/assets/stylesheets/raffle_v1/_variable.scss +0 -122
  199. data/app/assets/stylesheets/raffle_v1/_variable_defaults.scss +0 -83
  200. data/app/assets/stylesheets/raffle_v1/application.css +0 -13
  201. data/app/assets/stylesheets/raffle_v1/application.css.scss.erb +0 -32
  202. data/app/assets/stylesheets/raffle_v1/bootstrap-responsive.css +0 -570
  203. data/app/assets/stylesheets/raffle_v1/bootstrap-responsive.css.scss +0 -570
  204. data/app/assets/stylesheets/raffle_v1/bootstrap.css +0 -4226
  205. data/app/assets/stylesheets/raffle_v1/bootstrap.css.scss +0 -4226
  206. data/app/assets/stylesheets/raffle_v1/colorbox.css +0 -88
  207. data/app/assets/stylesheets/raffle_v1/colorbox.css.scss +0 -88
  208. data/app/assets/stylesheets/raffle_v1/comments.css +0 -4
  209. data/app/assets/stylesheets/raffle_v1/grid.css.scss +0 -258
  210. data/app/assets/stylesheets/raffle_v1/hierarchy.css.scss +0 -16
  211. data/app/assets/stylesheets/raffle_v1/home.css.scss +0 -18
  212. data/app/assets/stylesheets/raffle_v1/jquery.dataTables.css +0 -83
  213. data/app/assets/stylesheets/raffle_v1/jquery.dataTables.css.scss +0 -83
  214. data/app/assets/stylesheets/raffle_v1/jquery.jcarousel.css +0 -206
  215. data/app/assets/stylesheets/raffle_v1/jquery.wysiwyg.css +0 -57
  216. data/app/assets/stylesheets/raffle_v1/jquery.wysiwyg.css.scss +0 -57
  217. data/app/assets/stylesheets/raffle_v1/jqueryui/jquery.ui.core.css +0 -38
  218. data/app/assets/stylesheets/raffle_v1/jqueryui/jquery.ui.core.css.scss +0 -38
  219. data/app/assets/stylesheets/raffle_v1/jqueryui/jquery.ui.dialog.css +0 -21
  220. data/app/assets/stylesheets/raffle_v1/jqueryui/jquery.ui.dialog.css.scss +0 -21
  221. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  222. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  223. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  224. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  225. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  226. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  227. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  228. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  229. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  230. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  231. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  232. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  233. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  234. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  235. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/jquery-ui-1.8.18.custom.css +0 -563
  236. data/app/assets/stylesheets/raffle_v1/jqueryui/ui-lightness/jquery-ui-1.8.18.custom.css.scss +0 -563
  237. data/app/assets/stylesheets/raffle_v1/locales.css.scss +0 -3
  238. data/app/assets/stylesheets/raffle_v1/page_layouts.css.scss +0 -3
  239. data/app/assets/stylesheets/raffle_v1/pages.css.scss +0 -3
  240. data/app/assets/stylesheets/raffle_v1/posts.css +0 -4
  241. data/app/assets/stylesheets/raffle_v1/programs.css.scss +0 -3
  242. data/app/assets/stylesheets/raffle_v1/reset.css.scss +0 -96
  243. data/app/assets/stylesheets/raffle_v1/roles.css.scss +0 -3
  244. data/app/assets/stylesheets/raffle_v1/scaffolds.css.scss +0 -42
  245. data/app/assets/stylesheets/raffle_v1/stylesheets.css.scss +0 -3
  246. data/app/assets/stylesheets/raffle_v1/terms_and_conditions.css.scss +0 -3
  247. data/app/assets/stylesheets/raffle_v1/terms_of_conditions.css.scss +0 -4
  248. data/app/assets/stylesheets/raffle_v1/translation_keys.css.scss +0 -3
  249. data/app/assets/stylesheets/raffle_v1/translation_objects.css.scss +0 -3
  250. data/app/assets/stylesheets/raffle_v1/ui.multiselect.css +0 -33
  251. data/app/assets/stylesheets/raffle_v1/ui.multiselect.css.scss +0 -33
  252. data/app/assets/stylesheets/raffle_v1/user.css.scss +0 -3
  253. data/app/assets/stylesheets/raffle_v1/versions.css.scss +0 -3
  254. data/app/assets/stylesheets/scaffold.css +0 -56
  255. data/app/controllers/raffle_v1/comments_controller.rb +0 -30
  256. data/app/controllers/raffle_v1/home_controller.rb +0 -15
  257. data/app/controllers/raffle_v1/locales_controller.rb +0 -87
  258. data/app/controllers/raffle_v1/page_layouts_controller.rb +0 -87
  259. data/app/controllers/raffle_v1/posts_controller.rb +0 -87
  260. data/app/controllers/raffle_v1/programs_controller.rb +0 -140
  261. data/app/controllers/raffle_v1/roles_controller.rb +0 -87
  262. data/app/controllers/raffle_v1/stylesheets_controller.rb +0 -19
  263. data/app/controllers/raffle_v1/terms_and_conditions_controller.rb +0 -118
  264. data/app/controllers/raffle_v1/translation_keys_controller.rb +0 -119
  265. data/app/controllers/raffle_v1/translation_objects_controller.rb +0 -87
  266. data/app/controllers/raffle_v1/user_controller.rb +0 -138
  267. data/app/controllers/raffle_v1/versions_controller.rb +0 -15
  268. data/app/helpers/raffle_v1/comments_helper.rb +0 -4
  269. data/app/helpers/raffle_v1/posts_helper.rb +0 -4
  270. data/app/models/raffle_v1/ability.rb +0 -30
  271. data/app/models/raffle_v1/admin.rb +0 -35
  272. data/app/models/raffle_v1/admin_ability.rb +0 -28
  273. data/app/models/raffle_v1/comment.rb +0 -7
  274. data/app/models/raffle_v1/locale.rb +0 -29
  275. data/app/models/raffle_v1/page.rb +0 -26
  276. data/app/models/raffle_v1/page_layout.rb +0 -6
  277. data/app/models/raffle_v1/post.rb +0 -7
  278. data/app/models/raffle_v1/program.rb +0 -84
  279. data/app/models/raffle_v1/program_locale.rb +0 -11
  280. data/app/models/raffle_v1/program_setting.rb +0 -5
  281. data/app/models/raffle_v1/role.rb +0 -5
  282. data/app/models/raffle_v1/roles_users.rb +0 -5
  283. data/app/models/raffle_v1/stylesheet.rb +0 -9
  284. data/app/models/raffle_v1/terms_and_condition.rb +0 -17
  285. data/app/models/raffle_v1/translation.rb +0 -29
  286. data/app/models/raffle_v1/translation_key.rb +0 -35
  287. data/app/models/raffle_v1/translation_object.rb +0 -11
  288. data/app/views/raffle_v1/comments/_comment.html.erb +0 -1
  289. data/app/views/raffle_v1/comments/_form.html.erb +0 -8
  290. data/app/views/raffle_v1/comments/index.html.erb +0 -13
  291. data/app/views/raffle_v1/posts/_form.html.erb +0 -25
  292. data/app/views/raffle_v1/posts/edit.html.erb +0 -6
  293. data/app/views/raffle_v1/posts/index.html.erb +0 -25
  294. data/app/views/raffle_v1/posts/new.html.erb +0 -5
  295. data/app/views/raffle_v1/posts/show.html.erb +0 -19
  296. data/config/rafflev1.rb +0 -6
  297. data/db/migrate/20130127235347_create_programs.rb +0 -9
  298. data/db/migrate/20130129155515_add_domain_fields_to_programs.rb +0 -6
  299. data/db/migrate/20130129160949_create_terms_and_conditions.rb +0 -18
  300. data/db/migrate/20130129183112_add_program_to_users.rb +0 -5
  301. data/db/migrate/20130129204204_add_username_to_users.rb +0 -6
  302. data/db/migrate/20130129211205_create_roles.rb +0 -9
  303. data/db/migrate/20130129212302_create_roles_users.rb +0 -12
  304. data/db/migrate/20130130013315_create_locales.rb +0 -11
  305. data/db/migrate/20130130154500_create_program_locales.rb +0 -8
  306. data/db/migrate/20130130223342_add_settings_to_users.rb +0 -5
  307. data/db/migrate/20130130223609_add_locale_available_to_program.rb +0 -5
  308. data/db/migrate/20130130223810_add_locales_to_versions.rb +0 -5
  309. data/db/migrate/20130130224141_add_locale_name_to_program.rb +0 -5
  310. data/db/migrate/20130130224327_add_admin_type_to_admins.rb +0 -5
  311. data/db/migrate/20130130225223_add_deleted_at_to_models.rb +0 -9
  312. data/db/migrate/20130130230516_create_translations.rb +0 -13
  313. data/db/migrate/20130131005653_add_timeout_field_to_program.rb +0 -7
  314. data/db/migrate/20130131144951_create_stylesheets.rb +0 -14
  315. data/db/migrate/20130202132442_add_tos_to_program.rb +0 -5
  316. data/db/migrate/20130202133149_add_programid_to_terms.rb +0 -23
  317. data/db/migrate/20130202193646_add_akm_to_terms_and_conditions.rb +0 -5
  318. data/db/migrate/20130203035054_create_translation_keys.rb +0 -10
  319. data/db/migrate/20130203214314_create_program_settings.rb +0 -9
  320. data/db/migrate/20130204025824_add_translationkey_to_translation.rb +0 -5
  321. data/db/migrate/20130204030555_create_translation_objects.rb +0 -39
  322. data/db/migrate/20130205203152_create_pages.rb +0 -25
  323. data/db/migrate/20130208042652_add_fields_to_page.rb +0 -6
  324. data/db/migrate/20130208043123_create_page_layouts.rb +0 -12
  325. data/db/migrate/20130208051925_add_statusitem_to_page.rb +0 -5
  326. data/db/migrate/20130306012135_add_fields_to_user.rb +0 -40
  327. data/db/migrate/20130306162357_change_bad_fields_on_user.rb +0 -11
  328. data/db/migrate/20130306163554_add_password_created_at_to_user.rb +0 -6
  329. data/db/migrate/20130306165455_add_confirmable_to_user.rb +0 -14
  330. data/db/migrate/20130306211253_add_username_index_to_user.rb +0 -41
  331. data/db/migrate/20130313011833_add_field_to_user.rb +0 -5
  332. data/db/migrate/20130326135125_create_raffle_v1_posts.rb +0 -10
  333. data/db/migrate/20130326174121_create_raffle_v1_comments.rb +0 -10
  334. data/lib/database_cleaner-0.7.2/Gemfile.lock +0 -163
  335. data/lib/database_cleaner-0.7.2/History.txt +0 -209
  336. data/lib/database_cleaner-0.7.2/LICENSE +0 -20
  337. data/lib/database_cleaner-0.7.2/README.textile +0 -223
  338. data/lib/database_cleaner-0.7.2/Rakefile +0 -65
  339. data/lib/database_cleaner-0.7.2/TODO +0 -3
  340. data/lib/database_cleaner-0.7.2/VERSION.yml +0 -5
  341. data/lib/database_cleaner-0.7.2/cucumber.yml +0 -1
  342. data/lib/database_cleaner-0.7.2/examples/Gemfile +0 -49
  343. data/lib/database_cleaner-0.7.2/examples/Gemfile.lock +0 -163
  344. data/lib/database_cleaner-0.7.2/examples/config/database.yml.example +0 -8
  345. data/lib/database_cleaner-0.7.2/examples/features/example.feature +0 -11
  346. data/lib/database_cleaner-0.7.2/examples/features/example_multiple_db.feature +0 -23
  347. data/lib/database_cleaner-0.7.2/examples/features/example_multiple_orm.feature +0 -22
  348. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/activerecord_steps.rb +0 -31
  349. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/couchpotato_steps.rb +0 -31
  350. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/datamapper_steps.rb +0 -37
  351. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/mongoid_steps.rb +0 -23
  352. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/mongomapper_steps.rb +0 -31
  353. data/lib/database_cleaner-0.7.2/examples/features/step_definitions/translation_steps.rb +0 -55
  354. data/lib/database_cleaner-0.7.2/examples/features/support/env.rb +0 -62
  355. data/lib/database_cleaner-0.7.2/examples/lib/activerecord_models.rb +0 -41
  356. data/lib/database_cleaner-0.7.2/examples/lib/couchpotato_models.rb +0 -61
  357. data/lib/database_cleaner-0.7.2/examples/lib/datamapper_models.rb +0 -50
  358. data/lib/database_cleaner-0.7.2/examples/lib/mongoid_models.rb +0 -49
  359. data/lib/database_cleaner-0.7.2/examples/lib/mongomapper_models.rb +0 -51
  360. data/lib/database_cleaner-0.7.2/features/cleaning.feature +0 -22
  361. data/lib/database_cleaner-0.7.2/features/cleaning_default_strategy.feature +0 -19
  362. data/lib/database_cleaner-0.7.2/features/cleaning_multiple_dbs.feature +0 -21
  363. data/lib/database_cleaner-0.7.2/features/cleaning_multiple_orms.feature +0 -29
  364. data/lib/database_cleaner-0.7.2/features/step_definitions/database_cleaner_steps.rb +0 -32
  365. data/lib/database_cleaner-0.7.2/features/support/env.rb +0 -7
  366. data/lib/database_cleaner-0.7.2/features/support/feature_runner.rb +0 -39
  367. data/lib/database_cleaner-0.7.2/lib/database_cleaner.rb +0 -3
  368. data/lib/database_cleaner-0.7.2/lib/database_cleaner/active_record/base.rb +0 -53
  369. data/lib/database_cleaner-0.7.2/lib/database_cleaner/active_record/deletion.rb +0 -69
  370. data/lib/database_cleaner-0.7.2/lib/database_cleaner/active_record/transaction.rb +0 -28
  371. data/lib/database_cleaner-0.7.2/lib/database_cleaner/active_record/truncation.rb +0 -151
  372. data/lib/database_cleaner-0.7.2/lib/database_cleaner/base.rb +0 -138
  373. data/lib/database_cleaner-0.7.2/lib/database_cleaner/configuration.rb +0 -94
  374. data/lib/database_cleaner-0.7.2/lib/database_cleaner/couch_potato/base.rb +0 -7
  375. data/lib/database_cleaner-0.7.2/lib/database_cleaner/couch_potato/truncation.rb +0 -28
  376. data/lib/database_cleaner-0.7.2/lib/database_cleaner/cucumber.rb +0 -11
  377. data/lib/database_cleaner-0.7.2/lib/database_cleaner/data_mapper/base.rb +0 -21
  378. data/lib/database_cleaner-0.7.2/lib/database_cleaner/data_mapper/transaction.rb +0 -26
  379. data/lib/database_cleaner-0.7.2/lib/database_cleaner/data_mapper/truncation.rb +0 -175
  380. data/lib/database_cleaner-0.7.2/lib/database_cleaner/generic/base.rb +0 -20
  381. data/lib/database_cleaner-0.7.2/lib/database_cleaner/generic/truncation.rb +0 -37
  382. data/lib/database_cleaner-0.7.2/lib/database_cleaner/mongo/truncation.rb +0 -22
  383. data/lib/database_cleaner-0.7.2/lib/database_cleaner/mongo_mapper/base.rb +0 -20
  384. data/lib/database_cleaner-0.7.2/lib/database_cleaner/mongo_mapper/truncation.rb +0 -19
  385. data/lib/database_cleaner-0.7.2/lib/database_cleaner/mongoid/base.rb +0 -20
  386. data/lib/database_cleaner-0.7.2/lib/database_cleaner/mongoid/truncation.rb +0 -20
  387. data/lib/database_cleaner-0.7.2/lib/database_cleaner/null_strategy.rb +0 -15
  388. data/lib/database_cleaner-0.7.2/lib/database_cleaner/sequel/base.rb +0 -22
  389. data/lib/database_cleaner-0.7.2/lib/database_cleaner/sequel/transaction.rb +0 -25
  390. data/lib/database_cleaner-0.7.2/lib/database_cleaner/sequel/truncation.rb +0 -50
  391. data/lib/database_cleaner-0.7.2/spec/database_cleaner/active_record/base_spec.rb +0 -144
  392. data/lib/database_cleaner-0.7.2/spec/database_cleaner/active_record/transaction_spec.rb +0 -77
  393. data/lib/database_cleaner-0.7.2/spec/database_cleaner/active_record/truncation_spec.rb +0 -76
  394. data/lib/database_cleaner-0.7.2/spec/database_cleaner/base_spec.rb +0 -493
  395. data/lib/database_cleaner-0.7.2/spec/database_cleaner/configuration_spec.rb +0 -294
  396. data/lib/database_cleaner-0.7.2/spec/database_cleaner/couch_potato/truncation_spec.rb +0 -41
  397. data/lib/database_cleaner-0.7.2/spec/database_cleaner/data_mapper/base_spec.rb +0 -30
  398. data/lib/database_cleaner-0.7.2/spec/database_cleaner/data_mapper/transaction_spec.rb +0 -23
  399. data/lib/database_cleaner-0.7.2/spec/database_cleaner/data_mapper/truncation_spec.rb +0 -11
  400. data/lib/database_cleaner-0.7.2/spec/database_cleaner/generic/base_spec.rb +0 -22
  401. data/lib/database_cleaner-0.7.2/spec/database_cleaner/generic/truncation_spec.rb +0 -78
  402. data/lib/database_cleaner-0.7.2/spec/database_cleaner/mongo_mapper/base_spec.rb +0 -33
  403. data/lib/database_cleaner-0.7.2/spec/database_cleaner/mongo_mapper/mongo_examples.rb +0 -8
  404. data/lib/database_cleaner-0.7.2/spec/database_cleaner/mongo_mapper/truncation_spec.rb +0 -74
  405. data/lib/database_cleaner-0.7.2/spec/database_cleaner/sequel/base_spec.rb +0 -32
  406. data/lib/database_cleaner-0.7.2/spec/database_cleaner/sequel/transaction_spec.rb +0 -21
  407. data/lib/database_cleaner-0.7.2/spec/database_cleaner/sequel/truncation_spec.rb +0 -13
  408. data/lib/database_cleaner-0.7.2/spec/database_cleaner/shared_strategy_spec.rb +0 -13
  409. data/lib/database_cleaner-0.7.2/spec/rcov.opts +0 -1
  410. data/lib/database_cleaner-0.7.2/spec/spec.opts +0 -7
  411. data/lib/database_cleaner-0.7.2/spec/spec_helper.rb +0 -19
  412. data/lib/generators/raffle_v1/install/USAGE +0 -8
  413. data/test/dummy/config/initializers/secret_token.rb +0 -7
  414. data/test/dummy/script/rails +0 -6
  415. data/test/fixtures/raffle_v1/comments.yml +0 -9
  416. data/test/fixtures/raffle_v1/posts.yml +0 -9
  417. data/test/functional/raffle_v1/posts_controller_test.rb +0 -51
  418. data/test/unit/helpers/raffle_v1/comments_helper_test.rb +0 -6
@@ -1,182 +0,0 @@
1
- /*
2
- * File: TableTools.css
3
- * Description: Styles for TableTools 2 with JUI theming
4
- * Author: Allan Jardine (www.sprymedia.co.uk)
5
- * Language: Javascript
6
- * License: LGPL / 3 point BSD
7
- * Project: DataTables
8
- *
9
- * Copyright 2010 Allan Jardine, all rights reserved.
10
- *
11
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
12
- *
13
- * Notes:
14
- * Generally speaking, please refer to the TableTools.css file - this file contains basic
15
- * modifications to that 'master' stylesheet for ThemeRoller.
16
- *
17
- * CSS name space:
18
- * DTTT DataTables TableTools
19
- *
20
- * Colour dictionary:
21
- * Button border #d0d0d0
22
- * Button border hover #999999
23
- * Hover background #f0f0f0
24
- * Action blue #4b66d9
25
- *
26
- * Style sheet provides:
27
- * CONTAINER TableTools container element and styles applying to all components
28
- * SELECTING Row selection styles
29
- * COLLECTIONS Drop down list (collection) styles
30
- * PRINTING Print display styles
31
- * MISC Minor misc styles
32
- */
33
-
34
-
35
- /*
36
- * CONTAINER
37
- * TableTools container element and styles applying to all components
38
- */
39
- div.DTTT_container {
40
- position: relative;
41
- float: left;
42
- }
43
-
44
- button.DTTT_button {
45
- position: relative;
46
- float: left;
47
- height: 24px;
48
- margin-right: 3px;
49
- padding: 3px 10px;
50
- border: 1px solid #d0d0d0;
51
- cursor: pointer;
52
- *cursor: hand;
53
- }
54
-
55
- button.DTTT_button::-moz-focus-inner {
56
- border: none !important;
57
- padding: 0;
58
- }
59
-
60
-
61
-
62
- /*
63
- * SELECTING
64
- * Row selection styles
65
- */
66
- table.DTTT_selectable tbody tr {
67
- cursor: pointer;
68
- *cursor: hand;
69
- }
70
-
71
- tr.DTTT_selected.odd {
72
- background-color: #9FAFD1;
73
- }
74
-
75
- tr.DTTT_selected.odd td.sorting_1 {
76
- background-color: #9FAFD1;
77
- }
78
-
79
- tr.DTTT_selected.odd td.sorting_2 {
80
- background-color: #9FAFD1;
81
- }
82
-
83
- tr.DTTT_selected.odd td.sorting_3 {
84
- background-color: #9FAFD1;
85
- }
86
-
87
-
88
- tr.DTTT_selected.even {
89
- background-color: #B0BED9;
90
- }
91
-
92
- tr.DTTT_selected.even td.sorting_1 {
93
- background-color: #B0BED9;
94
- }
95
-
96
- tr.DTTT_selected.even td.sorting_2 {
97
- background-color: #B0BED9;
98
- }
99
-
100
- tr.DTTT_selected.even td.sorting_3 {
101
- background-color: #B0BED9;
102
- }
103
-
104
-
105
- /*
106
- * COLLECTIONS
107
- * Drop down list (collection) styles
108
- */
109
-
110
- div.DTTT_collection {
111
- width: 150px;
112
- background-color: #f3f3f3;
113
- overflow: hidden;
114
- z-index: 2002;
115
-
116
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
117
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
118
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
119
- }
120
-
121
- div.DTTT_collection_background {
122
- background: url(../images/background.png) repeat top left;
123
- z-index: 2001;
124
- }
125
-
126
- div.DTTT_collection button.DTTT_button {
127
- float: none;
128
- width: 100%;
129
- margin-bottom: -0.1em;
130
- }
131
-
132
-
133
- /*
134
- * PRINTING
135
- * Print display styles
136
- */
137
-
138
- .DTTT_print_info {
139
- position: absolute;
140
- top: 50%;
141
- left: 50%;
142
- width: 400px;
143
- height: 150px;
144
- margin-left: -200px;
145
- margin-top: -75px;
146
- text-align: center;
147
- background-color: #3f3f3f;
148
- color: white;
149
- padding: 10px 30px;
150
-
151
- opacity: 0.9;
152
-
153
- border-radius: 5px;
154
- -moz-border-radius: 5px;
155
- -webkit-border-radius: 5px;
156
-
157
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
158
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
159
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
160
- }
161
-
162
- .DTTT_print_info h6 {
163
- font-weight: normal;
164
- font-size: 28px;
165
- line-height: 28px;
166
- margin: 1em;
167
- }
168
-
169
- .DTTT_print_info p {
170
- font-size: 14px;
171
- line-height: 20px;
172
- }
173
-
174
-
175
- /*
176
- * MISC
177
- * Minor misc styles
178
- */
179
-
180
- .DTTT_disabled {
181
- color: #999;
182
- }
@@ -1,183 +0,0 @@
1
- /*
2
- * File: TableTools.css
3
- * Description: Styles for TableTools 2 with JUI theming
4
- * Author: Allan Jardine (www.sprymedia.co.uk)
5
- * Language: Javascript
6
- * License: LGPL / 3 point BSD
7
- * Project: DataTables
8
- *
9
- * Copyright 2010 Allan Jardine, all rights reserved.
10
- *
11
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
12
- *
13
- * Notes:
14
- * Generally speaking, please refer to the TableTools.css file - this file contains basic
15
- * modifications to that 'master' stylesheet for ThemeRoller.
16
- *
17
- * CSS name space:
18
- * DTTT DataTables TableTools
19
- *
20
- * Colour dictionary:
21
- * Button border #d0d0d0
22
- * Button border hover #999999
23
- * Hover background #f0f0f0
24
- * Action blue #4b66d9
25
- *
26
- * Style sheet provides:
27
- * CONTAINER TableTools container element and styles applying to all components
28
- * SELECTING Row selection styles
29
- * COLLECTIONS Drop down list (collection) styles
30
- * PRINTING Print display styles
31
- * MISC Minor misc styles
32
- */
33
-
34
-
35
- /*
36
- * CONTAINER
37
- * TableTools container element and styles applying to all components
38
- */
39
- div.DTTT_container {
40
- position: relative;
41
- float: left;
42
- }
43
-
44
- button.DTTT_button {
45
- position: relative;
46
- float: left;
47
- height: 24px;
48
- margin-right: 3px;
49
- padding: 3px 10px;
50
- border: 1px solid #d0d0d0;
51
- background-color: transparent!important;
52
- cursor: pointer;
53
- *cursor: hand;
54
- }
55
-
56
- button.DTTT_button::-moz-focus-inner {
57
- border: none !important;
58
- padding: 0;
59
- }
60
-
61
-
62
-
63
- /*
64
- * SELECTING
65
- * Row selection styles
66
- */
67
- table.DTTT_selectable tbody tr {
68
- cursor: pointer;
69
- *cursor: hand;
70
- }
71
-
72
- tr.DTTT_selected.odd {
73
- background-color: #9FAFD1;
74
- }
75
-
76
- tr.DTTT_selected.odd td.sorting_1 {
77
- background-color: #9FAFD1;
78
- }
79
-
80
- tr.DTTT_selected.odd td.sorting_2 {
81
- background-color: #9FAFD1;
82
- }
83
-
84
- tr.DTTT_selected.odd td.sorting_3 {
85
- background-color: #9FAFD1;
86
- }
87
-
88
-
89
- tr.DTTT_selected.even {
90
- background-color: #B0BED9;
91
- }
92
-
93
- tr.DTTT_selected.even td.sorting_1 {
94
- background-color: #B0BED9;
95
- }
96
-
97
- tr.DTTT_selected.even td.sorting_2 {
98
- background-color: #B0BED9;
99
- }
100
-
101
- tr.DTTT_selected.even td.sorting_3 {
102
- background-color: #B0BED9;
103
- }
104
-
105
-
106
- /*
107
- * COLLECTIONS
108
- * Drop down list (collection) styles
109
- */
110
-
111
- div.DTTT_collection {
112
- width: 150px;
113
- background-color: #f3f3f3;
114
- overflow: hidden;
115
- z-index: 2002;
116
-
117
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
118
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
119
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
120
- }
121
-
122
- div.DTTT_collection_background {
123
- background: url(../images/background.png) repeat top left;
124
- z-index: 2001;
125
- }
126
-
127
- div.DTTT_collection button.DTTT_button {
128
- float: none;
129
- width: 100%;
130
- margin-bottom: -0.1em;
131
- }
132
-
133
-
134
- /*
135
- * PRINTING
136
- * Print display styles
137
- */
138
-
139
- .DTTT_print_info {
140
- position: absolute;
141
- top: 50%;
142
- left: 50%;
143
- width: 400px;
144
- height: 150px;
145
- margin-left: -200px;
146
- margin-top: -75px;
147
- text-align: center;
148
- background-color: #3f3f3f;
149
- color: white;
150
- padding: 10px 30px;
151
-
152
- opacity: 0.9;
153
-
154
- border-radius: 5px;
155
- -moz-border-radius: 5px;
156
- -webkit-border-radius: 5px;
157
-
158
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
159
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
160
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
161
- }
162
-
163
- .DTTT_print_info h6 {
164
- font-weight: normal;
165
- font-size: 28px;
166
- line-height: 28px;
167
- margin: 1em;
168
- }
169
-
170
- .DTTT_print_info p {
171
- font-size: 14px;
172
- line-height: 20px;
173
- }
174
-
175
-
176
- /*
177
- * MISC
178
- * Minor misc styles
179
- */
180
-
181
- .DTTT_disabled {
182
- color: #999;
183
- }
@@ -1,3310 +0,0 @@
1
- /*
2
-
3
- Custom Styles
4
-
5
- */
6
-
7
- /*-----------OVERRIDES---------*/
8
-
9
- select{
10
- font-weight: 600;
11
- }
12
-
13
- /* USER ROLES */
14
-
15
- table.table thead .sorting_asc { background: $winColor url('/assets/datatables/sort_asc.png') no-repeat center right;
16
- @include box-shadow(inset 0 4px 5px darken($winShade, 10%));
17
- }
18
- table.table thead .sorting_desc { background: $winColor url('/assets/datatables/sort_desc.png') no-repeat center right;
19
- @include box-shadow(inset 0 4px 5px darken($winShade, 10%));
20
- }
21
-
22
- table.table thead .sorting_asc_disabled { background: $winColor url('/assets/datatables/sort_asc_disabled.png') no-repeat center right;
23
- @include box-shadow(inset 0 4px 5px darken($winShade, 10%));}
24
- table.table thead .sorting_desc_disabled { background: $winColor url('/assets/datatables/sort_desc_disabled.png') no-repeat center right;
25
- @include box-shadow(inset 0 4px 5px darken($winShade, 10%)); }
26
-
27
-
28
- .datatable-toolbar .datatable-right{
29
- overflow: hidden!important
30
- }
31
-
32
- .highlight {
33
- @include highlight;
34
-
35
- }
36
-
37
- .multiselect {
38
- width: 500px;
39
- height: 400px;
40
- }
41
-
42
- .ui-helper-hidden-accessible {
43
- display: none !important;
44
- }
45
-
46
- .datatable-toolbar, .menucontrol {
47
- overflow: hidden;
48
- background: darken($winShade, 6%) !important;
49
- @each $border in $iconbtn {
50
- .btn#{$border} {
51
- border: 1px solid darken($winShade, 20%) !important;
52
- }
53
- }
54
- }
55
-
56
- .marshall.last {
57
- /*background-color: #888;*/
58
- @include boxsize;
59
- }
60
-
61
- .jstree-classic .jstree-hovered,
62
- .jstree-classic .jstree-clicked,
63
- .active_menu {
64
- background: #e7f4f9 !important;
65
- padding: 0 0 0 0 !important;
66
- color: #666 !important;
67
- border-radius: 3px;
68
- outline: 1px solid #84cef8;
69
- }
70
-
71
- .jstree-clicked ::-moz-selection,
72
- .jstree-classic ::-moz-selection,
73
- .jstree-clicked ::selection,
74
- .jstree-classic ::selection {
75
- background: transparent !important;
76
- border: 1px solid #84cef8 !important;
77
- padding: 0 4px 0 1px !important;
78
- color: #666 !important;
79
- border-radius: 3px !important;
80
- }
81
-
82
- .handle {
83
- width: 16px;
84
- height: 32px;
85
- background: transparent url(/assets/menu-drag.png) no-repeat center center;
86
- }
87
-
88
- /* DATE PICKER */
89
- .ui-datepicker {
90
- padding: .5em .5em;
91
- }
92
-
93
- table.ui-datepicker-calendar tbody {
94
- border: 1px solid #48474F !important;
95
-
96
- }
97
-
98
- .ui-datepicker table {
99
- border-collapse: collapse;
100
- }
101
-
102
- .ui-datepicker th,
103
- th.ui-datepicker-week-end {
104
- width: 30px !important;
105
- height: 30px !important;
106
- margin: 0;
107
- padding: 0;
108
- font-size: 0.95em;
109
- font-weight: normal;
110
- line-height: 30px;
111
- }
112
-
113
- .ui-datepicker td {
114
- padding: 0;
115
- margin: 0;
116
- width: 30px;
117
- height: 30px;
118
- }
119
-
120
- .ui-datepicker td span,
121
- .ui-datepicker td a {
122
- line-height: 30px;
123
- text-align: center;
124
- padding: 0;
125
- font-size: 1.0em;
126
- width: 30px;
127
- height: 30px;
128
- }
129
-
130
- .ui-widget-content .ui-state-default {
131
- border-left: 1px solid #afaeb6;
132
- border-top: 1px solid #afaeb6;
133
- border-bottom: none;
134
- border-right: none;
135
- @include box-shadow(inset 0 1px 0 #f7f7f9);
136
-
137
- }
138
-
139
- dd.ui_tpicker_hour,
140
- dd.ui_tpicker_minute {
141
- margin: 0 12px;
142
- }
143
-
144
- dt.ui_tpicker_hour_label,
145
- dt.ui_tpicker_minute_label {
146
- margin-top: 10px;
147
- }
148
-
149
- .ui-slider-horizontal.ui-widget.ui-widget-content {
150
- border: 1px solid #48474f;
151
- background: #232227 url(/assets/images/ui-bg_flat_0_232227_40x100.png) 50% 50% repeat-x;
152
- }
153
-
154
- .ui-state-active,
155
- .ui-state-highlight,
156
- .ui-widget-content .ui-state-highlight, .ui-widget-content .ui-state-active {
157
- width: 30px;
158
- height: 30px;
159
- margin: 0;
160
- border-left: 1px solid #afaeb6;
161
- border-top: 1px solid #afaeb6;
162
- border-bottom: none;
163
- border-right: none;
164
-
165
- @include box-shadow(inset 0 0 10px darken($mainColor, 30%));
166
- background: $mainColor url(/assets/ui-bg_flat_0_df1b31_40x100.png) 50% 50% repeat-x;
167
- font-weight: normal;
168
- color: #ffffff;
169
- }
170
-
171
- .ui-state-default.ui-state-highlight {
172
- width: 30px;
173
- height: 30px;
174
- margin: 0;
175
- border-left: 1px solid darken($mainColor, 30%) !important;
176
- border-top: 1px solid darken($mainColor, 30%) !important;
177
- border-bottom: none;
178
- border-right: none;
179
- @include box-shadow(inset 0 0 10px darken($mainColor, 30%));
180
- background: $mainColor url(/assets/ui-bg_flat_0_df1b31_40x100.png) 50% 50% repeat-x;
181
- font-weight: normal;
182
- color: #ffffff;
183
-
184
- }
185
-
186
- .ui-datepicker .ui-datepicker-prev span {
187
- height: 18px;
188
- width: 18px;
189
- background: url(/assets/cal-prev.png) no-repeat;
190
- }
191
-
192
- .ui-datepicker .ui-datepicker-next span {
193
- height: 18px;
194
- width: 18px;
195
- background: url(/assets/cal-next.png) no-repeat;
196
- }
197
-
198
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
199
- position: absolute;
200
- top: 5px;
201
- width: 1.8em;
202
- height: 1.8em;
203
- background: transparent;
204
- border: none;
205
- }
206
-
207
- .ui-datepicker select.ui-datepicker-month,
208
- .ui-datepicker select.ui-datepicker-year {
209
- width: 44%;
210
- height: 26px;
211
-
212
- }
213
-
214
- .ui-datepicker select.ui-datepicker-month {
215
- margin-right: 10px;
216
- }
217
-
218
- .ui-widget-content .ui-state-disabled {
219
- background: #0B0A0E;
220
- }
221
-
222
- .ui-multiselect {
223
- border: none;
224
- @include box-shadow(0 4px 5px rgba(6, 6, 6, 0.1));
225
-
226
- }
227
-
228
- .ui-multiselect div.available {
229
- border-left: none;
230
- }
231
-
232
- /*-----------controls windows---------*/
233
-
234
- .ui-multiselect {
235
- padding: 0 !important;
236
- border-bottom: none !important;
237
- border-top: none !important;
238
- .available, .selected, .searcharea {
239
- padding: 0 !important;
240
- border-bottom: none !important;
241
- border-top: none !important;
242
- }
243
- .searcharea {
244
- border-top-left-radius: 3px;
245
- border-top-right-radius: 3px;
246
- background-color: rgba(255, 255, 255, 0.5);
247
- label {
248
- padding: 10px;
249
- }
250
- }
251
- }
252
-
253
- div.form-section {
254
- margin-top: 10px;
255
- }
256
-
257
- div.form-section div.form-content {
258
- padding: 10px;
259
- @extend .clearfix;
260
- input[type="text"]+.btn {
261
- margin-bottom: 4px;
262
- }
263
- form {
264
- label {
265
- padding-top: 10px;
266
- margin-top: 10px;
267
- border-top: 1px solid rgba(210, 210, 210, 1.0);
268
- }
269
-
270
- input[type="radio"]+label, input[type="checkbox"]+label {
271
- padding-top: 0;
272
- margin-top: 0;
273
- border-top: none;
274
- }
275
- }
276
- .actions, .linking, .modal_panel_content, .ui-multiselect {
277
- border-bottom: none !important;
278
- padding: 0 !important;
279
- }
280
-
281
- .dataTables_wrapper {
282
- padding: 0 !important;
283
- border-bottom: none;
284
- .datatable-toolbar {
285
- padding-left: 10px;
286
- }
287
- div {
288
- padding: 0;
289
- border-bottom: none;
290
- }
291
- }
292
- .field_selector {
293
- div {
294
- padding: 0 !important;
295
- border-bottom: none;
296
- }
297
- padding: 0 !important;
298
- border-bottom: none;
299
- border-top-left-radius: 3px;
300
- border-top-right-radius: 3px;
301
- margin-top: 20px;
302
- background-color: rgba(255, 255, 255, 0.5);
303
- label {
304
- padding: 10px;
305
- }
306
- }
307
-
308
- .form-section {
309
- padding: 0 !important;
310
- border-bottom: none;
311
- .field {
312
- background-color: rgba(255, 255, 255, 0.5);
313
- padding: 20px;
314
- }
315
- }
316
- }
317
-
318
- div.form-section div.form-content,
319
- div.form-section div.form-menu-content,
320
- div.marshall-container,
321
- {
322
- border: none;
323
- border-top: 0;
324
- @include window-gradient1;
325
- .nested_set ol {
326
- border-left: none;
327
- }
328
- }
329
-
330
- .wrap,
331
- .scroll,
332
- .boxl,
333
- .poll,
334
- .home-content,
335
- .raffle,
336
- .poll,
337
- .trophy,
338
- .feed,
339
- .tabs-container,
340
- div.form-section div.form-content,
341
- div.form-section div.form-menu-content,
342
- div.marshall-container {
343
- @include box-shadow(0 0 5px $gray);
344
- }
345
-
346
- /*-----------JAVASCRIPT DEPENDANT---------*/
347
-
348
- .connected-list {
349
- height: 200px !important;
350
- }
351
-
352
- /*-----------GENERAL ---------*/
353
- /* let's clear some floats */
354
- .clearfix:before, .clearfix:after {
355
- content: "\0020";
356
- display: block;
357
- height: 0;
358
- overflow: hidden;
359
- }
360
-
361
- .clearfix:after {
362
- clear: both;
363
- }
364
-
365
- .clearfix {
366
- zoom: 1;
367
- }
368
-
369
- .bold-header,
370
- table.table thead th,
371
- label {
372
- color: darken($winShade, 50%);
373
- }
374
-
375
- .dNone {
376
- display: none;
377
- }
378
-
379
- input.datepickerr, input.hasDatepicker, input.datetimepicker {
380
- background: #ffffff url(/assets/hasdate.png) right center no-repeat !important;
381
-
382
- }
383
-
384
- /* MARSHALL COLUMN DESIGN */
385
- div.searchcol {
386
- width: 194px;
387
- text-align: left;
388
- margin: 20px auto;
389
- .btn {
390
- margin-top: 10px;
391
- }
392
- label.bold-header {
393
- color: $textColor;
394
- margin-top: 10px;
395
- }
396
- select.input-medium {
397
- width: 184px !important;
398
- }
399
- input.input-medium {
400
- background: url(/assets/findbox.png) 165px center no-repeat;
401
- width: 184px;
402
- }
403
- }
404
-
405
- div.secondPHolder {
406
- position: relative;
407
- height: 100%;
408
- }
409
-
410
- div.secondPScroller {
411
- height: 100%;
412
- overflow-y: auto;
413
- }
414
-
415
- .marshall-overflow {
416
- width: 200%;
417
- overflow-x: hidden;
418
- overflow-y: auto;
419
- }
420
-
421
- .marshall.last {
422
- background: none;
423
- background-color: #f7f7f7;
424
- }
425
-
426
- .marshall {
427
- /*background-color: #aaa;*/
428
- height: 600px;
429
- background: url(/assets/light_gray_gradient_horizontal_bg.png) repeat-y top right;
430
- float: left;
431
- width: 190px;
432
- overflow-y: auto;
433
- }
434
-
435
- .marshall-container {
436
- overflow-x: hidden;
437
- overflow-y: auto;
438
- }
439
-
440
- .marshall.first {
441
- background: url(/assets/light_gray_gradient_horizontal_bg.png) repeat-y top right;
442
- }
443
-
444
- .marshall.last {
445
- /*background-color: #888;*/
446
- -webkit-box-sizing: border-box;
447
- -moz-box-sizing: border-box;
448
- box-sizing: border-box;
449
- border-right: none;
450
- }
451
-
452
- .marshall .paging {
453
-
454
- }
455
-
456
- .marshall-header {
457
- background: url(/assets/light_gray_gradient_bg.png);
458
- height: 32px;
459
- line-height: 32px;
460
- padding-left: 10px;
461
- border-bottom: 1px solid #d1d1d1;
462
- }
463
-
464
- .marshall .clickable-marshall {
465
- cursor: pointer;
466
- }
467
-
468
- .marshall-columns-wrapper {
469
- float: left;
470
- width: 50%;
471
- }
472
-
473
- .marshall-extra-info {
474
- float: left;
475
- width: 50%;
476
- overflow: auto;
477
- height: 100%;
478
- }
479
-
480
- .marshall-full-page {
481
- background-color: #f2f2f2;
482
- }
483
-
484
- .marshall-full-page .toolbar {
485
- background-color: #f7f7f7;
486
- height: 48px;
487
- border-bottom: 1px solid #dedede;
488
- }
489
-
490
- .marshall-full-page .extra-page-content-wrapper {
491
- padding: 6px;
492
- }
493
-
494
- .marshall-full-page .extra-page-content {
495
- background-color: #fff;
496
- border: 1px solid #f0f0f0;
497
- padding: 10px;
498
- height: 100%;
499
- @include box-shadow("0 4px 4px 1px #c2c2c2");
500
- overflow: auto;
501
- }
502
-
503
- body.DTTT_Print .marshall-full-page .extra-page-content {
504
- overflow: visible;
505
- height: auto;
506
- background: transparent;
507
- }
508
-
509
- .marshall-full-page .extra-page-footer,
510
- .marshall .page-footer {
511
- height: 60px;
512
- border-top: 1px solid #dedede;
513
- border-bottom: 1px solid #dedede;
514
- background-color: #ededed;
515
- /* ! DO NOT add PADDING to this, it will make scroll bars on firefox, only add MARGIN to buttons */
516
- }
517
-
518
- .marshall .page-toolbar {
519
- height: 45px;
520
- border-bottom: 1px solid #dedede;
521
- padding-left: 8px;
522
- padding-right: 8px;
523
- line-height: 45px;
524
- }
525
-
526
- .marshall .page-toolbar .toolbar-buttons {
527
- width: 50%;
528
- float: right;
529
- text-align: right;
530
- border-left: 1px solid #dedede;
531
- box-sizing: padding-box;
532
- height: 100%;
533
- }
534
-
535
- /* ERROR MESSAGES - ORANGE */
536
-
537
- .divDialogElements {
538
-
539
- .field_with_errors, .field_with_errors div {
540
- margin: 0 0 0 0 !important;
541
- }
542
- }
543
-
544
- .field_with_errors div span {
545
- border-radius: 3px;
546
- background: #ff7700 url(/assets/alert_error.png) 10px center no-repeat;
547
- color: #fff;
548
- display: inline;
549
- padding: 8px 20px 4px 35px;
550
- font-weight: bold;
551
- }
552
-
553
- .field_with_errors {
554
- margin-bottom: 6px;
555
- min-width: 250px;
556
- }
557
-
558
- div.field_selector .field_with_errors {
559
- margin-bottom: 0;
560
- }
561
-
562
- .field_with_errors div {
563
- display: inline;
564
- margin-left: 10px;
565
- }
566
-
567
- div.field_selector .field_with_errors label {
568
- display: block;
569
- border-top: 1px solid #ff7700;
570
- margin: 0 0 0 0;
571
- border-right: 1px solid #ff7700;
572
- border-left: 1px solid #ff7700;
573
- }
574
-
575
- div.field_selector .field_with_errors div.ui-multiselect {
576
- border-left: 1px solid #ff7700;
577
- border-right: 1px solid #ff7700;
578
- border-bottom: 1px solid #ff7700;
579
- }
580
-
581
- div.field_selector .field_with_errors div img {
582
- display: none;
583
- }
584
-
585
- div.field_selector .field_with_errors div {
586
- display: inherit;
587
- margin-left: 0;
588
- }
589
-
590
- div.field_selector .field_with_errors div span {
591
- display: none;
592
- padding: 0 0 0 0;
593
- }
594
-
595
- div.field_selector .field_with_errors div span.count {
596
- display: inherit;
597
- background: none;
598
- color: inherit;
599
- padding: 11px 0 0 8px;
600
- }
601
-
602
- #header_wrap {
603
- width: $full;
604
- }
605
-
606
- #page {
607
- min-height: 400px;
608
- }
609
-
610
- #dialog.expire {
611
- width: 100%;
612
- max-height: 50px;
613
- background: #CCC;
614
- color: #FFF
615
- }
616
- @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
617
-
618
- html,
619
- body,
620
- input,
621
- button,
622
- select,
623
- textarea {
624
- font-family: $font-face;
625
- }
626
-
627
- /* FONT FACE */
628
- body {
629
- min-width: 1000px;
630
- font-size: 0.8em;
631
- background: $bg_main;
632
- color: $textColor;
633
- }
634
-
635
- .contain, .container {
636
- @include page-width;
637
- }
638
-
639
- /* HEADERS H2 */
640
- h2 {
641
- background-color: $headers;
642
- font-weight: bold;
643
- padding: 7px 0 7px 10px;
644
- color: $headers_text;
645
- font-size: 1.2em;
646
- margin-top: 10px;
647
- border-top-left-radius: 5px;
648
- border-top-right-radius: 5px;
649
- border-top: 2px solid lighten($headers, 10%);
650
- border-bottom: 2px solid lighten($headers, 10%);
651
- text-shadow: 0 1px 1px darken($headers, 20%);
652
- }
653
-
654
- h2.toggle {
655
- cursor: pointer;
656
- background: $headers url(minus-toggle.png) 98% center no-repeat;
657
- }
658
-
659
- h2.toggle.tplus {
660
- cursor: pointer;
661
- background: $headers url(plus-toggle.png) 98% center no-repeat;
662
- }
663
-
664
- h2.toggle.tplus {
665
- border-radius: 5px;
666
- -webkit-border-radius: 5px;
667
- -moz-border-radius: 5px;
668
- -ms-border-radius: 5px;
669
- -o-border-radius: 5px;
670
- transition: border-radius 0.5s;
671
- -webkit-transition: border-radius 0.5s;
672
- -moz-transition: border-radius 0.5s;
673
- -ms-transition: border-radius 0.5s;
674
- -o-transition: border-radius 0.5s;
675
- }
676
-
677
- /* LINKS */
678
- a, a:visited, a strong, a:visited strong {
679
- color: $mainColor;
680
- text-decoration: none;
681
- &:hover {
682
- text-decoration: underline;
683
- background: transparent;
684
- }
685
- }
686
-
687
- a:active {
688
- color: #000;
689
- }
690
-
691
- .right {
692
- float: right;
693
- }
694
-
695
- .left {
696
- float: left;
697
- }
698
-
699
- div.center {
700
- text-align: center;
701
- }
702
-
703
- /* Custom text-selection colors */
704
- ::-moz-selection, ::selection {
705
- @include highlight;
706
- }
707
-
708
- /* j.mp/webkit-tap-highlight-color */
709
- a:link {
710
- -webkit-tap-highlight-color: $mainColor;
711
- }
712
-
713
- mark {
714
- background-color: $mainColor;
715
- color: #000;
716
- text-decoration: none;
717
- mark {
718
- font-style: italic;
719
- font-weight: bold;
720
- }
721
- }
722
-
723
- /* MAIN ADMIN MENU */
724
- ul.parentmenu li {
725
- .btn {
726
- margin-top: 10px;
727
-
728
- float: right;
729
- }
730
-
731
- }
732
-
733
- ul.parentmenu li.odd a:hover,
734
- ul.parentmenu li.even a:hover {
735
- background-color: #f5f5f5;
736
- background-color: #e5e5e5;
737
- padding: 10px 10px 10px 60px;
738
- color: $mainColor;
739
- }
740
-
741
- ul.parentmenu li.odd a,
742
- ul.parentmenu li.even a {
743
- transition: padding .3s;
744
- -webkit-transition: padding .3s;
745
- -moz-transition: padding .3s;
746
- -ms-transition: padding .3s;
747
- -o-transition: padding .3s;
748
- padding: 10px 10px 10px 40px;
749
- display: block;
750
- text-decoration: none;
751
- color: $textColor;
752
- }
753
-
754
- ul.parentmenu li.odd a {
755
- border-left: 1px solid #ddd;
756
- border-right: 1px solid #ddd;
757
- background-color: #f5f5f5;
758
- }
759
-
760
- ul.parentmenu li.odd:first-child a {
761
- border-top: 1px solid #ddd;
762
- }
763
-
764
- ul.parentmenu li.even a {
765
- border: 1px solid #ddd;
766
- background-color: #f9f9f9;
767
- background-color: #ededed;
768
- }
769
-
770
- /* CUSTOM ALERTS */
771
- .alert {
772
- padding: 8px 14px 8px 14px;
773
- margin: 10px 0 18px 0;
774
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
775
- background-color: #fcf8e3;
776
- border: 1px solid #fbeed5;
777
- -webkit-border-radius: 4px;
778
- -moz-border-radius: 4px;
779
- border-radius: 4px;
780
- color: #c09853;
781
- }
782
-
783
- .alert-heading {
784
- color: inherit;
785
- }
786
-
787
- .alert .close {
788
- position: relative;
789
- top: -2px;
790
- right: -21px;
791
- line-height: 18px;
792
- }
793
-
794
- .alert-success {
795
- background-color: #dff0d8;
796
- border-color: #d6e9c6;
797
- color: #468847;
798
- }
799
-
800
- .alert-danger,
801
- .alert-error {
802
- border-radius: 3px;
803
- padding: 10px;
804
- background-color: #f2dede;
805
- border-color: #eed3d7;
806
- color: $mainColor;
807
- h3 {
808
- color: $mainColor;
809
- }
810
- ul li {
811
- list-style: disc;
812
- list-style-position: inside;
813
- }
814
- }
815
-
816
- .alert-info {
817
- background-color: #d9edf7;
818
- border-color: #bce8f1;
819
- color: #3a87ad;
820
- }
821
-
822
- .alert-block {
823
- padding-top: 14px;
824
- padding-bottom: 14px;
825
- }
826
-
827
- .alert-block > p,
828
- .alert-block > ul {
829
- margin-bottom: 0;
830
- }
831
-
832
- .alert-block p + p {
833
- margin-top: 5px;
834
- }
835
-
836
- /* LOGIN ASSETS */
837
- body#login {
838
- background: $bg_login;
839
- text-align: center;
840
- position: relative;
841
- font-family: "Open Sans";
842
- }
843
-
844
- div#full {
845
- width: $full;
846
- height: $full;
847
- @include circle-gradient;
848
- }
849
-
850
- div#forgotform {
851
- height: 337px;
852
- margin-top: -142px;
853
- top: 40%;
854
- }
855
-
856
- div#loginform {
857
- height: 457px;
858
- margin-top: -137px;
859
- top: 30%;
860
- .btn {
861
- margin-top: 10px;
862
- }
863
- }
864
-
865
- div#loginform,
866
- div#forgotform {
867
- width: 400px;
868
- background-color: $winMain;
869
- position: fixed;
870
- left: 50%;
871
- margin-left: -205px;
872
- margin-top: -137px;
873
- border-radius: 8px;
874
- border: solid 5px rgba(0, 0, 0, 0.8);
875
- text-align: center;
876
- p {
877
- font-size: 0.9em;
878
- display: block;
879
- padding: 18px 40px;
880
- text-align: center;
881
- border-top: 1px solid lighten($winColor, 10%);
882
- border-bottom: 1px solid darken($winColor, 5%);
883
- }
884
- form {
885
- padding-top: 20px;
886
- height: 186px;
887
- border-top: 1px solid lighten($winColor, 10%);
888
- margin-bottom: 6px;
889
- margin-top: -9px;
890
- }
891
- input.line {
892
- border: 1px solid darken($winColor, 10%);
893
- width: 330px;
894
- height: 22px;
895
- margin-bottom: 10px !important;
896
- }
897
- div.info {
898
- margin-bottom: 2px;
899
- padding: 0 32px 15px 30px;
900
- border-bottom: 1px solid darken($winColor, 5%);
901
- text-align: left;
902
- }
903
- label {
904
- color: $textColor;
905
- }
906
- span.left {
907
- label.remember {
908
- font-weight: normal;
909
- width: 150px;
910
- padding-left: 18px;
911
- font-size: 0.9em;
912
- }
913
- }
914
- span.right {
915
- a {
916
- font-size: 0.9em;
917
- }
918
- }
919
- }
920
-
921
- div#logo-hold {
922
- display: block;
923
- height: 132px;
924
- border-bottom: 1px solid darken($winColor, 5%);
925
- background: url(/assets/raffle_stock.png) repeat-y;
926
- }
927
-
928
- div#forgotpass {
929
- display: block;
930
- padding: 30px 0;
931
- border-bottom: 1px solid darken($winColor, 5%);
932
- background: $winShade;
933
- }
934
-
935
- .footer {
936
- color: $foot_text;
937
- width: $full;
938
- height: 54px;
939
- background: $footer_bg;
940
- position: fixed;
941
- bottom: 0;
942
- @include box-shadow(inset 0 4px 20px rgba(0, 0, 0, 0.3));
943
- }
944
-
945
- .logininfo {
946
- padding: 20px 20px 0 20px;
947
- img {
948
- padding: 0 10px 0 10px;
949
- }
950
- }
951
-
952
- /*-----------GENERAL/input forms ---------*/
953
- input,
954
- textarea,
955
- select,
956
- .uneditable-input {
957
- border: 1px solid darken($winShade, 6%);
958
-
959
- }
960
-
961
- form {
962
- margin: 0 0 0 0;
963
- }
964
-
965
- fieldset {
966
- padding: 0;
967
- margin: 0;
968
- border: 0;
969
- }
970
-
971
- legend {
972
- display: block;
973
- width: 100%;
974
- padding: 0;
975
- margin-bottom: 27px;
976
- font-size: 19.5px;
977
- line-height: 36px;
978
- color: #333333;
979
- border: 0;
980
- border-bottom: 1px solid #e5e5e5;
981
- }
982
-
983
- legend small {
984
- font-size: 13.5px;
985
- color: #999999;
986
- }
987
-
988
- input,
989
- textarea {
990
- width: 190px;
991
- }
992
-
993
- textarea:focus,
994
- input[type="text"]:focus,
995
- input[type="password"]:focus,
996
- input[type="datetime"]:focus,
997
- input[type="datetime-local"]:focus,
998
- input[type="date"]:focus,
999
- input[type="month"]:focus,
1000
- input[type="time"]:focus,
1001
- input[type="week"]:focus,
1002
- input[type="number"]:focus,
1003
- input[type="email"]:focus,
1004
- input[type="url"]:focus,
1005
- input[type="search"]:focus,
1006
- input[type="tel"]:focus,
1007
- input[type="color"]:focus,
1008
- .uneditable-input:focus {
1009
- border-color: rgba(82, 168, 236, 0.8);
1010
- outline: 0;
1011
- outline: thin dotted \9;
1012
- /* IE6-9 */
1013
-
1014
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
1015
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
1016
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
1017
- }
1018
-
1019
- input[type="radio"],
1020
- input[type="checkbox"] {
1021
- margin: 3px 0;
1022
- *margin-top: 0;
1023
- /* IE7 */
1024
-
1025
- line-height: normal;
1026
- cursor: pointer;
1027
- }
1028
-
1029
- input[type="submit"],
1030
- input[type="reset"],
1031
- input[type="button"],
1032
- input[type="radio"],
1033
- input[type="checkbox"] {
1034
- width: auto;
1035
- }
1036
-
1037
- .uneditable-textarea {
1038
- width: auto;
1039
- height: auto;
1040
- }
1041
-
1042
- select,
1043
- input[type="file"] {
1044
- height: 28px;
1045
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
1046
-
1047
- *margin-top: 4px;
1048
- /* For IE7, add top margin to align select with labels */
1049
-
1050
- line-height: 28px;
1051
- }
1052
-
1053
- select {
1054
- width: 200px;
1055
- }
1056
-
1057
- select[multiple],
1058
- select[size] {
1059
- height: auto;
1060
- }
1061
-
1062
- select:focus,
1063
- input[type="file"]:focus,
1064
- input[type="radio"]:focus,
1065
- input[type="checkbox"]:focus {
1066
- outline: thin dotted #333;
1067
- outline: 5px auto -webkit-focus-ring-color;
1068
- outline-offset: -2px;
1069
- }
1070
-
1071
- input:focus, textarea:focus, select:focus, label input:focus, input.line:focus {
1072
- @include box-shadow(0 0 8px rgba($mainColor, 0.5) !important);
1073
- outline: 0;
1074
- border: 1px solid lighten($mainColor, 20%) !important;
1075
- }
1076
-
1077
- input,
1078
- textarea {
1079
- border-radius: 4px;
1080
- }
1081
-
1082
- input.line {
1083
- width: 98%;
1084
- height: 28px;
1085
- }
1086
-
1087
- label,
1088
- input {
1089
- margin: 0 0 5px 0;
1090
- }
1091
-
1092
- textarea,
1093
- input.line {
1094
- color: #666666;
1095
- }
1096
-
1097
- textarea,
1098
- input[type="text"],
1099
- input[type="password"],
1100
- input[type="datetime"],
1101
- input[type="datetime-local"],
1102
- input[type="date"],
1103
- input[type="month"],
1104
- input[type="time"],
1105
- input[type="week"],
1106
- input[type="number"],
1107
- input[type="email"],
1108
- input[type="url"],
1109
- input[type="search"],
1110
- input[type="tel"],
1111
- input[type="color"]
1112
- select {
1113
- @include box-shadow(inset 0 0 20px rgba(153, 153, 153, 0.3));
1114
-
1115
- }
1116
-
1117
- /*----------PASSWORD STYLE-------------*/
1118
- .password_strength {
1119
- padding: 0 5px;
1120
- display: inline-block;
1121
- }
1122
-
1123
- .password_strength_1 {
1124
- background-color: #fcb6b1;
1125
- }
1126
-
1127
- .password_strength_2 {
1128
- background-color: #fccab1;
1129
- }
1130
-
1131
- .password_strength_3 {
1132
- background-color: #fcfbb1;
1133
- }
1134
-
1135
- .password_strength_4 {
1136
- background-color: #dafcb1;
1137
- }
1138
-
1139
- .password_strength_5 {
1140
- background-color: #bcfcb1;
1141
- }
1142
-
1143
- /*----------BUTTON STYLE-------------*/
1144
- div.actions .btn {
1145
- margin-top: 9px;
1146
- }
1147
-
1148
- .btn {
1149
- margin-bottom: 0;
1150
- }
1151
-
1152
- select+.btn {
1153
- margin-bottom: 9px;
1154
- }
1155
-
1156
- .btn {
1157
-
1158
- display: inline-block;
1159
- *display: inline;
1160
- *zoom: 1;
1161
- min-width: 50px;
1162
- padding: 3px 8px;
1163
- font-weight: 400;
1164
- font-size: 14px;
1165
- line-height: 18px;
1166
- *line-height: 20px;
1167
- text-align: center;
1168
- vertical-align: middle;
1169
- cursor: pointer;
1170
- border: 1px solid lighten($gray, 20%);
1171
- *border: 0;
1172
- -webkit-border-radius: 4px;
1173
- -moz-border-radius: 4px;
1174
- -o-border-radius: 4px;
1175
- -ms-border-radius: 4px;
1176
- border-radius: 4px;
1177
- *margin-left: .3em;
1178
- background-color: $btnColor;
1179
- @include lineargrd(top, $btnColor, $btnMix);
1180
- background-repeat: repeat-x;
1181
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnMix}', endColorstr = '#{$btnColor}', GradientType = 0);
1182
- *background-color: $btnColor;
1183
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1184
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1185
- }
1186
-
1187
- .btn:hover,
1188
- .btn:active,
1189
- .btn.active,
1190
- .btn.disabled,
1191
- .btn[disabled] {
1192
- text-decoration: none !important;
1193
- background-color: $btnMix !important;
1194
- *background-color: $btnMix !important;
1195
- }
1196
-
1197
- .btn:first-child {
1198
- *margin-left: 0;
1199
- }
1200
-
1201
- .btn:hover {
1202
- /* Buttons in IE7 don't get borders, so darken on hover */
1203
- background-position: 0 -15px;
1204
- -webkit-transition: background-position 0.2s linear;
1205
- -moz-transition: background-position 0.2s linear;
1206
- -ms-transition: background-position 0.2s linear;
1207
- -o-transition: background-position 0.2s linear;
1208
- transition: background-position 0.2s linear;
1209
- }
1210
-
1211
- .btn:focus {
1212
- outline: thin dotted #333;
1213
- outline: 5px auto -webkit-focus-ring-color;
1214
- outline-offset: -2px;
1215
- }
1216
-
1217
- .btn,
1218
- .btn:hover,
1219
- .btn:visited {
1220
- color: $btnText;
1221
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.50);
1222
- text-decoration: none;
1223
- }
1224
-
1225
- .btn.active {
1226
- color: $btnText;
1227
- }
1228
-
1229
- .btn:active,
1230
- .btn.active {
1231
- background-color: $btnColor \9;
1232
- }
1233
-
1234
- /*-----------HEADER ---------*/
1235
- #header {
1236
- height: 185px;
1237
- display: block;
1238
- background: $topheader_bg;
1239
- }
1240
-
1241
- #top-dashboard {
1242
- height: 47px;
1243
- width: 100%;
1244
- background: $statusColor url(/assets/bg-head.png) repeat-x;
1245
- display: block;
1246
- border-top: $mainColor solid 3px;
1247
- @include box-shadow(0 5px 40px rgba(0, 0, 0, 0.3));
1248
- }
1249
-
1250
- .menu-item {
1251
- padding: 15px;
1252
- border-left: 1px dashed lighten($statusColor, 20%);
1253
- display: block;
1254
- float: right;
1255
- color: #FFF;
1256
- position: relative;
1257
- }
1258
- .menu-item.points{
1259
- font-weight: 600;
1260
- }
1261
- .points span {
1262
-
1263
- background: #d6d6d6;
1264
- color: $mainColor;
1265
- font-weight: bold;
1266
- padding: 4px 20px;
1267
- margin-right: 8px;
1268
- border-radius: 4px;
1269
- }
1270
-
1271
- a.chat, a.notice, a.budget, a.dash {
1272
- width: 30px;
1273
- height: 30px;
1274
- display: block;
1275
- margin-top: -13px;
1276
- }
1277
-
1278
- a.chat {
1279
- background: url(/assets/msg.png) no-repeat center 11px;
1280
- }
1281
-
1282
- a.notice {
1283
- background: url(/assets/alert.png) no-repeat center 11px;
1284
- }
1285
-
1286
- a.budget {
1287
- background: url(/assets/budget.png) no-repeat center 11px;
1288
- }
1289
-
1290
- a.dash {
1291
- background: url(/assets/dash.png) no-repeat center 11px;
1292
- }
1293
-
1294
- .chat span, .notice span, .budget span, .dash span {
1295
- background: $mainColor;
1296
- font-size: 0.8em;
1297
- font-weight: bold;
1298
- position: absolute !important;
1299
- top: 5px;
1300
- left: 35px;
1301
- border-radius: 10px;
1302
- width: 16px;
1303
- height: 15px;
1304
- text-align: center;
1305
- padding: 3px 2px 1px 1px;
1306
- display: block;
1307
- letter-spacing: -1px;
1308
- position: absolute;
1309
- z-index: 80;
1310
- }
1311
-
1312
- form#searchform {
1313
- width: 173px;
1314
- height: 15px;
1315
- position: relative;
1316
- }
1317
-
1318
- form#searchform input,
1319
- form#searchform input:hover,
1320
- form#searchform input:focus {
1321
- padding-left: 10px;
1322
- width: 163px;
1323
- height: 24px;
1324
- background-color: lighten($statusColor, 4%);
1325
- border: 0;
1326
- color: #FFF;
1327
- position: absolute;
1328
- z-index: 78;
1329
- @include lineargrd(top, lighten($statusColor, 4%), lighten($statusColor, 10%));
1330
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(lighten($statusColor, 4%)), to(lighten($statusColor, 10%)));
1331
- background-repeat: repeat-x;
1332
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{lighten($statusColor, 10%)}', endColorstr = '#{lighten($statusColor, 6%)}', GradientType = 0);
1333
- color: lighten($statusColor, 60%);
1334
- @include box-shadow(inset 0 1px 2px darken($statusColor, 60%) !important);
1335
- border: none !important;
1336
- }
1337
-
1338
- .form {
1339
- height: 34px;
1340
- }
1341
-
1342
- .menu-item.form {
1343
- padding: 7px 0 5px 15px;
1344
- }
1345
-
1346
- span#find {
1347
- width: 16px;
1348
- height: 17px;
1349
- display: block;
1350
- position: absolute;
1351
- z-index: 79;
1352
- background: url(/assets/search.png);
1353
- right: 8px;
1354
- top: 8px;
1355
- }
1356
-
1357
- /*-----------USER HEADER---------*/
1358
- .userheader {
1359
- position: relative;
1360
- }
1361
-
1362
- #profile {
1363
- right: 0;
1364
- width: 330px;
1365
- position: absolute;
1366
- margin-top: 20px;
1367
- }
1368
-
1369
- #profile form {
1370
- margin-bottom: 10px;
1371
- }
1372
-
1373
- #profile img {
1374
- float: right;
1375
- }
1376
-
1377
- span#logged {
1378
- float: right;
1379
- text-align: right;
1380
- margin: 6px 10px 0 0;
1381
- small{
1382
- font-size:11px;
1383
- }
1384
- }
1385
-
1386
- #logo {
1387
- position: absolute;
1388
- background: $logo left center no-repeat;
1389
- display: block;
1390
- height: 130px;
1391
- width: 270px;
1392
- }
1393
-
1394
- .user, .s-select select {
1395
- color: #666666;
1396
- }
1397
-
1398
- #bannerXL {
1399
- position: absolute;
1400
- width: 720px;
1401
- height: 130px;
1402
- display: block;
1403
- background: $bannerXL no-repeat left center;
1404
- left: 0;
1405
- }
1406
-
1407
- /*----------MENU ---------*/
1408
- #menu {
1409
- .huge_menu_wrapper {
1410
- float: left;
1411
- width: 855px;
1412
- overflow: hidden;
1413
- }
1414
- .contain {
1415
- position: relative;
1416
- }
1417
-
1418
- a#prevmenu {
1419
- display: block;
1420
- height: 25px;
1421
- width: 25px;
1422
- position: relative;
1423
- z-index: 500;
1424
- }
1425
-
1426
- a#nextmenu {
1427
- right: 0px;
1428
- position: absolute;
1429
- display: block;
1430
- height: 25px;
1431
- width: 25px;
1432
- z-index: 500;
1433
- }
1434
-
1435
- background: $menuColor;
1436
- @include lineargrd(top, $menuColor 50%, $menuMix 100%);
1437
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, $menuColor), color-stop(100%, $menuMix));
1438
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$menuColor}', endColorstr = '#{$menuMix}', GradientType = 0);
1439
- border-top: solid 1px #d9d9d9;
1440
- box-shadow: 0 10px 10px opacity(rgba($menuMix, 0.88));
1441
- position: relative;
1442
- height: 49px;
1443
- }
1444
-
1445
- .win-gradient{
1446
- @include lineargrd(top, $winMain 45%, darken($menuMix, 10%) 100%);
1447
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, $winMain), color-stop(100%, darken($menuMix, 10%)));
1448
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$winMain}', endColorstr = '#{darken($menuMix, 10%)}', GradientType = 0);
1449
- }
1450
- .gradient-soft{
1451
- @include lineargrd(top, $winMain 45%, $menuMix 100%);
1452
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, $winMain), color-stop(100%, $menuMix));
1453
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$winMain}', endColorstr = '#{$menuMix}', GradientType = 0);
1454
- }
1455
-
1456
- a.bt.disabled {
1457
- img {
1458
- opacity: 0.4 !important;
1459
- filter: alpha(opacity = 40) !important;
1460
- }
1461
- &:hover {
1462
- box-shadow: none !important;
1463
- background: transparent !important;
1464
- cursor: default;
1465
- }
1466
-
1467
- }
1468
-
1469
- a.bt {
1470
- width: 50px !important;
1471
- padding-top: 15px;
1472
- height: 33px !important;
1473
- float: left;
1474
- text-align: center;
1475
- display: block;
1476
- border-right: 1px solid lighten($menuColor, 6%);
1477
- &:hover {
1478
- background-color: $menuColor;
1479
- @include box-shadow(inset 0 0 20px darken($menuColor, 30%));
1480
- text-decoration: none;
1481
- }
1482
- }
1483
-
1484
- ul.huge-menu {
1485
- width: 5000px;
1486
- font-size: 13px;
1487
- height: 49px;
1488
- float: left; /*---Actual menu width is 895px so that home and dots may fit, it may need to be less for when going back to other menus.----*/
1489
- li.bt a {
1490
- width: 50px !important;
1491
- padding-top: 15px;
1492
- height: 33px !important;
1493
- }
1494
- li.tl a {
1495
- padding: 8px 0;
1496
- }
1497
- li {
1498
- height: 50px;
1499
- width: 170px;
1500
- float: left;
1501
- list-style: none;
1502
- text-align: center;
1503
- font-weight: bold;
1504
-
1505
- a.dc-huge {
1506
- position: relative;
1507
- }
1508
-
1509
- a, .tl a {
1510
- // width:177px;
1511
- padding-top: 13px;
1512
- height: 35px;
1513
- display: block;
1514
- border-left: 1px solid darken($menuColor, 10%);
1515
- border-right: 1px solid lighten($menuColor, 6%);
1516
- text-transform: uppercase;
1517
- color: darken($menuColor, 50%);
1518
- &:hover {
1519
- color: $menulinkColor;
1520
- background-color: $menuColor;
1521
- @include box-shadow(inset 0 0 20px darken($menuColor, 40%));
1522
- text-decoration: none;
1523
- }
1524
- }
1525
- }
1526
- }
1527
-
1528
- ul.bottom li.huge-hover a.dc-huge {
1529
- color: $menulinkColor !important;
1530
- background-color: $menuColor;
1531
- @include box-shadow(inset 0 0 20px darken($menuColor, 30%));
1532
- text-decoration: none;
1533
- }
1534
-
1535
- /* Controls main menu hover state */
1536
- ul.sub li.huge-hover {
1537
-
1538
- background-color: transparent;
1539
- box-shadow: none;
1540
- text-decoration: none;
1541
-
1542
- }
1543
-
1544
- /* Controls sub-menus background hover state */
1545
-
1546
- /* huge menu container */
1547
- .huge-menu li .sub-container {
1548
- position: absolute;
1549
- background: $menuColor; /* Old browsers */
1550
- /* IE9 SVG, needs conditional override of 'filter' to 'none' */
1551
- @include lineargrd(top, lighten($menuColor, 10%) 0%, $menuColor 100%);
1552
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, lighten($menuColor, 10%)), color-stop(100%, $menuColor)); /* Chrome,Safari4+ */
1553
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{lighten($menuColor, 10%)}', endColorstr = '#{$menuColor}', GradientType = 0); /* IE6-8 */
1554
- padding: 12px 15px 10px 15px;
1555
- box-shadow: 0 3px 8px rgba(6, 6, 6, 0.3), inset 0 -1px 2px darken($menuColor, 20%);
1556
- }
1557
-
1558
- .huge-menu li .sub-container .sub {
1559
- }
1560
-
1561
- /* Option control for background links of all menu items */
1562
- .huge-menu li .sub .row {
1563
- width: 100%;
1564
- overflow: hidden;
1565
- margin-left: 0; /* This makes the menus play nice with bootstrap */
1566
- }
1567
-
1568
- .huge-menu li .sub li {
1569
- float: none;
1570
- font-size: 1em;
1571
- font-weight: normal;
1572
- }
1573
-
1574
- .huge-menu li .sub li.huge-hdr {
1575
- float: left;
1576
- }
1577
-
1578
- .huge-menu li .sub a, .huge-menu.left li .sub a {
1579
- background: none;
1580
- border: none;
1581
- text-shadow: none;
1582
- float: none;
1583
- color: darken($menuColor, 50%);
1584
- display: block;
1585
- text-decoration: none;
1586
- font-size: 0.9em;
1587
- height: auto;
1588
- text-transform: capitalize;
1589
- width: 140px;
1590
-
1591
- }
1592
-
1593
- .huge-menu li .sub li.huge-hdr a.huge-hdr-a {
1594
- font-weight: bold;
1595
- color: $mainColor;
1596
- box-shadow: none;
1597
- text-align: left;
1598
- }
1599
-
1600
- .huge-menu li .sub li.huge-hdr a.huge-hdr-a:hover {
1601
- color: darken($menuColor, 50%);
1602
- background: none;
1603
- }
1604
-
1605
- .huge-menu .sub li.huge-hdr li a {
1606
-
1607
- padding: 5px;
1608
- text-align: left;
1609
- box-shadow: none;
1610
- font-weight: normal;
1611
- color: darken($menuColor, 50%);
1612
- }
1613
-
1614
- .huge-menu .sub li.huge-hdr li a:hover {
1615
- color: $menulinkColor;
1616
-
1617
- }
1618
-
1619
- .huge-menu .sub ul li {
1620
-
1621
- }
1622
-
1623
- /* Styling for menu items with only 2 levels */
1624
- .huge-menu li .sub-container.non-huge .sub {
1625
-
1626
- }
1627
-
1628
- .huge-menu li .sub-container.non-huge li {
1629
-
1630
- }
1631
-
1632
- .huge-menu li .sub-container.non-huge li a {
1633
- padding: 5px;
1634
- text-align: left;
1635
- box-shadow: none;
1636
- font-weight: normal;
1637
- color: darken($menuColor, 50%);
1638
- }
1639
-
1640
- .huge-menu li .sub-container.non-huge li a:hover {
1641
- color: $menulinkColor;
1642
- background: darken($menuColor, 5%);
1643
- border-radius: 4px;
1644
- @include box-shadow(inset 0 0 6px darken($menuColor, 15%));
1645
- }
1646
-
1647
- /*----------MAIN CONTENT ---------*/
1648
- #right-column {
1649
- float: left;
1650
- width: 268px;
1651
- display: block;
1652
- }
1653
-
1654
- #main {
1655
- width: 722px;
1656
- float: right;
1657
- }
1658
-
1659
- /*---------BREADCRUMBS------------*/
1660
- .bredcrumbs {
1661
- @extend .clearfix;
1662
- background: $winShade;
1663
- padding: 10px 0 10px 0;
1664
- ul {
1665
- margin: 0 !important;
1666
- }
1667
- li {
1668
- padding: 0 10px 0 10px;
1669
- float: left;
1670
- background: url(/assets/breadcrumbs.png) no-repeat left center;
1671
- &:first-child {
1672
- padding: 0 10px 0 0 !important;
1673
- background: none !important;
1674
- }
1675
- ;
1676
- }
1677
- }
1678
-
1679
- .bredcrumbs.file-manager-breadcrumbs {
1680
- background: none;
1681
- display: inline-block;
1682
- vertical-align: top;
1683
- padding: 0;
1684
- }
1685
-
1686
- /*----------BOX CONTROLS---------*/
1687
-
1688
- .boxl,
1689
- .poll {
1690
- padding: 20px 15px;
1691
- }
1692
-
1693
- .box {
1694
- padding: 10px 15px 15px 15px;
1695
- }
1696
-
1697
- .box,
1698
- .raffle,
1699
- .poll,
1700
- .trophy {
1701
- text-align: center;
1702
- }
1703
-
1704
- .raffle {
1705
- padding-bottom: 10px;
1706
- }
1707
-
1708
- .trophy img {
1709
- border: none;
1710
- padding: 10px 4px;
1711
- }
1712
-
1713
- .boxli {
1714
- padding: 5px 10px;
1715
- border-top: 1px solid #cecece;
1716
- }
1717
-
1718
- .boxli img {
1719
- float: left;
1720
- }
1721
-
1722
- .box{
1723
- .btn{
1724
- margin-top:20px;
1725
-
1726
- }
1727
- }
1728
-
1729
- /*----------BOX COLORS---------*/
1730
- .perl,
1731
- .raffle,
1732
- .poll,
1733
- .scroll,
1734
- .boxm,
1735
- .home-content {
1736
- background-color: $winShade;
1737
- }
1738
-
1739
- .gray {
1740
- background-color: $winShade;
1741
- }
1742
-
1743
- .lgray {
1744
- background-color: $winMain;
1745
- }
1746
-
1747
- .dark {
1748
- background: url(/assets/dark-box.png);
1749
- color: #cccccc;
1750
- }
1751
-
1752
- .gradient-dark {
1753
- @include gradient-dark;
1754
- }
1755
-
1756
- .gradient-light {
1757
- @include gradient-light
1758
- }
1759
-
1760
- /*----------PROFILE ---------*/
1761
- div#bigname {
1762
- display: block;
1763
- width: 190px;
1764
- float: left;
1765
- padding-top: 10px;
1766
- }
1767
-
1768
- span.bigt {
1769
- font-weight: bold;
1770
- }
1771
-
1772
- .boxl span#welcome {
1773
- font-size: 30px;
1774
- font-weight: 100;
1775
- letter-spacing: -1px;
1776
- }
1777
-
1778
- /*----------------------------*/
1779
- .boxl {
1780
- line-height: 15px;
1781
- position: relative;
1782
- }
1783
-
1784
- .boxl p {
1785
- line-height: 15px;
1786
- }
1787
-
1788
- .boxl img {
1789
- margin-left: 4px;
1790
- }
1791
-
1792
- /*----------TOKEN & POINTS---------*/
1793
- span.smalln,
1794
- span.bign {
1795
- color: $mainColor;
1796
- }
1797
-
1798
- .inner-shadow {
1799
- text-shadow: 1px 1px 2px lighten($mainColor, 50%), 0px 0px 2px darken($mainColor, 100%), 0px 0px 2px lighten($mainColor, 80%);
1800
- }
1801
-
1802
- span.smalln {
1803
- font-size: 22px;
1804
- font-weight: bold;
1805
- line-height: 30px;
1806
- padding: 0 15px;
1807
- margin-top: 10px;
1808
- }
1809
-
1810
- span.bign {
1811
- font-weight: bold;
1812
- font-size: 60px;
1813
- }
1814
-
1815
- /*----------FEED---------*/
1816
- .feed {
1817
- height: 144px;
1818
- overflow-y: auto;
1819
- font-size: 11.5px;
1820
- }
1821
-
1822
- .feed-content {
1823
- padding: 10px;
1824
- background-color: #f2f2f2;
1825
- line-height: 20px;
1826
- color: #666666;
1827
- }
1828
-
1829
- .feed-content strong {
1830
- color: #000;
1831
- }
1832
-
1833
- .feed-content small {
1834
- background: url(/assets/arrow.png) left center no-repeat;
1835
- padding-left: 15px;
1836
- }
1837
-
1838
- .alt {
1839
- background-color: $lgray;
1840
- }
1841
-
1842
- /*----------POLL---------*/
1843
- .poll p {
1844
- text-align: left;
1845
- }
1846
-
1847
- .poll form {
1848
- margin-top: 15px;
1849
- }
1850
-
1851
- .poll label {
1852
- display: list-item;
1853
- list-style: none;
1854
- margin-top: 8px;
1855
- }
1856
-
1857
- .poll span {
1858
- margin-top: 20px;
1859
- display: block;
1860
- }
1861
-
1862
- /*----------EARN POINTS---------*/
1863
- .columns {
1864
- width: 100%;
1865
- margin-left: 0;
1866
- display: inline-block;
1867
- position: relative;
1868
- }
1869
-
1870
- .col {
1871
- margin-left: 10px;
1872
- max-width: 49.4%;
1873
- float: left;
1874
- }
1875
-
1876
- .col:first-child {
1877
- margin-left: 0;
1878
- }
1879
-
1880
- .home-content img {
1881
- float: left;
1882
- margin-right: 20px;
1883
- }
1884
-
1885
- .home-content {
1886
- font-size: 1.2em;
1887
- padding: 16px 15px;
1888
- }
1889
-
1890
- /*----------NEWS & SOCIAL WALL---------*/
1891
-
1892
- .boxm {
1893
- padding: 20px;
1894
- display: block;
1895
- }
1896
-
1897
- .boxm img,
1898
- .combonews img {
1899
- float: left;
1900
- padding: 2px;
1901
- background-color: #FFF;
1902
- border: 1px solid #afaea6;
1903
- }
1904
-
1905
- .news img,
1906
- .boxcombo img {
1907
- margin-right: 20px;
1908
- }
1909
-
1910
- .news h4, .boxcombo h4 {
1911
- margin-bottom: 5px;
1912
- }
1913
-
1914
- .boxm p, .combonews p {
1915
- line-height: 20px;
1916
- }
1917
-
1918
- .boxcombo {
1919
- display: inline-block;
1920
- border-top: solid 1px #cacaca;
1921
- margin-bottom: -3px;
1922
- }
1923
-
1924
- .combonews {
1925
- border-left: 1px solid #ebebeb;
1926
- border-right: 1px solid #cfcfcf;
1927
- width: 319px;
1928
- float: left;
1929
- padding: 20px;
1930
- border-top: 1px solid #e5e5e5;
1931
- }
1932
-
1933
- .boxm form p {
1934
- display: block;
1935
- float: left;
1936
- margin-left: 30px;
1937
- }
1938
-
1939
- .boxm form {
1940
- border-bottom: 1px solid #ebebeb;
1941
- display: inline-block;
1942
- padding: 0 50px 20px 0;
1943
- }
1944
-
1945
- .boxm form textarea {
1946
- width: 530px;
1947
- height: 45px;
1948
- padding-top: 5px;
1949
- padding-left: 5px;
1950
- }
1951
-
1952
- /*----------SOCIAL WALL COMMENTS---------*/
1953
- #profile img {
1954
- float: right;
1955
- padding: 2px;
1956
- background-color: #FFF;
1957
- border: 1px solid #afaea6;
1958
- }
1959
-
1960
- .comments h4 {
1961
- float: left;
1962
- margin-right: 10px;
1963
- }
1964
-
1965
- .comments p {
1966
- border-top: 1px solid #cccccc;
1967
- margin: 6px 0;
1968
- padding: 6px 0;
1969
- }
1970
-
1971
- div.action span {
1972
- float: right;
1973
- }
1974
-
1975
- .comment_content .action span img {
1976
- border: none !important;
1977
- background-color: transparent;
1978
- margin: -3px 6px 0 6px;
1979
- }
1980
-
1981
- div.action {
1982
- border-bottom: 1px solid $lgray;
1983
- border-top: 1px solid $lgray;
1984
- padding: 10px 0;
1985
- font-weight: bold;
1986
- }
1987
-
1988
- /*----------PARENT COMMENTS ---------*/
1989
- ul.comments {
1990
- list-style: none;
1991
- padding: 0;
1992
- margin: 0px;
1993
- }
1994
-
1995
- li.parent {
1996
- margin-bottom: 2px;
1997
- padding: 10px 0;
1998
- }
1999
-
2000
- li.parent .comment_content {
2001
- float: left;
2002
- width: 593px;
2003
- }
2004
-
2005
- .comment_content {
2006
- margin-left: 30px;
2007
- }
2008
-
2009
- /*------------SUB COMMENTS ------------*/
2010
- ul.children {
2011
- list-style: none;
2012
- padding: 0px 0px 0px 80px;
2013
- margin: 0px;
2014
- clear: both;
2015
- }
2016
-
2017
- li.child {
2018
- margin-bottom: 2px;
2019
- padding: 10px 0 10px 10px;
2020
- }
2021
-
2022
- li.child .comment_content {
2023
- float: left;
2024
- width: 500px;
2025
- }
2026
-
2027
- ul.children ul.children li.child {
2028
- background-color: #999;
2029
- }
2030
-
2031
- /*------------TABLES ------------*/
2032
- .list {
2033
- float: left;
2034
- width: 49.4%;
2035
- position: relative;
2036
- margin-left: 10px;
2037
- }
2038
-
2039
- .list:first-child {
2040
- margin-left: 0;
2041
- }
2042
-
2043
- .scroll {
2044
- height: 385px;
2045
- overflow-y: auto;
2046
- }
2047
-
2048
- table {
2049
- width: 100%;
2050
- }
2051
-
2052
- table {
2053
- border-collapse: collapse;
2054
- }
2055
-
2056
- tr {
2057
- text-align: left;
2058
- }
2059
-
2060
- .scroll th {
2061
- background-color: #fefefe;
2062
- font-size: 1.0em;
2063
- @include lineargrd(top, #fefefe, #e4e4e4);
2064
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#e4e4e4));
2065
- background-repeat: repeat-x;
2066
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#e4e4e4', endColorstr = '#fefefe', GradientType = 0);
2067
- *background-color: #fefefe;
2068
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2069
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2070
- }
2071
-
2072
- .scroll td,
2073
- .scroll th {
2074
- padding: 10px 0;
2075
- }
2076
-
2077
- .scroll th {
2078
- border-bottom: 1px solid #d2d2d2;
2079
- }
2080
-
2081
- .scroll td,
2082
- .scroll th {
2083
- border-left: 1px solid #d2d2d2;
2084
- padding-left: 10px;
2085
- }
2086
-
2087
- .scroll td:first-child,
2088
- .scroll th:first-child {
2089
- border-left: none;
2090
- }
2091
-
2092
- /*------------ FOOTER ------------*/
2093
- #footer {
2094
- background: $footer_bg;
2095
- width: 100%;
2096
- color: $foot_text;
2097
- display: block;
2098
- padding: 10px 0 0 0;
2099
- margin-top: 50px;
2100
- a {
2101
- color: $foot_text;
2102
- text-decoration: none;
2103
- }
2104
- }
2105
-
2106
- .foot-menu.complex #legal {
2107
- background-color: rgba(0, 0, 0, 0.3);
2108
-
2109
- filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{darken($footer_bg, 20%)}', endColorstr = '#{darken($footer_bg, 20%)}');
2110
- zoom: 1;
2111
- width: 100%;
2112
- color: $foot_text;
2113
- display: block;
2114
- padding: 10px 0;
2115
- margin-top: 20px;
2116
- }
2117
-
2118
- .foot-menu.simple #legal {
2119
- width: 100%;
2120
- color: $foot_text;
2121
- display: block;
2122
- padding: 10px 0;
2123
- }
2124
-
2125
- /*------------ FOOTER COMPLEX------------*/
2126
- .foot-menu.complex ul li {
2127
- float: left;
2128
- margin-left: 53px;
2129
- line-height: 40px;
2130
- a {
2131
- font-weight: bold;
2132
- }
2133
- }
2134
-
2135
- .foot-menu.complex span {
2136
- float: right;
2137
- min-width: 160px;
2138
- display: block;
2139
- }
2140
-
2141
- .foot-menu.complex ul li:first-child {
2142
- margin-left: 0;
2143
- }
2144
-
2145
- .foot-menu.complex ul li ul li {
2146
- list-style: none;
2147
- line-height: 30px;
2148
- float: none;
2149
- margin-left: 0;
2150
- a {
2151
- font-weight: normal;
2152
- border-bottom: 1px dotted #666;
2153
- }
2154
- }
2155
-
2156
- /*------------ FOOTER SIMPLE------------*/
2157
- .foot-menu.simple span img {
2158
- display: none;
2159
- }
2160
-
2161
- .foot-menu.simple {
2162
- width: 100%;
2163
- text-align: center;
2164
- padding: 20px 0;
2165
- }
2166
-
2167
- .foot-menu.simple ul {
2168
- margin: auto;
2169
- }
2170
-
2171
- .foot-menu.simple li {
2172
- list-style: none;
2173
- display: inline;
2174
- margin: 0 0 0 0;
2175
- font-size: 0.9em;
2176
- border-left: 1px solid $foot_text;
2177
- padding: 0 5px 0 8px;
2178
- }
2179
-
2180
- .foot-menu.simple li:first-child {
2181
- border-left: none;
2182
- }
2183
-
2184
- #footer h4 {
2185
- margin-bottom: 10px;
2186
- }
2187
-
2188
- /*-----------METHODOLOGY ---------*/
2189
- .vehicle {
2190
- float: left;
2191
- width: 45%;
2192
- margin-bottom: 40px;
2193
- }
2194
-
2195
- .vehicle div img {
2196
- width: 100%;
2197
- height: 100%;
2198
- }
2199
-
2200
- .vehicle_setup {
2201
- float: left;
2202
- width: 45%;
2203
- margin-bottom: 40px;
2204
- }
2205
-
2206
- .image.points,
2207
- .image.empty.points {
2208
- height: 100% !important;
2209
- }
2210
-
2211
- .image.empty img {
2212
- width: 100%;
2213
- height: 100%;
2214
- }
2215
-
2216
- /*-----------NOMINATION PROCESS---------*/
2217
-
2218
- #nomination_reason_holder {
2219
- margin: 50px 0 0 50px;
2220
- }
2221
-
2222
- .methodology-progress {
2223
- height: 50px;
2224
- border-bottom: 1px solid #ededed;
2225
- padding: 10px 10px 10px 10px;
2226
- position: relative;
2227
- }
2228
-
2229
- .methodology-progress .step-number {
2230
- font-size: 24px;
2231
- float: left;
2232
- height: 50px;
2233
- margin-right: 12px;
2234
- line-height: 50px;
2235
- font-weight: bold;
2236
- }
2237
-
2238
- .methodology-progress span.step-details {
2239
- font-size: 14px;
2240
- font-weight: bold;
2241
- display: block !important;
2242
- margin-top: 15px;
2243
- }
2244
-
2245
- .methodology-progress small.info {
2246
- font-size: 11px;
2247
- font-weight: normal;
2248
- }
2249
-
2250
- .methodology-progress img {
2251
- position: absolute;
2252
- right: 0;
2253
- top: 30%;
2254
- }
2255
-
2256
- @each $browser in $prefix-lineargradient {
2257
- .methodology-progress.active {
2258
- background: url(/assets/active_nom.png) right center no-repeat, #{$browser}gradient(top, $btnColor, $btnMix) !important;
2259
- background: url(/assets/active_nom.png) right center no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix)) !important;
2260
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2261
- border-color: $btnMix;
2262
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2263
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2264
- }
2265
-
2266
- .methodology-progress.active.hover {
2267
- background-image: url(/assets/active_nom.png) right center no-repeat, #{$browser}gradient(top, $btnColor, $btnMix);
2268
- background-image: url(/assets/active_nom.png) right center no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix));
2269
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2270
- border-color: $btnMix;
2271
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2272
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2273
- cursor: pointer;
2274
- }
2275
- }
2276
-
2277
- .methodology-progress.hover {
2278
- @include lineargrd(top, $btnColor, $btnMix);
2279
- background: -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix));
2280
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2281
- border-color: $btnMix;
2282
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2283
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2284
- cursor: pointer;
2285
- }
2286
-
2287
- .methodology-progress.active,
2288
- .methodology-progress.hover {
2289
- color: #fff;
2290
- }
2291
-
2292
- .section_initiative {
2293
- position: relative;
2294
- border-bottom: 1px solid $lgray;
2295
- padding: 13px 50px 0 20px;
2296
- background-color: #f8f8f8;
2297
- }
2298
-
2299
- .section_initiative.active {
2300
- background-color: #dfeaf2;
2301
- }
2302
-
2303
- .section_initiative form {
2304
- margin: 0 0 0 0;
2305
- }
2306
-
2307
- .section_initiative input.btnarrowg {
2308
- position: absolute;
2309
- right: 20px;
2310
- top: 15px;
2311
- }
2312
-
2313
- .section_initiative img {
2314
- margin: 8px 20px 30px 0;
2315
- float: left;
2316
- padding: 2px;
2317
- width: 52px;
2318
- background-color: #fff;
2319
- border: 1px solid #c8c8c2;
2320
- }
2321
-
2322
- .paging {
2323
- position: absolute;
2324
- bottom: 0;
2325
- width: 100%;
2326
- padding: 7px 0 15px 0;
2327
- border-top: 1px solid #cfcfcf;
2328
- background: #cfcfcf; /* Old browsers */
2329
- /* IE9 SVG, needs conditional override of 'filter' to 'none' */
2330
- @include lineargrd(top, $winShade 0%, $winColor 40%);
2331
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $winShade), color-stop(40%, $winColor)); /* Chrome,Safari4+ */
2332
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$winShade}', endColorstr = '#{$winColor}', GradientType = 0); /* IE6-8 */
2333
- text-align: right;
2334
- a.btn {
2335
- margin-right: 20px;
2336
- }
2337
- }
2338
-
2339
- .clickable-marshall {
2340
- line-height: 70px;
2341
- height: 70px;
2342
- padding-left: 20px;
2343
- }
2344
-
2345
- .clickable-marshall.even {
2346
- background-color: #efefef;
2347
- }
2348
-
2349
- /*-----------GENERAL ICONS WITH AND WITHOUT BUTTON----------*/
2350
- .noToggle,
2351
- .noToggle:hover {
2352
- width: 5px !important;
2353
- height: 9px !important;
2354
- background: url(/assets/noToggle.png) no-repeat center;
2355
- background-color: transparent;
2356
- border: none;
2357
- cursor: pointer;
2358
- display: inline-block;
2359
- *display: inline;
2360
- text-indent: -9999px;
2361
- color: transparent;
2362
- }
2363
-
2364
- .dropToggle,
2365
- .dropToggle:hover {
2366
- width: 9px !important;
2367
- height: 5px !important;
2368
- background: url(/assets/dropToggle.png) no-repeat center;
2369
- background-color: transparent;
2370
- border: none;
2371
- cursor: pointer;
2372
- display: inline-block;
2373
- *display: inline;
2374
- }
2375
-
2376
- @each $thing in $iconbtn {
2377
-
2378
- .#{$thing},
2379
- .#{$thing}:hover,
2380
- a span.#{$thing} {
2381
- width: 30px !important;
2382
- height: 30px !important;
2383
- }
2384
-
2385
- td .#{$thing},
2386
- td .#{$thing}:hover,
2387
- td a span.#{$thing} {
2388
- width: 21px !important;
2389
- height: 21px !important;
2390
- }
2391
-
2392
- .#{$thing},
2393
- .#{$thing}:hover,
2394
- a span.#{$thing} {
2395
- cursor: pointer;
2396
- display: inline-block !important;
2397
- *display: inline;
2398
- background-color: transparent;
2399
- border: none;
2400
- text-indent: -9999px;
2401
- background: url(/assets/#{$thing}.png) no-repeat center center !important;
2402
- color: transparent !important;
2403
- }
2404
- .btn#{$thing}.disabled,
2405
- .btn#{$thing}[disabled],
2406
- .#{$thing}.disabled,
2407
- .#{$thing}[disabled] {
2408
- opacity: 0.4 !important;
2409
- filter: alpha(opacity = 40) !important;
2410
- cursor: default;
2411
- background: #ffffff url(/assets/#{$thing}.png) no-repeat center center;
2412
- &:hover {
2413
- background: #ffffff url(/assets/#{$thing}.png) no-repeat center center !important;
2414
- }
2415
- }
2416
- .btn#{$thing}:active,
2417
- .btn#{$thing}.active {
2418
- background-color: #cccccc \9;
2419
- }
2420
- .btn#{$thing}:first-child,
2421
- #{$thing}:first-child {
2422
- *margin-left: 0;
2423
- }
2424
-
2425
- .btn#{$thing} {
2426
- margin-bottom: 0 !important;
2427
- @include btnshape;
2428
- @include btnborder;
2429
- @each $browser in $prefix-lineargradient {
2430
- background: url(/assets/#{$thing}.png) no-repeat center center, #{$browser}gradient(top, $iconbtnColor, $iconbtnMix);
2431
- }
2432
-
2433
- &:hover {
2434
- color: transparent;
2435
- @each $browser in $prefix-lineargradient {
2436
- background: url(/assets/#{$thing}.png) no-repeat center center, #{$browser}gradient(bottom, $iconbtnColor, $iconbtnMix)!important;
2437
- }
2438
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$iconbtnColor}', endColorstr = '#{$iconbtnMix}', GradientType = 0);
2439
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2440
- }
2441
- }
2442
-
2443
- .DTTT_button_copy_hover {
2444
- color: transparent;
2445
- @each $browser in $prefix-lineargradient {
2446
- background: url(/assets/clone.png) no-repeat center center, #{$browser}gradient(bottom, $iconbtnColor, $iconbtnMix) !important;
2447
- }
2448
- }
2449
-
2450
- }
2451
- button.DTTT_button
2452
- .button.DTTT_button{
2453
- background-color: transparent!important;
2454
- }
2455
- /*-----------MENU MANAGEMENT---------*/
2456
- .footer-options {
2457
- padding-top: 7px;
2458
- div {
2459
- display: none;
2460
- }
2461
- label {
2462
- float: left;
2463
- padding-right: 4px;
2464
- }
2465
- input[type="radio"] {
2466
- float: left;
2467
- margin-right: 10px !important;
2468
- }
2469
- }
2470
-
2471
- #condition_group_header_453 {
2472
- border-radius: 4px;
2473
- }
2474
-
2475
- .menucontrol {
2476
- display: block;
2477
- background-color: darken($winShade, 6%);
2478
- padding-left: 10px;
2479
- padding-right: 10px;
2480
- height: 45px;
2481
- line-height: 45px;
2482
- text-align: right;
2483
- @include box-shadow(inset 0 0 30px rgba(6, 6, 6, 0.1));
2484
- }
2485
-
2486
- .sd {
2487
- border-left: 1px solid darken($winShade, 12%);
2488
- width: 80px;
2489
- float: right;
2490
- margin-left: 10px;
2491
- }
2492
-
2493
- .mtitles {
2494
- width: 467px;
2495
- font-size: 0.8em;
2496
- }
2497
-
2498
- .mstatus,
2499
- .sdate,
2500
- .edate {
2501
- width: 100px;
2502
- font-size: 0.8em;
2503
- }
2504
-
2505
- .mcontrol {
2506
- width: 70px;
2507
- }
2508
-
2509
- .condition_group_content .mcontrol {
2510
- width: 30px;
2511
- }
2512
-
2513
- ol.menu_sort {
2514
- background: url(/assets/zebra_rows_bg.png) top center;
2515
- padding-left: 20px;
2516
- span.title {
2517
- padding-left: 10px !important;
2518
- height: 32px;
2519
- line-height: 32px;
2520
- }
2521
- }
2522
-
2523
- div.menu_right span {
2524
- float: left;
2525
- height: 32px;
2526
- }
2527
-
2528
- span.toggle {
2529
- padding: 0 10px 0 10px;
2530
- margin-left: 5px;
2531
- }
2532
-
2533
- li.dragged > div.clearfix {
2534
- color: orange;
2535
- }
2536
-
2537
- li.draggedd > div.clearfix {
2538
- color: orange;
2539
- background-color: orange;
2540
- }
2541
-
2542
- span.status {
2543
- height: 32px;
2544
- line-height: 32px;
2545
- display: block;
2546
- padding: 0 10px 0 10px;
2547
- width: 102px;
2548
- border-left: 1px solid #d2d2d2;
2549
- }
2550
-
2551
- span.activeMenuItem {
2552
- color: #2f9d00;
2553
- }
2554
-
2555
- span.publish_date {
2556
- height: 32px;
2557
- line-height: 32px;
2558
- padding: 0 10px;
2559
- width: 102px;
2560
- border-left: 1px solid #d2d2d2;
2561
- }
2562
-
2563
- span.expiration_date {
2564
- height: 32px;
2565
- line-height: 32px;
2566
- padding: 0 10px;
2567
- width: 102px;
2568
- border-left: 1px solid #d2d2d2;
2569
- }
2570
-
2571
- span.controls {
2572
-
2573
- height: 32px;
2574
- line-height: 32px;
2575
- width: 70px;
2576
- border-left: 1px solid #d2d2d2;
2577
- }
2578
-
2579
- ol.menu_sort li {
2580
- padding: 0px;
2581
- margin: 0px;
2582
- }
2583
-
2584
- div.menu_left {
2585
- width: 460px;
2586
- float: left;
2587
- }
2588
-
2589
- div.menu_right {
2590
- font-size: 0.9em;
2591
- width: 464px;
2592
- float: right;
2593
-
2594
- }
2595
-
2596
- .form-menu-content thead.scroll {
2597
- height: auto;
2598
- box-shadow: none;
2599
- }
2600
-
2601
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
2602
- select {
2603
- -webkit-box-shadow: inset 0px 0px 14px rgba(153, 153, 153, 0.2) !important;
2604
- -webkit-appearance: none;
2605
- background: #fff url(/assets/drop-down.png) no-repeat right;
2606
- padding: 0 0 0 4px;
2607
- border-radius: 4px;
2608
-
2609
- }
2610
- select.multiselect, select[multiple="multiple"] {
2611
- background: #fff;
2612
- }
2613
- -webkit-appearance: listbox;
2614
- }
2615
-
2616
- .form-section+.lang-select {
2617
- margin-left: 12px;
2618
- }
2619
-
2620
- .form-content+.lang-select {
2621
- margin-left: 0;
2622
- }
2623
-
2624
- .lang-select {
2625
- margin-left: 12px;
2626
- width: 56px;
2627
- height: 30px;
2628
- overflow: hidden;
2629
- background: url(/assets/lang-drop.png) no-repeat right;
2630
- &:fist-child {
2631
- margin-left: 0;
2632
- }
2633
- ;
2634
- select {
2635
- width: 140px;
2636
- background: transparent;
2637
- border: none;
2638
- height: 30px;
2639
- color: transparent;
2640
- -webkit-appearance: none;
2641
- &:focus {
2642
- border: none !important;
2643
- box-shadow: none !important;
2644
- -moz-box-shadow: none !important;
2645
- -ms-box-shadow: none !important;
2646
- -o-box-shadow: none !important;
2647
- -webkit-box-shadow: none !important;
2648
- }
2649
- option {
2650
- color: $textColor !important; /*----This fixes an issue with firefox-----*/
2651
- }
2652
- }
2653
- }
2654
-
2655
- div.vehicles_box {
2656
- border: 2px solid #d1d1d1;
2657
- border-top: 0;
2658
- height: 35px;
2659
- background: url(/assets/gray_gradient_horizontal_large_bg.png) repeat-y;
2660
- }
2661
-
2662
- div.vehicle_container {
2663
- border-right: 2px solid #d1d1d1;
2664
- border-top: 0;
2665
- padding: 10px;
2666
- height: 100%;
2667
- width: 125px;
2668
- background: #fff;
2669
-
2670
- }
2671
-
2672
- /*-----------EMAIL TEMPLATES---------*/
2673
- .tabs-container {
2674
- height: 50px;
2675
- background: url(/assets/tabs_pannel_gradient.png);
2676
- display: block;
2677
- @each $browser in $prefix-lineargradient {
2678
- .tab-links {
2679
- box-shadow: inset -8px 0px 10px rgba(9, 9, 9, 0.1);
2680
- height: 50px !important;
2681
- line-height: 50px;
2682
- float: left;
2683
- font-weight: bold;
2684
- cursor: pointer;
2685
- &:hover, {
2686
- display: block;
2687
- background: url(/assets/active_tabs.png) no-repeat center bottom, #{$browser}gradient(top, $btnColor, $btnMix);
2688
- background: url(/assets/active_tabs.png) no-repeat center bottom, -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix));
2689
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2690
- border-color: $btnMix;
2691
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2692
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2693
- }
2694
-
2695
- &.active {
2696
- cursor: default;
2697
- color: $btnText;
2698
- background: url(/assets/active_tabs.png) no-repeat center bottom, #{$browser}gradient(top, $btnColor, $btnMix);
2699
- background: url(/assets/active_tabs.png) no-repeat center bottom, -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix));
2700
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2701
- border-color: $btnMix;
2702
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2703
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2704
- a {
2705
- color: $btnText;
2706
- &:hover, {
2707
- display: block;
2708
- background: url(/assets/active_tabs.png) no-repeat center bottom, #{$browser}gradient(top, $btnColor, $btnMix) !important;
2709
- background: url(/assets/active_tabs.png) no-repeat center bottom, -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix)) !important;
2710
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2711
- border-color: $btnMix;
2712
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2713
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2714
- }
2715
- }
2716
- }
2717
-
2718
- }
2719
- a {
2720
- color: $textColor;
2721
- padding: 0 20px;
2722
- text-decoration: none;
2723
- display: block;
2724
- &:hover, {
2725
- display: block;
2726
- color: $btnText !important;
2727
- @include lineargrd(top, $btnColor, $btnMix);
2728
- background: -webkit-gradient(linear, 0 0, 0 100%, from($btnColor), to($btnMix));
2729
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnMix}', GradientType = 0);
2730
- border-color: $btnMix;
2731
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2732
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2733
- }
2734
- }
2735
- }
2736
- }
2737
-
2738
- /*-----------MY AWARDS---------*/
2739
- .awards_top {
2740
- position: relative;
2741
- display: block;
2742
- text-align: center;
2743
- h2 {
2744
- z-index: 98;
2745
- }
2746
- .awards_header {
2747
- height: 33px;
2748
- display: block;
2749
- background: url(/assets/awards_header.jpg);
2750
- z-index: 98;
2751
- }
2752
- @each $browser in $prefix-lineargradient {
2753
- .label_tag {
2754
- background: $btnColor url(/assets/awards_label_bg.png);
2755
- background: url(/assets/awards_label_bg.png), #{$browser}gradient(left, $btnMix 0%, $btnColor 50%, $btnMix 100%);
2756
- background: url(/assets/awards_label_bg.png), -webkit-gradient(linear, left top, right top, color-stop(0%, $btnMix), color-stop(50%, $btnColor), color-stop(100%, $btnMix));
2757
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#{$btnColor}', endColorstr = '#{$btnColor}', GradientType = 1);
2758
- position: absolute;
2759
- z-index: 99;
2760
- color: darken($mainColor, 30%);
2761
- font-size: 1.3em;
2762
- text-transform: uppercase;
2763
- font-weight: 600;
2764
- padding: 6px 110px;
2765
- left: 50%;
2766
- margin-left: -160px;
2767
- top: 20px;
2768
- border-radius: 6px;
2769
- box-shadow: 0 5px 6px rgba(0, 0, 0, 0.5);
2770
- }
2771
- }
2772
- }
2773
-
2774
- .awards_search {
2775
- background: url(/assets/awards_search.jpg);
2776
- display: block;
2777
- height: 49px;
2778
- line-height: 49px;
2779
- span.buttons {
2780
- float: right;
2781
- margin-right: 20px;
2782
- }
2783
- select,
2784
- select:active {
2785
- margin-left: 20px;
2786
- background: #000000;
2787
- margin-top: 4px;
2788
- border: 1px solid #000000;
2789
- color: #ffffff;
2790
- &:focus {
2791
- border: 1px solid #000000 !important;
2792
- box-shadow: none !important;
2793
- }
2794
- }
2795
- input[type="text"] {
2796
- background: url(/assets/search.png) 160px center no-repeat, rgba(0, 0, 0, 0.8);
2797
- border: none;
2798
- box-shadow: none;
2799
- border-radius: 1px;
2800
- width: 180px !important;
2801
- margin-left: 10px;
2802
- &:focus {
2803
- border: none !important;
2804
- box-shadow: none !important;
2805
- }
2806
- }
2807
- }
2808
-
2809
- .awards_carousel {
2810
- height: 188px;
2811
- display: block;
2812
- background: url(/assets/awards_carousel.jpg);
2813
- @include box-shadow(inset 0 0 40px rgba(0, 0, 0, 0.7));
2814
- line-height: 230px;
2815
- ul, ol {
2816
- margin: 0 0 0 0;
2817
- }
2818
- }
2819
-
2820
- .awards_divider {
2821
- height: 35px;
2822
- display: block;
2823
- background: url(/assets/awards_divider.jpg);
2824
- box-shadow: 0 10px 5px rgba(0, 0, 0, 0.7);
2825
- z-index: 999;
2826
- }
2827
-
2828
- .awards_details {
2829
- height: 435px;
2830
- width: 606px;
2831
- background: url(/assets/awards_content.jpg);
2832
- overflow: auto;
2833
- float: left;
2834
- box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.5);
2835
- .awards_details_holder {
2836
- padding: 0 0 0 0;
2837
- position: relative;
2838
- .awards_details_content {
2839
- padding: 0 60px 0 130px;
2840
- padding-top: 20px;
2841
- }
2842
- span.total_points {
2843
- position: absolute;
2844
- top: 12px;
2845
- left: 20px;
2846
- strong {
2847
- color: #efb453;
2848
- font-size: 3.6em;
2849
- font-weight: normal;
2850
- }
2851
- small {
2852
- color: #ffffff;
2853
- font-size: 1.2em;
2854
- }
2855
- }
2856
- span.game_tokens {
2857
- position: absolute;
2858
- top: 95px;
2859
- left: 20px;
2860
- strong {
2861
- color: #efb453;
2862
- font-size: 3.6em;
2863
- font-weight: normal;
2864
- }
2865
- small {
2866
- color: #ffffff;
2867
- font-size: 1.2em;
2868
- }
2869
- }
2870
- span.gift_tokens {
2871
- position: absolute;
2872
- top: 180px;
2873
- left: 20px;
2874
- strong {
2875
- color: #efb453;
2876
- font-size: 3.6em;
2877
- font-weight: normal;
2878
- }
2879
- small {
2880
- color: #ffffff;
2881
- font-size: 1.2em;
2882
- }
2883
- }
2884
-
2885
- small.date {
2886
- color: $mainColor;
2887
- }
2888
- h3 {
2889
- color: #ffffff;
2890
- text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
2891
- font-size: 1.6em;
2892
- }
2893
- .profile {
2894
- display: block;
2895
- height: 80px;
2896
- margin-top: 20px;
2897
- img {
2898
- border: 3px solid #ffffff;
2899
- float: left;
2900
- margin-right: 10px;
2901
- }
2902
- span.type {
2903
- color: #ffffff;
2904
- font-weight: bold;
2905
- }
2906
- span.name {
2907
- color: #ffffff;
2908
- }
2909
- }
2910
- .content {
2911
- color: #ffffff;
2912
- p {
2913
- font-size: 0.9em;
2914
- }
2915
- }
2916
- .vehicles {
2917
- color: #ffffff;
2918
- strong {
2919
- display: block;
2920
- }
2921
- img {
2922
- border: 3px solid #ffffff;
2923
- float: left;
2924
- margin-right: 6px;
2925
- }
2926
- }
2927
- }
2928
- }
2929
-
2930
- .awards_holder {
2931
- float: left;
2932
- h3.awards_points {
2933
- height: 38px;
2934
- display: block;
2935
- width: 382px;
2936
- color: #ffffff;
2937
- font-size: 1.1em;
2938
- font-weight: 500;
2939
- height: 38px;
2940
- line-height: 38px;
2941
- padding-left: 12px;
2942
- background: #2a2a2a;
2943
- @include lineargrd(top, #2a2a2a 0%, #0c0c0c 100%);
2944
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2a2a2a), color-stop(100%, #0c0c0c));
2945
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#2a2a2a', endColorstr = '#0c0c0c', GradientType = 0);
2946
- }
2947
- .awards_recent_points {
2948
- height: 397px;
2949
- width: 394px;
2950
- display: block;
2951
- background: url(/assets/awards_sidebar.jpg);
2952
- overflow: hidden;
2953
- box-shadow: inset 8px 0 14px rgba(0, 0, 0, 0.5);
2954
- color: #ffffff;
2955
- div.points_holder {
2956
- height: 55px;
2957
- display: block;
2958
- span.awards_total_points {
2959
- width: 90px;
2960
- float: left;
2961
- height: 55px;
2962
- padding: 0 10px;
2963
- line-height: 55px;
2964
- strong {
2965
- color: #efb453;
2966
- font-size: 2.0em;
2967
- font-weight: normal;
2968
- }
2969
- }
2970
- span.info {
2971
- width: 240px;
2972
- height: 50px;
2973
- float: left;
2974
- padding-top: 5px;
2975
- small.date {
2976
- color: $mainColor;
2977
- }
2978
- }
2979
- span.declined {
2980
- float: left;
2981
- width: 18px;
2982
- height: 40px;
2983
- padding-top: 15px;
2984
- }
2985
- }
2986
- }
2987
- }
2988
-
2989
- /*-----------FILE MANAGER---------*/
2990
- .divide {
2991
- border-left: 1px solid darken($winShade, 10%);
2992
- }
2993
-
2994
- .divide:first-of-type {
2995
- border-left: none;
2996
- }
2997
-
2998
- .dropdown-menu li > a:hover,
2999
- .dropdown-menu .active > a,
3000
- .dropdown-menu .active > a:hover {
3001
- background-color: $mainColor !important;
3002
- }
3003
-
3004
- #folder-content {
3005
- .square {
3006
- border: 1px solid darken($winShade, 30%);
3007
- padding: 2px;
3008
- background: $btnText;
3009
- }
3010
- h3 {
3011
- padding-top: 10px;
3012
- }
3013
- p, h3 {
3014
- padding-left: 20px;
3015
- }
3016
- .info {
3017
- float: left;
3018
- margin-top: -10px;
3019
- }
3020
- p {
3021
- img {
3022
- float: left;
3023
- border: 1px solid darken($winShade, 30%);
3024
- padding: 2px;
3025
- background: $btnText;
3026
- }
3027
- }
3028
- }
3029
-
3030
- .folder-selector {
3031
- min-width: 230px;
3032
- .caret {
3033
- display: inherit;
3034
- vertical-align: middle;
3035
- }
3036
- td img {
3037
- vertical-align: baseline;
3038
- }
3039
-
3040
- }
3041
-
3042
- .folder-selector, .gears-of-war {
3043
- display: inline-block;
3044
- line-height: 30px;
3045
- margin-top: 10px;
3046
- vertical-align: top;
3047
- }
3048
-
3049
- .folder-selector {
3050
- a {
3051
- text-decoration: none !important;
3052
- &:hover {
3053
- color: $mainColor;
3054
- }
3055
- ;
3056
- }
3057
- table td {
3058
- padding-left: 20px;
3059
- }
3060
- table td+td {
3061
- padding-left: 10px;
3062
- }
3063
- tr {
3064
- padding-top: 4px;
3065
- height: 36px;
3066
- line-height: 36px;
3067
- &:hover {
3068
- background: rgba($winShade, 0.3);
3069
- }
3070
- }
3071
- ul {
3072
- margin-left: 10px;
3073
- li {
3074
- margin-left: 5px !important;
3075
- }
3076
- }
3077
- i {
3078
- font-style: normal;
3079
- }
3080
- a {
3081
- color: $textColor;
3082
- }
3083
- .dropdown-menu ul {
3084
- margin-left: 0;
3085
- li {
3086
- margin-left: 0 !important;
3087
- }
3088
- }
3089
- }
3090
-
3091
- /*-----------FILE MANAGER---------*/
3092
-
3093
- .cke_button_fileChooser .cke_icon {
3094
- background-position: 0px -576px !important;
3095
- }
3096
-
3097
- /*-----------FILE CHOOSER---------*/
3098
- .modal.hide.chooser {
3099
- overflow-x: hidden;
3100
- width: 668px !important;
3101
- left: 50% !important;
3102
- margin-left: -326px !important;
3103
- .marshall-columns-wrapper {
3104
- background: url(/assets/light_gray_gradient_bg.png) top repeat-x;
3105
- }
3106
-
3107
- }
3108
-
3109
- .modal-body.chooser {
3110
- .marshall-extra-info {
3111
- display: none;
3112
- }
3113
- padding: 0 !important;
3114
- h2 {
3115
- margin-top: 0 !important;
3116
- border-radius: 0 !important;
3117
- }
3118
- }
3119
-
3120
- /*-----------COLOR PICKER---------*/
3121
- .colorpicker {
3122
- width: 356px;
3123
- height: 176px;
3124
- overflow: hidden;
3125
- position: absolute;
3126
- background: url(../assets/colorpicker_background.png);
3127
- font-family: Arial, Helvetica, sans-serif;
3128
- display: none;
3129
- input {
3130
- width: auto;
3131
- }
3132
- }
3133
-
3134
- .colorpicker_color {
3135
- width: 150px;
3136
- height: 150px;
3137
- left: 14px;
3138
- top: 13px;
3139
- position: absolute;
3140
- background: #f00;
3141
- overflow: hidden;
3142
- cursor: crosshair;
3143
- }
3144
-
3145
- .colorpicker_color div {
3146
- position: absolute;
3147
- top: 0;
3148
- left: 0;
3149
- width: 150px;
3150
- height: 150px;
3151
- background: url(../assets/colorpicker_overlay.png);
3152
- }
3153
-
3154
- .colorpicker_color div div {
3155
- position: absolute;
3156
- top: 0;
3157
- left: 0;
3158
- width: 11px;
3159
- height: 11px;
3160
- overflow: hidden;
3161
- background: url(../assets/colorpicker_select.gif);
3162
- margin: -5px 0 0 -5px;
3163
- }
3164
-
3165
- .colorpicker_hue {
3166
- position: absolute;
3167
- top: 13px;
3168
- left: 171px;
3169
- width: 35px;
3170
- height: 150px;
3171
- cursor: n-resize;
3172
- }
3173
-
3174
- .colorpicker_hue div {
3175
- position: absolute;
3176
- width: 35px;
3177
- height: 9px;
3178
- overflow: hidden;
3179
- background: url(../assets/colorpicker_indic.gif) left top;
3180
- margin: -4px 0 0 0;
3181
- left: 0px;
3182
- }
3183
-
3184
- .colorpicker_new_color {
3185
- position: absolute;
3186
- width: 60px;
3187
- height: 30px;
3188
- left: 213px;
3189
- top: 13px;
3190
- background: #f00;
3191
- }
3192
-
3193
- .colorpicker_current_color {
3194
- position: absolute;
3195
- width: 60px;
3196
- height: 30px;
3197
- left: 283px;
3198
- top: 13px;
3199
- background: #f00;
3200
- }
3201
-
3202
- .colorpicker input {
3203
- background-color: transparent;
3204
- border: 1px solid transparent;
3205
- position: absolute;
3206
- font-size: 10px;
3207
- font-family: Arial, Helvetica, sans-serif;
3208
- color: #898989;
3209
- top: 4px;
3210
- right: 11px;
3211
- text-align: right;
3212
- margin: 0;
3213
- padding: 0;
3214
- height: 11px;
3215
- }
3216
-
3217
- .colorpicker_hex {
3218
- position: absolute;
3219
- width: 72px;
3220
- height: 22px;
3221
- background: url(../assets/colorpicker_hex.png) top;
3222
- left: 212px;
3223
- top: 142px;
3224
- }
3225
-
3226
- .colorpicker_hex input {
3227
- right: 6px;
3228
- }
3229
-
3230
- .colorpicker_field {
3231
- height: 22px;
3232
- width: 62px;
3233
- background-position: top;
3234
- position: absolute;
3235
- }
3236
-
3237
- .colorpicker_field span {
3238
- position: absolute;
3239
- width: 12px;
3240
- height: 22px;
3241
- overflow: hidden;
3242
- top: 0;
3243
- right: 0;
3244
- cursor: n-resize;
3245
- }
3246
-
3247
- .colorpicker_rgb_r {
3248
- background-image: url(../assets/colorpicker_rgb_r.png);
3249
- top: 52px;
3250
- left: 212px;
3251
- }
3252
-
3253
- .colorpicker_rgb_g {
3254
- background-image: url(../assets/colorpicker_rgb_g.png);
3255
- top: 82px;
3256
- left: 212px;
3257
- }
3258
-
3259
- .colorpicker_rgb_b {
3260
- background-image: url(../assets/colorpicker_rgb_b.png);
3261
- top: 112px;
3262
- left: 212px;
3263
- }
3264
-
3265
- .colorpicker_hsb_h {
3266
- background-image: url(../assets/colorpicker_hsb_h.png);
3267
- top: 52px;
3268
- left: 282px;
3269
- }
3270
-
3271
- .colorpicker_hsb_s {
3272
- background-image: url(../assets/colorpicker_hsb_s.png);
3273
- top: 82px;
3274
- left: 282px;
3275
- }
3276
-
3277
- .colorpicker_hsb_b {
3278
- background-image: url(../assets/colorpicker_hsb_b.png);
3279
- top: 112px;
3280
- left: 282px;
3281
- }
3282
-
3283
- .colorpicker_submit {
3284
- position: absolute;
3285
- width: 22px;
3286
- height: 22px;
3287
- background: url(../assets/colorpicker_submit.png) top;
3288
- left: 322px;
3289
- top: 142px;
3290
- overflow: hidden;
3291
- }
3292
-
3293
- .colorpicker_focus {
3294
- background-position: center;
3295
- }
3296
-
3297
- .colorpicker_hex.colorpicker_focus {
3298
- background-position: bottom;
3299
- }
3300
-
3301
- .colorpicker_submit.colorpicker_focus {
3302
- background-position: bottom;
3303
- }
3304
-
3305
- .colorpicker_slider {
3306
- background-position: bottom;
3307
- }
3308
- .mobile_only {
3309
- display: none;
3310
- }