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,4226 +0,0 @@
1
- /*!
2
- * Bootstrap v2.0.1
3
- *
4
- * Copyright 2012 Twitter, Inc
5
- * Licensed under the Apache License v2.0
6
- * http://www.apache.org/licenses/LICENSE-2.0
7
- *
8
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
- */
10
- article,
11
- aside,
12
- details,
13
- figcaption,
14
- figure,
15
- footer,
16
- header,
17
- hgroup,
18
- nav,
19
- section {
20
- display: block;
21
- }
22
-
23
- audio, canvas, video {
24
- display: inline-block;
25
- *display: inline;
26
- *zoom: 1;
27
- }
28
-
29
- audio:not([controls]) {
30
- display: none;
31
- }
32
-
33
- html {
34
- font-size: 100%;
35
- -webkit-text-size-adjust: 100%;
36
- -ms-text-size-adjust: 100%;
37
- }
38
-
39
- a:focus {
40
- outline: thin dotted #333;
41
- outline: 5px auto -webkit-focus-ring-color;
42
- outline-offset: -2px;
43
- }
44
-
45
- a:hover, a:active {
46
- outline: 0;
47
- }
48
-
49
- sub, sup {
50
- position: relative;
51
- font-size: 75%;
52
- line-height: 0;
53
- vertical-align: baseline;
54
- }
55
-
56
- sup {
57
- top: -0.5em;
58
- }
59
-
60
- sub {
61
- bottom: -0.25em;
62
- }
63
-
64
- img {
65
- max-width: 100%;
66
- height: auto;
67
- border: 0;
68
- -ms-interpolation-mode: bicubic;
69
- }
70
-
71
- button,
72
- input,
73
- select,
74
- textarea {
75
- margin: 0;
76
- font-size: 100%;
77
- vertical-align: middle;
78
- }
79
-
80
- button, input {
81
- *overflow: visible;
82
- line-height: normal;
83
- }
84
-
85
- button::-moz-focus-inner, input::-moz-focus-inner {
86
- padding: 0;
87
- border: 0;
88
- }
89
-
90
- button,
91
- input[type="button"],
92
- input[type="reset"],
93
- input[type="submit"] {
94
- cursor: pointer;
95
- -webkit-appearance: button;
96
- }
97
-
98
- input[type="search"] {
99
- -webkit-appearance: textfield;
100
- -webkit-box-sizing: content-box;
101
- -moz-box-sizing: content-box;
102
- box-sizing: content-box;
103
- }
104
-
105
- input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
106
- -webkit-appearance: none;
107
- }
108
-
109
- textarea {
110
- overflow: auto;
111
- vertical-align: top;
112
- }
113
-
114
- .row {
115
- margin-left: -20px;
116
- *zoom: 1;
117
- }
118
-
119
- .row:before, .row:after {
120
- display: table;
121
- content: "";
122
- }
123
-
124
- .row:after {
125
- clear: both;
126
- }
127
-
128
- [class*="span"] {
129
- float: left;
130
- margin-left: 20px;
131
- }
132
-
133
- .span1 {
134
- width: 60px;
135
- }
136
-
137
- .span2 {
138
- width: 140px;
139
- }
140
-
141
- .span3 {
142
- width: 220px;
143
- }
144
-
145
- .span4 {
146
- width: 300px;
147
- }
148
-
149
- .span5 {
150
- width: 380px;
151
- }
152
-
153
- .span6 {
154
- width: 460px;
155
- }
156
-
157
- .span7 {
158
- width: 540px;
159
- }
160
-
161
- .span8 {
162
- width: 620px;
163
- }
164
-
165
- .span9 {
166
- width: 700px;
167
- }
168
-
169
- .span10 {
170
- width: 780px;
171
- }
172
-
173
- .span11 {
174
- width: 860px;
175
- }
176
-
177
- .span12, .container {
178
- width: 1000px;
179
- }
180
-
181
- .offset1 {
182
- margin-left: 100px;
183
- }
184
-
185
- .offset2 {
186
- margin-left: 180px;
187
- }
188
-
189
- .offset3 {
190
- margin-left: 260px;
191
- }
192
-
193
- .offset4 {
194
- margin-left: 340px;
195
- }
196
-
197
- .offset5 {
198
- margin-left: 420px;
199
- }
200
-
201
- .offset6 {
202
- margin-left: 500px;
203
- }
204
-
205
- .offset7 {
206
- margin-left: 580px;
207
- }
208
-
209
- .offset8 {
210
- margin-left: 660px;
211
- }
212
-
213
- .offset9 {
214
- margin-left: 740px;
215
- }
216
-
217
- .offset10 {
218
- margin-left: 820px;
219
- }
220
-
221
- .offset11 {
222
- margin-left: 900px;
223
- }
224
-
225
- .row-fluid {
226
- width: 100%;
227
- *zoom: 1;
228
- }
229
-
230
- .row-fluid:before, .row-fluid:after {
231
- display: table;
232
- content: "";
233
- }
234
-
235
- .row-fluid:after {
236
- clear: both;
237
- }
238
-
239
- .row-fluid > [class*="span"] {
240
- float: left;
241
- margin-left: 2.127659574%;
242
- }
243
-
244
- .row-fluid > [class*="span"]:first-child {
245
- margin-left: 0;
246
- }
247
-
248
- .row-fluid > .span1 {
249
- width: 6.382978723%;
250
- }
251
-
252
- .row-fluid > .span2 {
253
- width: 14.89361702%;
254
- }
255
-
256
- .row-fluid > .span3 {
257
- width: 23.404255317%;
258
- }
259
-
260
- .row-fluid > .span4 {
261
- width: 31.914893614%;
262
- }
263
-
264
- .row-fluid > .span5 {
265
- width: 40.425531911%;
266
- }
267
-
268
- .row-fluid > .span6 {
269
- width: 48.93617020799999%;
270
- }
271
-
272
- .row-fluid > .span7 {
273
- width: 57.446808505%;
274
- }
275
-
276
- .row-fluid > .span8 {
277
- width: 65.95744680199999%;
278
- }
279
-
280
- .row-fluid > .span9 {
281
- width: 74.468085099%;
282
- }
283
-
284
- .row-fluid > .span10 {
285
- width: 82.97872339599999%;
286
- }
287
-
288
- .row-fluid > .span11 {
289
- width: 91.489361693%;
290
- }
291
-
292
- .row-fluid > .span12 {
293
- width: 99.99999998999999%;
294
- }
295
-
296
- .container {
297
- width: 1000px;
298
- margin-left: auto;
299
- margin-right: auto;
300
- *zoom: 1;
301
- }
302
-
303
- .container:before, .container:after {
304
- display: table;
305
- content: "";
306
- }
307
-
308
- .container:after {
309
- clear: both;
310
- }
311
-
312
- .container-fluid {
313
- padding-left: 20px;
314
- padding-right: 20px;
315
- *zoom: 1;
316
- }
317
-
318
- .container-fluid:before, .container-fluid:after {
319
- display: table;
320
- content: "";
321
- }
322
-
323
- .container-fluid:after {
324
- clear: both;
325
- }
326
-
327
- p {
328
- margin: 0 0 9px;
329
- font-size: 13px;
330
- line-height: 18px;
331
- }
332
-
333
- p small {
334
- font-size: 11px;
335
- color: #999999;
336
- }
337
-
338
- .lead {
339
- margin-bottom: 18px;
340
- font-size: 20px;
341
- font-weight: 200;
342
- line-height: 27px;
343
- }
344
-
345
- h1,
346
- h2,
347
- h3,
348
- h4,
349
- h5,
350
- h6 {
351
- margin: 0;
352
- font-weight: bold;
353
- color: #333333;
354
- text-rendering: optimizelegibility;
355
- }
356
-
357
- h1 small,
358
- h2 small,
359
- h3 small,
360
- h4 small,
361
- h5 small,
362
- h6 small {
363
- font-weight: normal;
364
- color: #999999;
365
- }
366
-
367
- h1 {
368
- font-size: 30px;
369
- line-height: 36px;
370
- }
371
-
372
- h1 small {
373
- font-size: 18px;
374
- }
375
-
376
- h2 small {
377
- font-size: 18px;
378
- }
379
-
380
- h3 {
381
- line-height: 27px;
382
- font-size: 18px;
383
- }
384
-
385
- h3 small {
386
- font-size: 14px;
387
- }
388
-
389
- h4, h5, h6 {
390
- line-height: 18px;
391
- }
392
-
393
- h4 {
394
- font-size: 14px;
395
- }
396
-
397
- h4 small {
398
- font-size: 12px;
399
- }
400
-
401
- h5 {
402
- font-size: 12px;
403
- }
404
-
405
- h6 {
406
- font-size: 11px;
407
- color: #999999;
408
- text-transform: uppercase;
409
- }
410
-
411
- .page-header {
412
- padding-bottom: 17px;
413
- margin: 18px 0;
414
- border-bottom: 1px solid #eeeeee;
415
- }
416
-
417
- .page-header h1 {
418
- line-height: 1;
419
- }
420
-
421
- ul, ol {
422
- padding: 0;
423
- }
424
-
425
- ul ul,
426
- ul ol,
427
- ol ol,
428
- ol ul {
429
- margin-bottom: 0;
430
- }
431
-
432
- ol {
433
- list-style: decimal;
434
- }
435
-
436
- ul.unstyled, ol.unstyled {
437
- margin-left: 0;
438
- list-style: none;
439
- }
440
-
441
- dl {
442
- margin-bottom: 18px;
443
- }
444
-
445
- dt, dd {
446
- line-height: 18px;
447
- }
448
-
449
- dt {
450
- font-weight: bold;
451
- }
452
-
453
- dd {
454
- margin-left: 9px;
455
- }
456
-
457
- hr {
458
- margin: 18px 0;
459
- border: 0;
460
- border-top: 1px solid #eeeeee;
461
- border-bottom: 1px solid #ffffff;
462
- }
463
-
464
- strong {
465
- font-weight: bold;
466
- }
467
-
468
- em {
469
- font-style: italic;
470
- }
471
-
472
- .muted {
473
- color: #999999;
474
- }
475
-
476
- abbr {
477
- font-size: 90%;
478
- text-transform: uppercase;
479
- border-bottom: 1px dotted #ddd;
480
- cursor: help;
481
- }
482
-
483
- blockquote {
484
- padding: 0 0 0 15px;
485
- margin: 0 0 18px;
486
- border-left: 5px solid #eeeeee;
487
- }
488
-
489
- blockquote p {
490
- margin-bottom: 0;
491
- font-size: 16px;
492
- font-weight: 300;
493
- line-height: 22.5px;
494
- }
495
-
496
- blockquote small {
497
- display: block;
498
- line-height: 18px;
499
- color: #999999;
500
- }
501
-
502
- blockquote small:before {
503
- content: '\2014 \00A0';
504
- }
505
-
506
- blockquote.pull-right {
507
- float: right;
508
- padding-left: 0;
509
- padding-right: 15px;
510
- border-left: 0;
511
- border-right: 5px solid #eeeeee;
512
- }
513
-
514
- blockquote.pull-right p, blockquote.pull-right small {
515
- text-align: right;
516
- }
517
-
518
- q:before,
519
- q:after,
520
- blockquote:before,
521
- blockquote:after {
522
- content: "";
523
- }
524
-
525
- address {
526
- display: block;
527
- margin-bottom: 18px;
528
- line-height: 18px;
529
- font-style: normal;
530
- }
531
-
532
- small {
533
- font-size: 100%;
534
- }
535
-
536
- cite {
537
- font-style: normal;
538
- }
539
-
540
- code, pre {
541
- padding: 0 3px 2px;
542
- font-family: Menlo, Monaco, "Courier New", monospace;
543
- font-size: 12px;
544
- color: #333333;
545
- -webkit-border-radius: 3px;
546
- -moz-border-radius: 3px;
547
- border-radius: 3px;
548
- }
549
-
550
- code {
551
- padding: 3px 4px;
552
- color: #d14;
553
- background-color: #f7f7f9;
554
- border: 1px solid #e1e1e8;
555
- }
556
-
557
- pre {
558
- display: block;
559
- padding: 8.5px;
560
- margin: 0 0 9px;
561
- font-size: 12px;
562
- line-height: 18px;
563
- background-color: #f5f5f5;
564
- border: 1px solid #ccc;
565
- border: 1px solid rgba(0, 0, 0, 0.15);
566
- -webkit-border-radius: 4px;
567
- -moz-border-radius: 4px;
568
- border-radius: 4px;
569
- white-space: pre;
570
- white-space: pre-wrap;
571
- word-break: break-all;
572
- word-wrap: break-word;
573
- }
574
-
575
- pre.prettyprint {
576
- margin-bottom: 18px;
577
- }
578
-
579
- pre code {
580
- padding: 0;
581
- color: inherit;
582
- background-color: transparent;
583
- border: 0;
584
- }
585
-
586
- .pre-scrollable {
587
- max-height: 340px;
588
- overflow-y: scroll;
589
- }
590
-
591
- form {
592
- margin: 0 0 18px;
593
- }
594
-
595
- fieldset {
596
- padding: 0;
597
- margin: 0;
598
- border: 0;
599
- }
600
-
601
- legend {
602
- display: block;
603
- width: 100%;
604
- padding: 0;
605
- margin-bottom: 27px;
606
- font-size: 19.5px;
607
- line-height: 36px;
608
- color: #333333;
609
- border: 0;
610
- border-bottom: 1px solid #eee;
611
- }
612
-
613
- legend small {
614
- font-size: 13.5px;
615
- color: #999999;
616
- }
617
-
618
- label,
619
- input,
620
- button,
621
- select,
622
- textarea {
623
- font-size: 1.0em;
624
- font-weight: normal;
625
- line-height: 18px;
626
- }
627
-
628
- label {
629
- display: block;
630
- margin-bottom: 5px;
631
- color: #333333;
632
- }
633
-
634
- input,
635
- textarea,
636
- select,
637
- .uneditable-input {
638
- padding: 4px;
639
- display: inline-block;
640
- width: 210px;
641
- height: 18px;
642
- margin-bottom: 9px;
643
- font-size: 1.0em;
644
- line-height: 18px;
645
- color: #555555;
646
- -webkit-border-radius: 3px;
647
- -moz-border-radius: 3px;
648
- border-radius: 3px;
649
- }
650
-
651
-
652
- .uneditable-textarea {
653
- width: auto;
654
- height: auto;
655
- }
656
-
657
- label input, label textarea, label select {
658
- display: block;
659
- }
660
-
661
- input[type="image"], input[type="checkbox"], input[type="radio"] {
662
- width: auto;
663
- height: auto;
664
- padding: 0;
665
- margin: 3px 0;
666
- *margin-top: 0;
667
- /* IE7 */
668
-
669
- line-height: normal;
670
- cursor: pointer;
671
- -webkit-border-radius: 0;
672
- -moz-border-radius: 0;
673
- border-radius: 0;
674
- border: 0 \9;
675
- /* IE9 and down */
676
-
677
- }
678
-
679
- input[type="image"] {
680
- border: 0;
681
- }
682
-
683
- input[type="file"] {
684
- width: auto;
685
- padding: initial;
686
- line-height: initial;
687
- border: initial;
688
- background-color: #ffffff;
689
- background-color: initial;
690
- -webkit-box-shadow: none;
691
- -moz-box-shadow: none;
692
- box-shadow: none;
693
- }
694
-
695
- input[type="button"], input[type="reset"], input[type="submit"] {
696
- width: auto;
697
- height: auto;
698
- }
699
-
700
- select, input[type="file"] {
701
- height: 28px;
702
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
703
-
704
- *margin-top: 4px;
705
- /* For IE7, add top margin to align select with labels */
706
-
707
- line-height: 28px;
708
- }
709
-
710
- input[type="file"] {
711
- line-height: 18px \9;
712
- }
713
-
714
- select {
715
- width: 220px;
716
- }
717
-
718
- select[multiple], select[size] {
719
- height: auto;
720
- }
721
-
722
- input[type="image"] {
723
- -webkit-box-shadow: none;
724
- -moz-box-shadow: none;
725
- box-shadow: none;
726
- }
727
-
728
- textarea {
729
- /*jvsa height: auto;*/
730
- height: 100px;
731
- }
732
-
733
- input[type="hidden"] {
734
- display: none;
735
- }
736
-
737
- .radio, .checkbox {
738
- padding-left: 18px;
739
- }
740
-
741
- .radio input[type="radio"], .checkbox input[type="checkbox"] {
742
- float: left;
743
- margin-left: -18px;
744
- }
745
-
746
- .controls > .radio:first-child, .controls > .checkbox:first-child {
747
- padding-top: 5px;
748
- }
749
-
750
- .radio.inline, .checkbox.inline {
751
- display: inline-block;
752
- padding-top: 5px;
753
- margin-bottom: 0;
754
- vertical-align: middle;
755
- }
756
-
757
- .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
758
- margin-left: 10px;
759
- }
760
-
761
- input, textarea {
762
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
763
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
764
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
765
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
766
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
767
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
768
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
769
- transition: border linear 0.2s, box-shadow linear 0.2s;
770
- }
771
-
772
- input:focus, textarea:focus {
773
- border-color: rgba(82, 168, 236, 0.8);
774
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
775
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
776
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
777
- outline: 0;
778
- outline: thin dotted \9;
779
- /* IE6-9 */
780
-
781
- }
782
-
783
- input[type="file"]:focus,
784
- input[type="radio"]:focus,
785
- input[type="checkbox"]:focus,
786
- select:focus {
787
- -webkit-box-shadow: none;
788
- -moz-box-shadow: none;
789
- box-shadow: none;
790
- outline: thin dotted #333;
791
- outline: 5px auto -webkit-focus-ring-color;
792
- outline-offset: -2px;
793
- }
794
-
795
- .input-mini {
796
- width: 60px;
797
- }
798
-
799
- .input-small {
800
- width: 90px;
801
- }
802
-
803
- .input-medium {
804
- width: 150px;
805
- }
806
-
807
- .input-large {
808
- width: 210px;
809
- }
810
-
811
- .input-xlarge {
812
- width: 270px;
813
- }
814
-
815
- .input-xxlarge {
816
- width: 530px;
817
- }
818
-
819
- input[class*="span"],
820
- select[class*="span"],
821
- textarea[class*="span"],
822
- .uneditable-input {
823
- float: none;
824
- margin-left: 0;
825
- }
826
-
827
- input.span1, textarea.span1, .uneditable-input.span1 {
828
- width: 50px;
829
- }
830
-
831
- input.span2, textarea.span2, .uneditable-input.span2 {
832
- width: 130px;
833
- }
834
-
835
- input.span3, textarea.span3, .uneditable-input.span3 {
836
- width: 210px;
837
- }
838
-
839
- input.span4, textarea.span4, .uneditable-input.span4 {
840
- width: 290px;
841
- }
842
-
843
- input.span5, textarea.span5, .uneditable-input.span5 {
844
- width: 370px;
845
- }
846
-
847
- input.span6, textarea.span6, .uneditable-input.span6 {
848
- width: 450px;
849
- }
850
-
851
- input.span7, textarea.span7, .uneditable-input.span7 {
852
- width: 530px;
853
- }
854
-
855
- input.span8, textarea.span8, .uneditable-input.span8 {
856
- width: 610px;
857
- }
858
-
859
- input.span9, textarea.span9, .uneditable-input.span9 {
860
- width: 690px;
861
- }
862
-
863
- input.span10, textarea.span10, .uneditable-input.span10 {
864
- width: 770px;
865
- }
866
-
867
- input.span11, textarea.span11, .uneditable-input.span11 {
868
- width: 850px;
869
- }
870
-
871
- input.span12, textarea.span12, .uneditable-input.span12 {
872
- width: 930px;
873
- }
874
-
875
- input[disabled],
876
- select[disabled],
877
- textarea[disabled],
878
- input[readonly],
879
- select[readonly],
880
- textarea[readonly] {
881
- background-color: #f5f5f5;
882
- border-color: #ddd;
883
- cursor: not-allowed;
884
- }
885
-
886
- .control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline {
887
- color: #c09853;
888
- }
889
-
890
- .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
891
- color: #c09853;
892
- border-color: #c09853;
893
- }
894
-
895
- .control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
896
- border-color: #a47e3c;
897
- -webkit-box-shadow: 0 0 6px #dbc59e;
898
- -moz-box-shadow: 0 0 6px #dbc59e;
899
- box-shadow: 0 0 6px #dbc59e;
900
- }
901
-
902
- .control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
903
- color: #c09853;
904
- background-color: #fcf8e3;
905
- border-color: #c09853;
906
- }
907
-
908
- .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
909
- color: #b94a48;
910
- }
911
-
912
- .control-group.error input, .control-group.error select, .control-group.error textarea {
913
- color: #b94a48;
914
- border-color: #b94a48;
915
- }
916
-
917
- .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
918
- border-color: #953b39;
919
- -webkit-box-shadow: 0 0 6px #d59392;
920
- -moz-box-shadow: 0 0 6px #d59392;
921
- box-shadow: 0 0 6px #d59392;
922
- }
923
-
924
- .control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
925
- color: #b94a48;
926
- background-color: #f2dede;
927
- border-color: #b94a48;
928
- }
929
-
930
- .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline {
931
- color: #468847;
932
- }
933
-
934
- .control-group.success input, .control-group.success select, .control-group.success textarea {
935
- color: #468847;
936
- border-color: #468847;
937
- }
938
-
939
- .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
940
- border-color: #356635;
941
- -webkit-box-shadow: 0 0 6px #7aba7b;
942
- -moz-box-shadow: 0 0 6px #7aba7b;
943
- box-shadow: 0 0 6px #7aba7b;
944
- }
945
-
946
- .control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
947
- color: #468847;
948
- background-color: #dff0d8;
949
- border-color: #468847;
950
- }
951
-
952
- input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
953
- color: #b94a48;
954
- border-color: #ee5f5b;
955
- }
956
-
957
- input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus {
958
- border-color: #e9322d;
959
- -webkit-box-shadow: 0 0 6px #f8b9b7;
960
- -moz-box-shadow: 0 0 6px #f8b9b7;
961
- box-shadow: 0 0 6px #f8b9b7;
962
- }
963
-
964
- .form-actions {
965
- padding: 17px 20px 18px;
966
- margin-top: 18px;
967
- margin-bottom: 18px;
968
- background-color: #f5f5f5;
969
- border-top: 1px solid #ddd;
970
- }
971
-
972
- .uneditable-input {
973
- display: block;
974
- background-color: #ffffff;
975
- border-color: #eee;
976
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
977
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
978
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
979
- cursor: not-allowed;
980
- }
981
-
982
- :-moz-placeholder {
983
- color: #999999;
984
- }
985
-
986
- ::-webkit-input-placeholder {
987
- color: #999999;
988
- }
989
-
990
- .help-block {
991
- display: block;
992
- margin-top: 5px;
993
- margin-bottom: 0;
994
- color: #999999;
995
- }
996
-
997
- .help-inline {
998
- display: inline-block;
999
- *display: inline;
1000
- /* IE7 inline-block hack */
1001
-
1002
- *zoom: 1;
1003
- margin-bottom: 9px;
1004
- vertical-align: middle;
1005
- padding-left: 5px;
1006
- }
1007
-
1008
- .input-prepend, .input-append {
1009
- margin-bottom: 5px;
1010
- *zoom: 1;
1011
- }
1012
-
1013
- .input-prepend:before,
1014
- .input-append:before,
1015
- .input-prepend:after,
1016
- .input-append:after {
1017
- display: table;
1018
- content: "";
1019
- }
1020
-
1021
- .input-prepend:after, .input-append:after {
1022
- clear: both;
1023
- }
1024
-
1025
- .input-prepend input,
1026
- .input-append input,
1027
- .input-prepend .uneditable-input,
1028
- .input-append .uneditable-input {
1029
- -webkit-border-radius: 0 3px 3px 0;
1030
- -moz-border-radius: 0 3px 3px 0;
1031
- border-radius: 0 3px 3px 0;
1032
- }
1033
-
1034
- .input-prepend input:focus,
1035
- .input-append input:focus,
1036
- .input-prepend .uneditable-input:focus,
1037
- .input-append .uneditable-input:focus {
1038
- position: relative;
1039
- z-index: 2;
1040
- }
1041
-
1042
- .input-prepend .uneditable-input, .input-append .uneditable-input {
1043
- border-left-color: #ccc;
1044
- }
1045
-
1046
- .input-prepend .add-on, .input-append .add-on {
1047
- float: left;
1048
- display: block;
1049
- width: auto;
1050
- min-width: 16px;
1051
- height: 18px;
1052
- margin-right: -1px;
1053
- padding: 4px 5px;
1054
- font-weight: normal;
1055
- line-height: 18px;
1056
- color: #999999;
1057
- text-align: center;
1058
- text-shadow: 0 1px 0 #ffffff;
1059
- background-color: #f5f5f5;
1060
- border: 1px solid #ccc;
1061
- -webkit-border-radius: 3px 0 0 3px;
1062
- -moz-border-radius: 3px 0 0 3px;
1063
- border-radius: 3px 0 0 3px;
1064
- }
1065
-
1066
- .input-prepend .active, .input-append .active {
1067
- background-color: #a9dba9;
1068
- border-color: #46a546;
1069
- }
1070
-
1071
- .input-prepend .add-on {
1072
- *margin-top: 1px;
1073
- /* IE6-7 */
1074
-
1075
- }
1076
-
1077
- .input-append input, .input-append .uneditable-input {
1078
- float: left;
1079
- -webkit-border-radius: 3px 0 0 3px;
1080
- -moz-border-radius: 3px 0 0 3px;
1081
- border-radius: 3px 0 0 3px;
1082
- }
1083
-
1084
- .input-append .uneditable-input {
1085
- border-left-color: #eee;
1086
- border-right-color: #ccc;
1087
- }
1088
-
1089
- .input-append .add-on {
1090
- margin-right: 0;
1091
- margin-left: -1px;
1092
- -webkit-border-radius: 0 3px 3px 0;
1093
- -moz-border-radius: 0 3px 3px 0;
1094
- border-radius: 0 3px 3px 0;
1095
- }
1096
-
1097
- .input-append input:first-child {
1098
- *margin-left: -160px;
1099
- }
1100
-
1101
- .input-append input:first-child + .add-on {
1102
- *margin-left: -21px;
1103
- }
1104
-
1105
- .search-query {
1106
- padding-left: 14px;
1107
- padding-right: 14px;
1108
- margin-bottom: 0;
1109
- -webkit-border-radius: 14px;
1110
- -moz-border-radius: 14px;
1111
- border-radius: 14px;
1112
- }
1113
-
1114
- .form-search input,
1115
- .form-inline input,
1116
- .form-horizontal input,
1117
- .form-search textarea,
1118
- .form-inline textarea,
1119
- .form-horizontal textarea,
1120
- .form-search select,
1121
- .form-inline select,
1122
- .form-horizontal select,
1123
- .form-search .help-inline,
1124
- .form-inline .help-inline,
1125
- .form-horizontal .help-inline,
1126
- .form-search .uneditable-input,
1127
- .form-inline .uneditable-input,
1128
- .form-horizontal .uneditable-input {
1129
- display: inline-block;
1130
- margin-bottom: 0;
1131
- }
1132
-
1133
- .form-search .hide, .form-inline .hide, .form-horizontal .hide {
1134
- display: none;
1135
- }
1136
-
1137
- .form-search label,
1138
- .form-inline label,
1139
- .form-search .input-append,
1140
- .form-inline .input-append,
1141
- .form-search .input-prepend,
1142
- .form-inline .input-prepend {
1143
- display: inline-block;
1144
- }
1145
-
1146
- .form-search .input-append .add-on,
1147
- .form-inline .input-prepend .add-on,
1148
- .form-search .input-append .add-on,
1149
- .form-inline .input-prepend .add-on {
1150
- vertical-align: middle;
1151
- }
1152
-
1153
- .form-search .radio,
1154
- .form-inline .radio,
1155
- .form-search .checkbox,
1156
- .form-inline .checkbox {
1157
- margin-bottom: 0;
1158
- vertical-align: middle;
1159
- }
1160
-
1161
- .control-group {
1162
- margin-bottom: 9px;
1163
- }
1164
-
1165
- legend + .control-group {
1166
- margin-top: 18px;
1167
- -webkit-margin-top-collapse: separate;
1168
- }
1169
-
1170
- .form-horizontal .control-group {
1171
- margin-bottom: 18px;
1172
- *zoom: 1;
1173
- }
1174
-
1175
- .form-horizontal .control-group:before, .form-horizontal .control-group:after {
1176
- display: table;
1177
- content: "";
1178
- }
1179
-
1180
- .form-horizontal .control-group:after {
1181
- clear: both;
1182
- }
1183
-
1184
- .form-horizontal .control-label {
1185
- float: left;
1186
- width: 140px;
1187
- padding-top: 5px;
1188
- text-align: right;
1189
- }
1190
-
1191
- .form-horizontal .controls {
1192
- margin-left: 160px;
1193
- }
1194
-
1195
- .form-horizontal .form-actions {
1196
- padding-left: 160px;
1197
- }
1198
-
1199
- table {
1200
- max-width: 100%;
1201
- border-collapse: collapse;
1202
- border-spacing: 0;
1203
- }
1204
-
1205
- .table {
1206
- width: 100%;
1207
- margin-bottom: 18px;
1208
- }
1209
-
1210
- .table th, .table td {
1211
- padding: 8px;
1212
- line-height: 18px;
1213
- text-align: left;
1214
- vertical-align: top;
1215
- border-top: 1px solid #ddd;
1216
- }
1217
-
1218
- .table th {
1219
- font-weight: bold;
1220
- text-align: left;
1221
- }
1222
-
1223
- .table thead th {
1224
- vertical-align: bottom;
1225
- }
1226
-
1227
- .table thead:first-child tr th, .table thead:first-child tr td {
1228
- border-top: 0;
1229
- }
1230
-
1231
- .table tbody + tbody {
1232
- border-top: 2px solid #ddd;
1233
- }
1234
-
1235
- .table-condensed th, .table-condensed td {
1236
- padding: 4px 5px;
1237
- }
1238
-
1239
- .table-bordered {
1240
- border: 1px solid #ddd;
1241
- border-collapse: separate;
1242
- *border-collapse: collapsed;
1243
- -webkit-border-radius: 4px;
1244
- -moz-border-radius: 4px;
1245
- border-radius: 4px;
1246
- }
1247
-
1248
- .table-bordered th + th,
1249
- .table-bordered td + td,
1250
- .table-bordered th + td,
1251
- .table-bordered td + th {
1252
- border-left: 1px solid #ddd;
1253
- }
1254
-
1255
- .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
1256
- border-top: 0;
1257
- }
1258
-
1259
- .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
1260
- -webkit-border-radius: 4px 0 0 0;
1261
- -moz-border-radius: 4px 0 0 0;
1262
- border-radius: 4px 0 0 0;
1263
- }
1264
-
1265
- .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
1266
- -webkit-border-radius: 0 4px 0 0;
1267
- -moz-border-radius: 0 4px 0 0;
1268
- border-radius: 0 4px 0 0;
1269
- }
1270
-
1271
- .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
1272
- -webkit-border-radius: 0 0 0 4px;
1273
- -moz-border-radius: 0 0 0 4px;
1274
- border-radius: 0 0 0 4px;
1275
- }
1276
-
1277
- .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
1278
- -webkit-border-radius: 0 0 4px 0;
1279
- -moz-border-radius: 0 0 4px 0;
1280
- border-radius: 0 0 4px 0;
1281
- }
1282
-
1283
- .table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
1284
- background-color: #f5f5f5;
1285
- }
1286
-
1287
- .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
1288
- background-color: #f9f9f9;
1289
- background-color: #ededed;
1290
- }
1291
-
1292
- .table tbody tr:hover td, .table tbody tr:hover th {
1293
- background-color: #f5f5f5;
1294
- background-color: #e5e5e5;
1295
- }
1296
-
1297
- table .span1 {
1298
- float: none;
1299
- width: 44px;
1300
- margin-left: 0;
1301
- }
1302
-
1303
- table .span2 {
1304
- float: none;
1305
- width: 124px;
1306
- margin-left: 0;
1307
- }
1308
-
1309
- table .span3 {
1310
- float: none;
1311
- width: 204px;
1312
- margin-left: 0;
1313
- }
1314
-
1315
- table .span4 {
1316
- float: none;
1317
- width: 284px;
1318
- margin-left: 0;
1319
- }
1320
-
1321
- table .span5 {
1322
- float: none;
1323
- width: 364px;
1324
- margin-left: 0;
1325
- }
1326
-
1327
- table .span6 {
1328
- float: none;
1329
- width: 444px;
1330
- margin-left: 0;
1331
- }
1332
-
1333
- table .span7 {
1334
- float: none;
1335
- width: 524px;
1336
- margin-left: 0;
1337
- }
1338
-
1339
- table .span8 {
1340
- float: none;
1341
- width: 604px;
1342
- margin-left: 0;
1343
- }
1344
-
1345
- table .span9 {
1346
- float: none;
1347
- width: 684px;
1348
- margin-left: 0;
1349
- }
1350
-
1351
- table .span10 {
1352
- float: none;
1353
- width: 764px;
1354
- margin-left: 0;
1355
- }
1356
-
1357
- table .span11 {
1358
- float: none;
1359
- width: 844px;
1360
- margin-left: 0;
1361
- }
1362
-
1363
- table .span12 {
1364
- float: none;
1365
- width: 924px;
1366
- margin-left: 0;
1367
- }
1368
-
1369
- [class^="icon-"], [class*=" icon-"] {
1370
- display: inline-block;
1371
- width: 14px;
1372
- height: 14px;
1373
- line-height: 14px;
1374
- vertical-align: text-top;
1375
- background-image: url("/assets/glyphicons-halflings.png");
1376
- background-position: 14px 14px;
1377
- background-repeat: no-repeat;
1378
- *margin-right: .3em;
1379
- }
1380
-
1381
- [class^="icon-"]:last-child, [class*=" icon-"]:last-child {
1382
- *margin-left: 0;
1383
- }
1384
-
1385
- .icon-white {
1386
- background-image: url("/assets/glyphicons-halflings-white.png");
1387
- }
1388
-
1389
- .icon-thumbs-up {
1390
- background-position: -96px -144px;
1391
- }
1392
-
1393
- .icon-glass {
1394
- background-position: 0 0;
1395
- }
1396
-
1397
- .icon-music {
1398
- background-position: -24px 0;
1399
- }
1400
-
1401
- .icon-search {
1402
- background-position: -48px 0;
1403
- }
1404
-
1405
- .icon-envelope {
1406
- background-position: -72px 0;
1407
- }
1408
-
1409
- .icon-heart {
1410
- background-position: -96px 0;
1411
- }
1412
-
1413
- .icon-star {
1414
- background-position: -120px 0;
1415
- }
1416
-
1417
- .icon-star-empty {
1418
- background-position: -144px 0;
1419
- }
1420
-
1421
- .icon-user {
1422
- background-position: -168px 0;
1423
- }
1424
-
1425
- .icon-film {
1426
- background-position: -192px 0;
1427
- }
1428
-
1429
- .icon-th-large {
1430
- background-position: -216px 0;
1431
- }
1432
-
1433
- .icon-th {
1434
- background-position: -240px 0;
1435
- }
1436
-
1437
- .icon-th-list {
1438
- background-position: -264px 0;
1439
- }
1440
-
1441
- .icon-ok {
1442
- background-position: -288px 0;
1443
- }
1444
-
1445
- .icon-remove {
1446
- background-position: -312px 0;
1447
- }
1448
-
1449
- .icon-zoom-in {
1450
- background-position: -336px 0;
1451
- }
1452
-
1453
- .icon-zoom-out {
1454
- background-position: -360px 0;
1455
- }
1456
-
1457
- .icon-off {
1458
- background-position: -384px 0;
1459
- }
1460
-
1461
- .icon-signal {
1462
- background-position: -408px 0;
1463
- }
1464
-
1465
- .icon-cog {
1466
- background-position: -432px 0;
1467
- }
1468
-
1469
- .icon-trash {
1470
- background-position: -456px 0;
1471
- }
1472
-
1473
- .icon-home {
1474
- background-position: 0 -24px;
1475
- }
1476
-
1477
- .icon-file {
1478
- background-position: -24px -24px;
1479
- }
1480
-
1481
- .icon-time {
1482
- background-position: -48px -24px;
1483
- }
1484
-
1485
- .icon-road {
1486
- background-position: -72px -24px;
1487
- }
1488
-
1489
- .icon-download-alt {
1490
- background-position: -96px -24px;
1491
- }
1492
-
1493
- .icon-download {
1494
- background-position: -120px -24px;
1495
- }
1496
-
1497
- .icon-upload {
1498
- background-position: -144px -24px;
1499
- }
1500
-
1501
- .icon-inbox {
1502
- background-position: -168px -24px;
1503
- }
1504
-
1505
- .icon-play-circle {
1506
- background-position: -192px -24px;
1507
- }
1508
-
1509
- .icon-repeat {
1510
- background-position: -216px -24px;
1511
- }
1512
-
1513
- .icon-refresh {
1514
- background-position: -240px -24px;
1515
- }
1516
-
1517
- .icon-list-alt {
1518
- background-position: -264px -24px;
1519
- }
1520
-
1521
- .icon-lock {
1522
- background-position: -287px -24px;
1523
- }
1524
-
1525
- .icon-flag {
1526
- background-position: -312px -24px;
1527
- }
1528
-
1529
- .icon-headphones {
1530
- background-position: -336px -24px;
1531
- }
1532
-
1533
- .icon-volume-off {
1534
- background-position: -360px -24px;
1535
- }
1536
-
1537
- .icon-volume-down {
1538
- background-position: -384px -24px;
1539
- }
1540
-
1541
- .icon-volume-up {
1542
- background-position: -408px -24px;
1543
- }
1544
-
1545
- .icon-qrcode {
1546
- background-position: -432px -24px;
1547
- }
1548
-
1549
- .icon-barcode {
1550
- background-position: -456px -24px;
1551
- }
1552
-
1553
- .icon-tag {
1554
- background-position: 0 -48px;
1555
- }
1556
-
1557
- .icon-tags {
1558
- background-position: -25px -48px;
1559
- }
1560
-
1561
- .icon-book {
1562
- background-position: -48px -48px;
1563
- }
1564
-
1565
- .icon-bookmark {
1566
- background-position: -72px -48px;
1567
- }
1568
-
1569
- .icon-print {
1570
- background-position: -96px -48px;
1571
- }
1572
-
1573
- .icon-camera {
1574
- background-position: -120px -48px;
1575
- }
1576
-
1577
- .icon-font {
1578
- background-position: -144px -48px;
1579
- }
1580
-
1581
- .icon-bold {
1582
- background-position: -167px -48px;
1583
- }
1584
-
1585
- .icon-italic {
1586
- background-position: -192px -48px;
1587
- }
1588
-
1589
- .icon-text-height {
1590
- background-position: -216px -48px;
1591
- }
1592
-
1593
- .icon-text-width {
1594
- background-position: -240px -48px;
1595
- }
1596
-
1597
- .icon-align-left {
1598
- background-position: -264px -48px;
1599
- }
1600
-
1601
- .icon-align-center {
1602
- background-position: -288px -48px;
1603
- }
1604
-
1605
- .icon-align-right {
1606
- background-position: -312px -48px;
1607
- }
1608
-
1609
- .icon-align-justify {
1610
- background-position: -336px -48px;
1611
- }
1612
-
1613
- .icon-list {
1614
- background-position: -360px -48px;
1615
- }
1616
-
1617
- .icon-indent-left {
1618
- background-position: -384px -48px;
1619
- }
1620
-
1621
- .icon-indent-right {
1622
- background-position: -408px -48px;
1623
- }
1624
-
1625
- .icon-facetime-video {
1626
- background-position: -432px -48px;
1627
- }
1628
-
1629
- .icon-picture {
1630
- background-position: -456px -48px;
1631
- }
1632
-
1633
- .icon-pencil {
1634
- background-position: 0 -72px;
1635
- }
1636
-
1637
- .icon-map-marker {
1638
- background-position: -24px -72px;
1639
- }
1640
-
1641
- .icon-adjust {
1642
- background-position: -48px -72px;
1643
- }
1644
-
1645
- .icon-tint {
1646
- background-position: -72px -72px;
1647
- }
1648
-
1649
- .icon-edit {
1650
- background-position: -96px -72px;
1651
- }
1652
-
1653
- .icon-share {
1654
- background-position: -120px -72px;
1655
- }
1656
-
1657
- .icon-check {
1658
- background-position: -144px -72px;
1659
- }
1660
-
1661
- .icon-move {
1662
- background-position: -168px -72px;
1663
- }
1664
-
1665
- .icon-step-backward {
1666
- background-position: -192px -72px;
1667
- }
1668
-
1669
- .icon-fast-backward {
1670
- background-position: -216px -72px;
1671
- }
1672
-
1673
- .icon-backward {
1674
- background-position: -240px -72px;
1675
- }
1676
-
1677
- .icon-play {
1678
- background-position: -264px -72px;
1679
- }
1680
-
1681
- .icon-pause {
1682
- background-position: -288px -72px;
1683
- }
1684
-
1685
- .icon-stop {
1686
- background-position: -312px -72px;
1687
- }
1688
-
1689
- .icon-forward {
1690
- background-position: -336px -72px;
1691
- }
1692
-
1693
- .icon-fast-forward {
1694
- background-position: -360px -72px;
1695
- }
1696
-
1697
- .icon-step-forward {
1698
- background-position: -384px -72px;
1699
- }
1700
-
1701
- .icon-eject {
1702
- background-position: -408px -72px;
1703
- }
1704
-
1705
- .icon-chevron-left {
1706
- background-position: -432px -72px;
1707
- }
1708
-
1709
- .icon-chevron-right {
1710
- background-position: -456px -72px;
1711
- }
1712
-
1713
- .icon-plus-sign {
1714
- background-position: 0 -96px;
1715
- }
1716
-
1717
- .icon-minus-sign {
1718
- background-position: -24px -96px;
1719
- }
1720
-
1721
- .icon-remove-sign {
1722
- background-position: -48px -96px;
1723
- }
1724
-
1725
- .icon-ok-sign {
1726
- background-position: -72px -96px;
1727
- }
1728
-
1729
- .icon-question-sign {
1730
- background-position: -96px -96px;
1731
- }
1732
-
1733
- .icon-info-sign {
1734
- background-position: -120px -96px;
1735
- }
1736
-
1737
- .icon-screenshot {
1738
- background-position: -144px -96px;
1739
- }
1740
-
1741
- .icon-remove-circle {
1742
- background-position: -168px -96px;
1743
- }
1744
-
1745
- .icon-ok-circle {
1746
- background-position: -192px -96px;
1747
- }
1748
-
1749
- .icon-ban-circle {
1750
- background-position: -216px -96px;
1751
- }
1752
-
1753
- .icon-arrow-left {
1754
- background-position: -240px -96px;
1755
- }
1756
-
1757
- .icon-arrow-right {
1758
- background-position: -264px -96px;
1759
- }
1760
-
1761
- .icon-arrow-up {
1762
- background-position: -289px -96px;
1763
- }
1764
-
1765
- .icon-arrow-down {
1766
- background-position: -312px -96px;
1767
- }
1768
-
1769
- .icon-share-alt {
1770
- background-position: -336px -96px;
1771
- }
1772
-
1773
- .icon-resize-full {
1774
- background-position: -360px -96px;
1775
- }
1776
-
1777
- .icon-resize-small {
1778
- background-position: -384px -96px;
1779
- }
1780
-
1781
- .icon-plus {
1782
- background-position: -408px -96px;
1783
- }
1784
-
1785
- .icon-minus {
1786
- background-position: -433px -96px;
1787
- }
1788
-
1789
- .icon-asterisk {
1790
- background-position: -456px -96px;
1791
- }
1792
-
1793
- .icon-exclamation-sign {
1794
- background-position: 0 -120px;
1795
- }
1796
-
1797
- .icon-gift {
1798
- background-position: -24px -120px;
1799
- }
1800
-
1801
- .icon-leaf {
1802
- background-position: -48px -120px;
1803
- }
1804
-
1805
- .icon-fire {
1806
- background-position: -72px -120px;
1807
- }
1808
-
1809
- .icon-eye-open {
1810
- background-position: -96px -120px;
1811
- }
1812
-
1813
- .icon-eye-close {
1814
- background-position: -120px -120px;
1815
- }
1816
-
1817
- .icon-warning-sign {
1818
- background-position: -144px -120px;
1819
- }
1820
-
1821
- .icon-plane {
1822
- background-position: -168px -120px;
1823
- }
1824
-
1825
- .icon-calendar {
1826
- background-position: -192px -120px;
1827
- }
1828
-
1829
- .icon-random {
1830
- background-position: -216px -120px;
1831
- }
1832
-
1833
- .icon-comment {
1834
- background-position: -240px -120px;
1835
- }
1836
-
1837
- .icon-magnet {
1838
- background-position: -264px -120px;
1839
- }
1840
-
1841
- .icon-chevron-up {
1842
- background-position: -288px -120px;
1843
- }
1844
-
1845
- .icon-chevron-down {
1846
- background-position: -313px -119px;
1847
- }
1848
-
1849
- .icon-retweet {
1850
- background-position: -336px -120px;
1851
- }
1852
-
1853
- .icon-shopping-cart {
1854
- background-position: -360px -120px;
1855
- }
1856
-
1857
- .icon-folder-close {
1858
- background-position: -384px -120px;
1859
- }
1860
-
1861
- .icon-folder-open {
1862
- background-position: -408px -120px;
1863
- }
1864
-
1865
- .icon-resize-vertical {
1866
- background-position: -432px -119px;
1867
- }
1868
-
1869
- .icon-resize-horizontal {
1870
- background-position: -456px -118px;
1871
- }
1872
-
1873
- .dropdown {
1874
- position: relative;
1875
- }
1876
-
1877
- .dropdown-toggle {
1878
- *margin-bottom: -3px;
1879
- }
1880
-
1881
- .dropdown-toggle:active, .open .dropdown-toggle {
1882
- outline: 0;
1883
- }
1884
-
1885
- .caret {
1886
- display: inline-block;
1887
- width: 0;
1888
- height: 0;
1889
- text-indent: -99999px;
1890
- *text-indent: 0;
1891
- vertical-align: top;
1892
- border-left: 4px solid transparent;
1893
- border-right: 4px solid transparent;
1894
- border-top: 4px solid #000000;
1895
- opacity: 0.3;
1896
- filter: alpha(opacity = 30);
1897
- content: "\2193";
1898
- }
1899
-
1900
- .dropdown .caret {
1901
- margin-top: 8px;
1902
- margin-left: 2px;
1903
- }
1904
-
1905
- .dropdown:hover .caret, .open.dropdown .caret {
1906
- opacity: 1;
1907
- filter: alpha(opacity = 100);
1908
- }
1909
-
1910
- .dropdown-menu {
1911
- position: absolute;
1912
- top: 100%;
1913
- left: 0;
1914
- z-index: 1000;
1915
- float: left;
1916
- display: none;
1917
- min-width: 160px;
1918
- _width: 160px;
1919
- padding: 4px 0;
1920
- margin: 0;
1921
- list-style: none;
1922
- background-color: #ffffff;
1923
- border-color: #ccc;
1924
- border-color: rgba(0, 0, 0, 0.2);
1925
- border-style: solid;
1926
- border-width: 1px;
1927
- -webkit-border-radius: 0 0 5px 5px;
1928
- -moz-border-radius: 0 0 5px 5px;
1929
- border-radius: 0 0 5px 5px;
1930
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1931
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1932
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1933
- -webkit-background-clip: padding-box;
1934
- -moz-background-clip: padding;
1935
- background-clip: padding-box;
1936
- *border-right-width: 2px;
1937
- *border-bottom-width: 2px;
1938
- }
1939
-
1940
- .dropdown-menu.bottom-up {
1941
- top: auto;
1942
- bottom: 100%;
1943
- margin-bottom: 2px;
1944
- }
1945
-
1946
- .dropdown-menu .divider {
1947
- height: 1px;
1948
- margin: 5px 1px;
1949
- overflow: hidden;
1950
- background-color: #e5e5e5;
1951
- border-bottom: 1px solid #ffffff;
1952
- *width: 100%;
1953
- *margin: -5px 0 5px;
1954
- }
1955
-
1956
- .dropdown-menu a {
1957
- display: block;
1958
- padding: 3px 15px;
1959
- clear: both;
1960
- font-weight: normal;
1961
- line-height: 18px;
1962
- color: #555555;
1963
- white-space: nowrap;
1964
- }
1965
-
1966
- .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1967
- color: #ffffff;
1968
- text-decoration: none;
1969
- background-color: #0088cc;
1970
- }
1971
-
1972
- .dropdown.open {
1973
- *z-index: 1000;
1974
- }
1975
-
1976
- .dropdown.open .dropdown-toggle {
1977
- color: #ffffff;
1978
- background: #ccc;
1979
- background: rgba(0, 0, 0, 0.3);
1980
- }
1981
-
1982
- .dropdown.open .dropdown-menu {
1983
- display: block;
1984
- }
1985
-
1986
- .typeahead {
1987
- margin-top: 2px;
1988
- -webkit-border-radius: 4px;
1989
- -moz-border-radius: 4px;
1990
- border-radius: 4px;
1991
- }
1992
-
1993
- .well {
1994
- min-height: 20px;
1995
- padding: 19px;
1996
- margin-bottom: 20px;
1997
- background-color: #f5f5f5;
1998
- border: 1px solid #eee;
1999
- border: 1px solid rgba(0, 0, 0, 0.05);
2000
- -webkit-border-radius: 4px;
2001
- -moz-border-radius: 4px;
2002
- border-radius: 4px;
2003
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2004
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2005
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2006
- }
2007
-
2008
- .well blockquote {
2009
- border-color: #ddd;
2010
- border-color: rgba(0, 0, 0, 0.15);
2011
- }
2012
-
2013
- .fade {
2014
- -webkit-transition: opacity 0.15s linear;
2015
- -moz-transition: opacity 0.15s linear;
2016
- -ms-transition: opacity 0.15s linear;
2017
- -o-transition: opacity 0.15s linear;
2018
- transition: opacity 0.15s linear;
2019
- opacity: 0;
2020
- }
2021
-
2022
- .fade.in {
2023
- opacity: 1;
2024
- }
2025
-
2026
- .collapse {
2027
- -webkit-transition: height 0.35s ease;
2028
- -moz-transition: height 0.35s ease;
2029
- -ms-transition: height 0.35s ease;
2030
- -o-transition: height 0.35s ease;
2031
- transition: height 0.35s ease;
2032
- position: relative;
2033
- overflow: hidden;
2034
- height: 0;
2035
- }
2036
-
2037
- .collapse.in {
2038
- height: auto;
2039
- }
2040
-
2041
- .close {
2042
- float: right;
2043
- font-size: 20px;
2044
- font-weight: bold;
2045
- line-height: 18px;
2046
- color: #000000;
2047
- text-shadow: 0 1px 0 #ffffff;
2048
- opacity: 0.2;
2049
- filter: alpha(opacity = 20);
2050
- }
2051
-
2052
- .close:hover {
2053
- color: #000000;
2054
- text-decoration: none;
2055
- opacity: 0.4;
2056
- filter: alpha(opacity = 40);
2057
- cursor: pointer;
2058
- }
2059
-
2060
- .btn-def {
2061
- display: inline-block;
2062
- padding: 4px 10px 4px;
2063
- margin-bottom: 0;
2064
- font-size: 13px;
2065
- line-height: 18px;
2066
- color: #333333;
2067
- text-align: center;
2068
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
2069
- vertical-align: middle;
2070
- background-color: #f5f5f5;
2071
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
2072
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
2073
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
2074
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
2075
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
2076
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
2077
- background-repeat: repeat-x;
2078
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#e6e6e6', GradientType = 0);
2079
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
2080
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2081
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2082
- border: 1px solid #ccc;
2083
- border-bottom-color: #bbb;
2084
- -webkit-border-radius: 4px;
2085
- -moz-border-radius: 4px;
2086
- border-radius: 4px;
2087
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2088
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2089
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2090
- cursor: pointer;
2091
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2092
- *margin-left: .3em;
2093
- }
2094
-
2095
- .btn-def:hover,
2096
- .btn-def:active,
2097
- .btn-def.active,
2098
- .btn-def.disabled,
2099
- .btn-def[disabled] {
2100
- background-color: #e6e6e6;
2101
- }
2102
-
2103
- .btn-def:active, .btn.active {
2104
- background-color: #cccccc \9;
2105
- }
2106
-
2107
- .btn-def:first-child {
2108
- *margin-left: 0;
2109
- }
2110
-
2111
- .btn-def:hover {
2112
- color: #333333;
2113
- text-decoration: none;
2114
- background-color: #e6e6e6;
2115
- background-position: 0 -15px;
2116
- -webkit-transition: background-position 0.1s linear;
2117
- -moz-transition: background-position 0.1s linear;
2118
- -ms-transition: background-position 0.1s linear;
2119
- -o-transition: background-position 0.1s linear;
2120
- transition: background-position 0.1s linear;
2121
- }
2122
-
2123
- .btn-def:focus {
2124
- outline: thin dotted #333;
2125
- outline: 5px auto -webkit-focus-ring-color;
2126
- outline-offset: -2px;
2127
- }
2128
-
2129
- .btn-def.active, .btn:active {
2130
- background-image: none;
2131
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2132
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2133
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2134
- background-color: #e6e6e6;
2135
- background-color: #d9d9d9 \9;
2136
- outline: 0;
2137
- }
2138
-
2139
- .btn-def.disabled, .btn[disabled] {
2140
- cursor: default;
2141
- background-image: none;
2142
- background-color: #e6e6e6;
2143
- opacity: 0.65;
2144
- filter: alpha(opacity = 65);
2145
- -webkit-box-shadow: none;
2146
- -moz-box-shadow: none;
2147
- box-shadow: none;
2148
- }
2149
-
2150
- .btn-def-large {
2151
- padding: 9px 14px;
2152
- font-size: 15px;
2153
- line-height: normal;
2154
- -webkit-border-radius: 5px;
2155
- -moz-border-radius: 5px;
2156
- border-radius: 5px;
2157
- }
2158
-
2159
- .btn-def-large [class^="icon-"] {
2160
- margin-top: 1px;
2161
- }
2162
-
2163
- .btn-def-small {
2164
- padding: 5px 9px;
2165
- font-size: 11px;
2166
- line-height: 16px;
2167
- }
2168
-
2169
- .btn-def-small [class^="icon-"] {
2170
- margin-top: -1px;
2171
- }
2172
-
2173
- .btn-def-mini {
2174
- padding: 2px 6px;
2175
- font-size: 11px;
2176
- line-height: 14px;
2177
- }
2178
-
2179
- .btn-primary,
2180
- .btn-primary:hover,
2181
- .btn-warning,
2182
- .btn-warning:hover,
2183
- .btn-danger,
2184
- .btn-danger:hover,
2185
- .btn-success,
2186
- .btn-success:hover,
2187
- .btn-info,
2188
- .btn-info:hover,
2189
- .btn-inverse,
2190
- .btn-inverse:hover {
2191
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2192
- color: #ffffff;
2193
- }
2194
-
2195
- .btn-primary.active,
2196
- .btn-warning.active,
2197
- .btn-danger.active,
2198
- .btn-success.active,
2199
- .btn-info.active,
2200
- .btn-dark.active {
2201
- color: rgba(255, 255, 255, 0.75);
2202
- }
2203
-
2204
- .btn-primary {
2205
- background-color: #006dcc;
2206
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
2207
- background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
2208
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
2209
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
2210
- background-image: -o-linear-gradient(top, #0088cc, #0044cc);
2211
- background-image: linear-gradient(top, #0088cc, #0044cc);
2212
- background-repeat: repeat-x;
2213
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0088cc', endColorstr = '#0044cc', GradientType = 0);
2214
- border-color: #0044cc #0044cc #002a80;
2215
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2216
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2217
- }
2218
-
2219
- .btn-primary:hover,
2220
- .btn-primary:active,
2221
- .btn-primary.active,
2222
- .btn-primary.disabled,
2223
- .btn-primary[disabled] {
2224
- background-color: #0044cc;
2225
- }
2226
-
2227
- .btn-primary:active, .btn-primary.active {
2228
- background-color: #003399 \9;
2229
- }
2230
-
2231
- .btn-warning {
2232
- background-color: #faa732;
2233
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2234
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
2235
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
2236
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2237
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
2238
- background-image: linear-gradient(top, #fbb450, #f89406);
2239
- background-repeat: repeat-x;
2240
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#fbb450', endColorstr = '#f89406', GradientType = 0);
2241
- border-color: #f89406 #f89406 #ad6704;
2242
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2243
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2244
- }
2245
-
2246
- .btn-warning:hover,
2247
- .btn-warning:active,
2248
- .btn-warning.active,
2249
- .btn-warning.disabled,
2250
- .btn-warning[disabled] {
2251
- background-color: #f89406;
2252
- }
2253
-
2254
- .btn-warning:active, .btn-warning.active {
2255
- background-color: #c67605 \9;
2256
- }
2257
-
2258
- .btn-danger {
2259
- background-color: #da4f49;
2260
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2261
- background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
2262
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
2263
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2264
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2265
- background-image: linear-gradient(top, #ee5f5b, #bd362f);
2266
- background-repeat: repeat-x;
2267
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ee5f5b', endColorstr = '#bd362f', GradientType = 0);
2268
- border-color: #bd362f #bd362f #802420;
2269
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2270
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2271
- }
2272
-
2273
- .btn-danger:hover,
2274
- .btn-danger:active,
2275
- .btn-danger.active,
2276
- .btn-danger.disabled,
2277
- .btn-danger[disabled] {
2278
- background-color: #bd362f;
2279
- }
2280
-
2281
- .btn-danger:active, .btn-danger.active {
2282
- background-color: #942a25 \9;
2283
- }
2284
-
2285
- .btn-success {
2286
- background-color: #5bb75b;
2287
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
2288
- background-image: -ms-linear-gradient(top, #62c462, #51a351);
2289
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2290
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2291
- background-image: -o-linear-gradient(top, #62c462, #51a351);
2292
- background-image: linear-gradient(top, #62c462, #51a351);
2293
- background-repeat: repeat-x;
2294
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#62c462', endColorstr = '#51a351', GradientType = 0);
2295
- border-color: #51a351 #51a351 #387038;
2296
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2297
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2298
- }
2299
-
2300
- .btn-success:hover,
2301
- .btn-success:active,
2302
- .btn-success.active,
2303
- .btn-success.disabled,
2304
- .btn-success[disabled] {
2305
- background-color: #51a351;
2306
- }
2307
-
2308
- .btn-success:active, .btn-success.active {
2309
- background-color: #408140 \9;
2310
- }
2311
-
2312
- .btn-info {
2313
- background-color: #49afcd;
2314
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2315
- background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2316
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2317
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2318
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2319
- background-image: linear-gradient(top, #5bc0de, #2f96b4);
2320
- background-repeat: repeat-x;
2321
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#5bc0de', endColorstr = '#2f96b4', GradientType = 0);
2322
- border-color: #2f96b4 #2f96b4 #1f6377;
2323
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2324
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2325
- }
2326
-
2327
- .btn-info:hover,
2328
- .btn-info:active,
2329
- .btn-info.active,
2330
- .btn-info.disabled,
2331
- .btn-info[disabled] {
2332
- background-color: #2f96b4;
2333
- }
2334
-
2335
- .btn-info:active, .btn-info.active {
2336
- background-color: #24748c \9;
2337
- }
2338
-
2339
- .btn-inverse {
2340
- background-color: #393939;
2341
- background-image: -moz-linear-gradient(top, #454545, #262626);
2342
- background-image: -ms-linear-gradient(top, #454545, #262626);
2343
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#454545), to(#262626));
2344
- background-image: -webkit-linear-gradient(top, #454545, #262626);
2345
- background-image: -o-linear-gradient(top, #454545, #262626);
2346
- background-image: linear-gradient(top, #454545, #262626);
2347
- background-repeat: repeat-x;
2348
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#454545', endColorstr = '#262626', GradientType = 0);
2349
- border-color: #262626 #262626 #000000;
2350
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2351
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2352
- }
2353
-
2354
- .btn-inverse:hover,
2355
- .btn-inverse:active,
2356
- .btn-inverse.active,
2357
- .btn-inverse.disabled,
2358
- .btn-inverse[disabled] {
2359
- background-color: #262626;
2360
- }
2361
-
2362
- .btn-inverse:active, .btn-inverse.active {
2363
- background-color: #0c0c0c \9;
2364
- }
2365
-
2366
- button.btn, input[type="submit"].btn {
2367
- *padding-top: 2px;
2368
- *padding-bottom: 2px;
2369
- }
2370
-
2371
- button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
2372
- padding: 0;
2373
- border: 0;
2374
- }
2375
-
2376
- button.btn.large, input[type="submit"].btn.large {
2377
- *padding-top: 7px;
2378
- *padding-bottom: 7px;
2379
- }
2380
-
2381
- button.btn.small, input[type="submit"].btn.small {
2382
- *padding-top: 3px;
2383
- *padding-bottom: 3px;
2384
- }
2385
-
2386
- .btn-group {
2387
- width:115px;
2388
- display: inline-block;
2389
- position: relative;
2390
- vertical-align: middle;
2391
- white-space: nowrap;
2392
- *zoom: 1;
2393
- *margin-left: .3em;
2394
- }
2395
-
2396
- .btn-group:before, .btn-group:after {
2397
- display: table;
2398
- content: "";
2399
- }
2400
-
2401
- .btn-group:after {
2402
- clear: both;
2403
- }
2404
-
2405
- .btn-group:first-child {
2406
- *margin-left: 0;
2407
- }
2408
-
2409
- .btn-group + .btn-group {
2410
- margin-left: 5px;
2411
- }
2412
-
2413
- .btn-toolbar {
2414
- margin-top: 9px;
2415
- margin-bottom: 9px;
2416
- }
2417
-
2418
- .btn-toolbar .btn-group {
2419
- display: inline-block;
2420
- *display: inline;
2421
- /* IE7 inline-block hack */
2422
-
2423
- *zoom: 1;
2424
- }
2425
-
2426
- .btn-group .btn {
2427
- position: relative;
2428
- float: left;
2429
- margin-left: -1px;
2430
- -webkit-border-radius: 0;
2431
- -moz-border-radius: 0;
2432
- border-radius: 0;
2433
- }
2434
-
2435
- .btn-group .btn:first-child {
2436
- margin-left: 0;
2437
- -webkit-border-top-left-radius: 4px;
2438
- -moz-border-radius-topleft: 4px;
2439
- border-top-left-radius: 4px;
2440
- -webkit-border-bottom-left-radius: 4px;
2441
- -moz-border-radius-bottomleft: 4px;
2442
- border-bottom-left-radius: 4px;
2443
- }
2444
-
2445
- .btn-group .btn:last-child, .btn-group .dropdown-toggle {
2446
- -webkit-border-top-right-radius: 4px;
2447
- -moz-border-radius-topright: 4px;
2448
- border-top-right-radius: 4px;
2449
- -webkit-border-bottom-right-radius: 4px;
2450
- -moz-border-radius-bottomright: 4px;
2451
- border-bottom-right-radius: 4px;
2452
- }
2453
-
2454
- .btn-group .btn.large:first-child {
2455
- margin-left: 0;
2456
- -webkit-border-top-left-radius: 6px;
2457
- -moz-border-radius-topleft: 6px;
2458
- border-top-left-radius: 6px;
2459
- -webkit-border-bottom-left-radius: 6px;
2460
- -moz-border-radius-bottomleft: 6px;
2461
- border-bottom-left-radius: 6px;
2462
- }
2463
-
2464
- .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2465
- -webkit-border-top-right-radius: 6px;
2466
- -moz-border-radius-topright: 6px;
2467
- border-top-right-radius: 6px;
2468
- -webkit-border-bottom-right-radius: 6px;
2469
- -moz-border-radius-bottomright: 6px;
2470
- border-bottom-right-radius: 6px;
2471
- }
2472
-
2473
- .btn-group .btn:hover,
2474
- .btn-group .btn:focus,
2475
- .btn-group .btn:active,
2476
- .btn-group .btn.active {
2477
- z-index: 2;
2478
- }
2479
-
2480
- .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2481
- outline: 0;
2482
- }
2483
-
2484
- .btn-group .dropdown-toggle {
2485
- padding-left: 8px;
2486
- padding-right: 8px;
2487
- -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2488
- -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2489
- box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2490
- *padding-top: 5px;
2491
- *padding-bottom: 5px;
2492
- }
2493
-
2494
- .btn-group.open {
2495
- *z-index: 1000;
2496
- }
2497
-
2498
- .btn-group.open .dropdown-menu {
2499
- display: block;
2500
- margin-top: 1px;
2501
- -webkit-border-radius: 5px;
2502
- -moz-border-radius: 5px;
2503
- border-radius: 5px;
2504
- }
2505
-
2506
- .btn-group.open .dropdown-toggle {
2507
- background-image: none;
2508
- -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2509
- -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2510
- box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2511
- }
2512
-
2513
- .btn .caret {
2514
- margin-top: 7px;
2515
- margin-left: 0;
2516
- }
2517
-
2518
- .btn:hover .caret, .open.btn-group .caret {
2519
- opacity: 1;
2520
- filter: alpha(opacity = 100);
2521
- }
2522
-
2523
- .btn-primary .caret,
2524
- .btn-danger .caret,
2525
- .btn-info .caret,
2526
- .btn-success .caret,
2527
- .btn-inverse .caret {
2528
- border-top-color: #ffffff;
2529
- opacity: 0.75;
2530
- filter: alpha(opacity = 75);
2531
- }
2532
-
2533
- .btn-small .caret {
2534
- margin-top: 4px;
2535
- }
2536
-
2537
- .alert {
2538
- padding: 8px 35px 8px 14px;
2539
- margin-bottom: 18px;
2540
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2541
- background-color: #fcf8e3;
2542
- border: 1px solid #fbeed5;
2543
- -webkit-border-radius: 4px;
2544
- -moz-border-radius: 4px;
2545
- border-radius: 4px;
2546
- }
2547
-
2548
- .alert, .alert-heading {
2549
- color: #c09853;
2550
- }
2551
-
2552
- .alert .close {
2553
- position: relative;
2554
- top: -2px;
2555
- right: -21px;
2556
- line-height: 18px;
2557
- }
2558
-
2559
- .alert-success {
2560
- background-color: #dff0d8;
2561
- border-color: #d6e9c6;
2562
- }
2563
-
2564
- .alert-success, .alert-success .alert-heading {
2565
- color: #468847;
2566
- }
2567
-
2568
- .alert-danger, .alert-error {
2569
- background-color: #f2dede;
2570
- border-color: #eed3d7;
2571
- }
2572
-
2573
- .alert-danger,
2574
- .alert-error,
2575
- .alert-danger .alert-heading,
2576
- .alert-error .alert-heading {
2577
- color: #b94a48;
2578
- }
2579
-
2580
- .alert-info {
2581
- background-color: #d9edf7;
2582
- border-color: #bce8f1;
2583
- }
2584
-
2585
- .alert-info, .alert-info .alert-heading {
2586
- color: #3a87ad;
2587
- }
2588
-
2589
- .alert-block {
2590
- padding-top: 14px;
2591
- padding-bottom: 14px;
2592
- }
2593
-
2594
- .alert-block > p, .alert-block > ul {
2595
- margin-bottom: 0;
2596
- }
2597
-
2598
- .alert-block p + p {
2599
- margin-top: 5px;
2600
- }
2601
-
2602
- .nav {
2603
- margin-left: 0;
2604
- margin-bottom: 18px;
2605
- list-style: none;
2606
- }
2607
-
2608
- .nav > li > a {
2609
- display: block;
2610
- }
2611
-
2612
- .nav > li > a:hover {
2613
- text-decoration: none;
2614
- background-color: #eeeeee;
2615
- }
2616
-
2617
- .nav .nav-header {
2618
- display: block;
2619
- padding: 3px 15px;
2620
- font-size: 11px;
2621
- font-weight: bold;
2622
- line-height: 18px;
2623
- color: #999999;
2624
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2625
- text-transform: uppercase;
2626
- }
2627
-
2628
- .nav li + .nav-header {
2629
- margin-top: 9px;
2630
- }
2631
-
2632
- .nav-list {
2633
- padding-left: 14px;
2634
- padding-right: 14px;
2635
- margin-bottom: 0;
2636
- }
2637
-
2638
- .nav-list > li > a, .nav-list .nav-header {
2639
- margin-left: -15px;
2640
- margin-right: -15px;
2641
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2642
- }
2643
-
2644
- .nav-list > li > a {
2645
- padding: 3px 15px;
2646
- }
2647
-
2648
- .nav-list .active > a, .nav-list .active > a:hover {
2649
- color: #ffffff;
2650
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2651
- background-color: #0088cc;
2652
- }
2653
-
2654
- .nav-list [class^="icon-"] {
2655
- margin-right: 2px;
2656
- }
2657
-
2658
- .nav-tabs, .nav-pills {
2659
- *zoom: 1;
2660
- }
2661
-
2662
- .nav-tabs:before,
2663
- .nav-pills:before,
2664
- .nav-tabs:after,
2665
- .nav-pills:after {
2666
- display: table;
2667
- content: "";
2668
- }
2669
-
2670
- .nav-tabs:after, .nav-pills:after {
2671
- clear: both;
2672
- }
2673
-
2674
- .nav-tabs > li, .nav-pills > li {
2675
- float: left;
2676
- }
2677
-
2678
- .nav-tabs > li > a, .nav-pills > li > a {
2679
- padding-right: 12px;
2680
- padding-left: 12px;
2681
- margin-right: 2px;
2682
- line-height: 14px;
2683
- }
2684
-
2685
- .nav-tabs {
2686
- border-bottom: 1px solid #ddd;
2687
- }
2688
-
2689
- .nav-tabs > li {
2690
- margin-bottom: -1px;
2691
- }
2692
-
2693
- .nav-tabs > li > a {
2694
- padding-top: 9px;
2695
- padding-bottom: 9px;
2696
- border: 1px solid transparent;
2697
- -webkit-border-radius: 4px 4px 0 0;
2698
- -moz-border-radius: 4px 4px 0 0;
2699
- border-radius: 4px 4px 0 0;
2700
- }
2701
-
2702
- .nav-tabs > li > a:hover {
2703
- border-color: #eeeeee #eeeeee #dddddd;
2704
- }
2705
-
2706
- .nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2707
- color: #555555;
2708
- background-color: #ffffff;
2709
- border: 1px solid #ddd;
2710
- border-bottom-color: transparent;
2711
- cursor: default;
2712
- }
2713
-
2714
- .nav-pills > li > a {
2715
- padding-top: 8px;
2716
- padding-bottom: 8px;
2717
- margin-top: 2px;
2718
- margin-bottom: 2px;
2719
- -webkit-border-radius: 5px;
2720
- -moz-border-radius: 5px;
2721
- border-radius: 5px;
2722
- }
2723
-
2724
- .nav-pills .active > a, .nav-pills .active > a:hover {
2725
- color: #ffffff;
2726
- background-color: #0088cc;
2727
- }
2728
-
2729
- .nav-stacked > li {
2730
- float: none;
2731
- }
2732
-
2733
- .nav-stacked > li > a {
2734
- margin-right: 0;
2735
- }
2736
-
2737
- .nav-tabs.nav-stacked {
2738
- border-bottom: 0;
2739
- }
2740
-
2741
- .nav-tabs.nav-stacked > li > a {
2742
- border: 1px solid #ddd;
2743
- -webkit-border-radius: 0;
2744
- -moz-border-radius: 0;
2745
- border-radius: 0;
2746
- }
2747
-
2748
- .nav-tabs.nav-stacked > li:first-child > a {
2749
- -webkit-border-radius: 4px 4px 0 0;
2750
- -moz-border-radius: 4px 4px 0 0;
2751
- border-radius: 4px 4px 0 0;
2752
- }
2753
-
2754
- .nav-tabs.nav-stacked > li:last-child > a {
2755
- -webkit-border-radius: 0 0 4px 4px;
2756
- -moz-border-radius: 0 0 4px 4px;
2757
- border-radius: 0 0 4px 4px;
2758
- }
2759
-
2760
- .nav-tabs.nav-stacked > li > a:hover {
2761
- border-color: #ddd;
2762
- z-index: 2;
2763
- }
2764
-
2765
- .nav-pills.nav-stacked > li > a {
2766
- margin-bottom: 3px;
2767
- }
2768
-
2769
- .nav-pills.nav-stacked > li:last-child > a {
2770
- margin-bottom: 1px;
2771
- }
2772
-
2773
- .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2774
- margin-top: 1px;
2775
- border-width: 1px;
2776
- }
2777
-
2778
- .nav-pills .dropdown-menu {
2779
- -webkit-border-radius: 4px;
2780
- -moz-border-radius: 4px;
2781
- border-radius: 4px;
2782
- }
2783
-
2784
- .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2785
- border-top-color: #0088cc;
2786
- margin-top: 6px;
2787
- }
2788
-
2789
- .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2790
- border-top-color: #005580;
2791
- }
2792
-
2793
- .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2794
- border-top-color: #333333;
2795
- }
2796
-
2797
- .nav > .dropdown.active > a:hover {
2798
- color: #000000;
2799
- cursor: pointer;
2800
- }
2801
-
2802
- .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2803
- color: #ffffff;
2804
- background-color: #999999;
2805
- border-color: #999999;
2806
- }
2807
-
2808
- .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2809
- border-top-color: #ffffff;
2810
- opacity: 1;
2811
- filter: alpha(opacity = 100);
2812
- }
2813
-
2814
- .tabs-stacked .open > a:hover {
2815
- border-color: #999999;
2816
- }
2817
-
2818
- .tabbable {
2819
- *zoom: 1;
2820
- }
2821
-
2822
- .tabbable:before, .tabbable:after {
2823
- display: table;
2824
- content: "";
2825
- }
2826
-
2827
- .tabbable:after {
2828
- clear: both;
2829
- }
2830
-
2831
- .tab-content {
2832
-
2833
- }
2834
-
2835
- .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
2836
- border-bottom: 0;
2837
- }
2838
-
2839
- .tab-content > .tab-pane, .pill-content > .pill-pane {
2840
- display: none;
2841
- }
2842
-
2843
- .tab-content > .active, .pill-content > .active {
2844
- display: block;
2845
- }
2846
-
2847
- .tabs-below .nav-tabs {
2848
- border-top: 1px solid #ddd;
2849
- }
2850
-
2851
- .tabs-below .nav-tabs > li {
2852
- margin-top: -1px;
2853
- margin-bottom: 0;
2854
- }
2855
-
2856
- .tabs-below .nav-tabs > li > a {
2857
- -webkit-border-radius: 0 0 4px 4px;
2858
- -moz-border-radius: 0 0 4px 4px;
2859
- border-radius: 0 0 4px 4px;
2860
- }
2861
-
2862
- .tabs-below .nav-tabs > li > a:hover {
2863
- border-bottom-color: transparent;
2864
- border-top-color: #ddd;
2865
- }
2866
-
2867
- .tabs-below .nav-tabs .active > a, .tabs-below .nav-tabs .active > a:hover {
2868
- border-color: transparent #ddd #ddd #ddd;
2869
- }
2870
-
2871
- .tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li {
2872
- float: none;
2873
- }
2874
-
2875
- .tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a {
2876
- min-width: 74px;
2877
- margin-right: 0;
2878
- margin-bottom: 3px;
2879
- }
2880
-
2881
- .tabs-left .nav-tabs {
2882
- float: left;
2883
- margin-right: 19px;
2884
- border-right: 1px solid #ddd;
2885
- }
2886
-
2887
- .tabs-left .nav-tabs > li > a {
2888
- margin-right: -1px;
2889
- -webkit-border-radius: 4px 0 0 4px;
2890
- -moz-border-radius: 4px 0 0 4px;
2891
- border-radius: 4px 0 0 4px;
2892
- }
2893
-
2894
- .tabs-left .nav-tabs > li > a:hover {
2895
- border-color: #eeeeee #dddddd #eeeeee #eeeeee;
2896
- }
2897
-
2898
- .tabs-left .nav-tabs .active > a, .tabs-left .nav-tabs .active > a:hover {
2899
- border-color: #ddd transparent #ddd #ddd;
2900
- *border-right-color: #ffffff;
2901
- }
2902
-
2903
- .tabs-right .nav-tabs {
2904
- float: right;
2905
- margin-left: 19px;
2906
- border-left: 1px solid #ddd;
2907
- }
2908
-
2909
- .tabs-right .nav-tabs > li > a {
2910
- margin-left: -1px;
2911
- -webkit-border-radius: 0 4px 4px 0;
2912
- -moz-border-radius: 0 4px 4px 0;
2913
- border-radius: 0 4px 4px 0;
2914
- }
2915
-
2916
- .tabs-right .nav-tabs > li > a:hover {
2917
- border-color: #eeeeee #eeeeee #eeeeee #dddddd;
2918
- }
2919
-
2920
- .tabs-right .nav-tabs .active > a, .tabs-right .nav-tabs .active > a:hover {
2921
- border-color: #ddd #ddd #ddd transparent;
2922
- *border-left-color: #ffffff;
2923
- }
2924
-
2925
- .navbar {
2926
- overflow: visible;
2927
- margin-bottom: 18px;
2928
- }
2929
-
2930
- .navbar-inner {
2931
- padding-left: 20px;
2932
- padding-right: 20px;
2933
- background-color: #2c2c2c;
2934
- background-image: -moz-linear-gradient(top, #333333, #222222);
2935
- background-image: -ms-linear-gradient(top, #333333, #222222);
2936
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2937
- background-image: -webkit-linear-gradient(top, #333333, #222222);
2938
- background-image: -o-linear-gradient(top, #333333, #222222);
2939
- background-image: linear-gradient(top, #333333, #222222);
2940
- background-repeat: repeat-x;
2941
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#333333', endColorstr = '#222222', GradientType = 0);
2942
- -webkit-border-radius: 4px;
2943
- -moz-border-radius: 4px;
2944
- border-radius: 4px;
2945
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2946
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2947
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2948
- }
2949
-
2950
- .btn-navbar {
2951
- display: none;
2952
- float: right;
2953
- padding: 7px 10px;
2954
- margin-left: 5px;
2955
- margin-right: 5px;
2956
- background-color: #2c2c2c;
2957
- background-image: -moz-linear-gradient(top, #333333, #222222);
2958
- background-image: -ms-linear-gradient(top, #333333, #222222);
2959
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2960
- background-image: -webkit-linear-gradient(top, #333333, #222222);
2961
- background-image: -o-linear-gradient(top, #333333, #222222);
2962
- background-image: linear-gradient(top, #333333, #222222);
2963
- background-repeat: repeat-x;
2964
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#333333', endColorstr = '#222222', GradientType = 0);
2965
- border-color: #222222 #222222 #000000;
2966
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2967
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2968
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2969
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2970
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2971
- }
2972
-
2973
- .btn-navbar:hover,
2974
- .btn-navbar:active,
2975
- .btn-navbar.active,
2976
- .btn-navbar.disabled,
2977
- .btn-navbar[disabled] {
2978
- background-color: #222222;
2979
- }
2980
-
2981
- .btn-navbar:active, .btn-navbar.active {
2982
- background-color: #080808 \9;
2983
- }
2984
-
2985
- .btn-navbar .icon-bar {
2986
- display: block;
2987
- width: 18px;
2988
- height: 2px;
2989
- background-color: #f5f5f5;
2990
- -webkit-border-radius: 1px;
2991
- -moz-border-radius: 1px;
2992
- border-radius: 1px;
2993
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2994
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2995
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2996
- }
2997
-
2998
- .btn-navbar .icon-bar + .icon-bar {
2999
- margin-top: 3px;
3000
- }
3001
-
3002
- .nav-collapse.collapse {
3003
- height: auto;
3004
- }
3005
-
3006
- .navbar .brand:hover {
3007
- text-decoration: none;
3008
- }
3009
-
3010
- .navbar .brand {
3011
- float: left;
3012
- display: block;
3013
- padding: 8px 20px 12px;
3014
- margin-left: -20px;
3015
- font-size: 20px;
3016
- font-weight: 200;
3017
- line-height: 1;
3018
- color: #ffffff;
3019
- }
3020
-
3021
- .navbar .navbar-text {
3022
- margin-bottom: 0;
3023
- line-height: 40px;
3024
- color: #999999;
3025
- }
3026
-
3027
- .navbar .navbar-text a:hover {
3028
- color: #ffffff;
3029
- background-color: transparent;
3030
- }
3031
-
3032
- .navbar .btn, .navbar .btn-group {
3033
- margin-top: 5px;
3034
- }
3035
-
3036
- .navbar .btn-group .btn {
3037
- margin-top: 0;
3038
- }
3039
-
3040
- .navbar-form {
3041
- margin-bottom: 0;
3042
- *zoom: 1;
3043
- }
3044
-
3045
- .navbar-form:before, .navbar-form:after {
3046
- display: table;
3047
- content: "";
3048
- }
3049
-
3050
- .navbar-form:after {
3051
- clear: both;
3052
- }
3053
-
3054
- .navbar-form input, .navbar-form select {
3055
- display: inline-block;
3056
- margin-top: 5px;
3057
- margin-bottom: 0;
3058
- }
3059
-
3060
- .navbar-form .radio, .navbar-form .checkbox {
3061
- margin-top: 5px;
3062
- }
3063
-
3064
- .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
3065
- margin-top: 3px;
3066
- }
3067
-
3068
- .navbar-form .input-append, .navbar-form .input-prepend {
3069
- margin-top: 6px;
3070
- white-space: nowrap;
3071
- }
3072
-
3073
- .navbar-form .input-append input, .navbar-form .input-prepend input {
3074
- margin-top: 0;
3075
- }
3076
-
3077
- .navbar-search {
3078
- position: relative;
3079
- float: left;
3080
- margin-top: 6px;
3081
- margin-bottom: 0;
3082
- }
3083
-
3084
- .navbar-search .search-query {
3085
- padding: 4px 9px;
3086
- font-size: 13px;
3087
- font-weight: normal;
3088
- line-height: 1;
3089
- color: #ffffff;
3090
- color: rgba(255, 255, 255, 0.75);
3091
- background: #666;
3092
- background: rgba(255, 255, 255, 0.3);
3093
- border: 1px solid #111;
3094
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3095
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3096
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3097
- -webkit-transition: none;
3098
- -moz-transition: none;
3099
- -ms-transition: none;
3100
- -o-transition: none;
3101
- transition: none;
3102
- }
3103
-
3104
- .navbar-search .search-query :-moz-placeholder {
3105
- color: #eeeeee;
3106
- }
3107
-
3108
- .navbar-search .search-query::-webkit-input-placeholder {
3109
- color: #eeeeee;
3110
- }
3111
-
3112
- .navbar-search .search-query:hover {
3113
- color: #ffffff;
3114
- background-color: #999999;
3115
- background-color: rgba(255, 255, 255, 0.5);
3116
- }
3117
-
3118
- .navbar-search .search-query:focus, .navbar-search .search-query.focused {
3119
- padding: 5px 10px;
3120
- color: #333333;
3121
- text-shadow: 0 1px 0 #ffffff;
3122
- background-color: #ffffff;
3123
- border: 0;
3124
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3125
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3126
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3127
- outline: 0;
3128
- }
3129
-
3130
- .navbar-fixed-top {
3131
- position: fixed;
3132
- top: 0;
3133
- right: 0;
3134
- left: 0;
3135
- z-index: 1030;
3136
- }
3137
-
3138
- .navbar-fixed-top .navbar-inner {
3139
- padding-left: 0;
3140
- padding-right: 0;
3141
- -webkit-border-radius: 0;
3142
- -moz-border-radius: 0;
3143
- border-radius: 0;
3144
- }
3145
-
3146
- .navbar .nav {
3147
- position: relative;
3148
- left: 0;
3149
- display: block;
3150
- float: left;
3151
- margin: 0 10px 0 0;
3152
- }
3153
-
3154
- .navbar .nav.pull-right {
3155
- float: right;
3156
- }
3157
-
3158
- .navbar .nav > li {
3159
- display: block;
3160
- float: left;
3161
- }
3162
-
3163
- .navbar .nav > li > a {
3164
- float: none;
3165
- padding: 10px 10px 11px;
3166
- line-height: 19px;
3167
- color: #999999;
3168
- text-decoration: none;
3169
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3170
- }
3171
-
3172
- .navbar .nav > li > a:hover {
3173
- background-color: transparent;
3174
- color: #ffffff;
3175
- text-decoration: none;
3176
- }
3177
-
3178
- .navbar .nav .active > a, .navbar .nav .active > a:hover {
3179
- color: #ffffff;
3180
- text-decoration: none;
3181
- background-color: #222222;
3182
- }
3183
-
3184
- .navbar .divider-vertical {
3185
- height: 40px;
3186
- width: 1px;
3187
- margin: 0 9px;
3188
- overflow: hidden;
3189
- background-color: #222222;
3190
- border-right: 1px solid #333333;
3191
- }
3192
-
3193
- .navbar .nav.pull-right {
3194
- margin-left: 10px;
3195
- margin-right: 0;
3196
- }
3197
-
3198
- .navbar .dropdown-menu {
3199
- margin-top: 1px;
3200
- -webkit-border-radius: 4px;
3201
- -moz-border-radius: 4px;
3202
- border-radius: 4px;
3203
- }
3204
-
3205
- .navbar .dropdown-menu:before {
3206
- content: '';
3207
- display: inline-block;
3208
- border-left: 7px solid transparent;
3209
- border-right: 7px solid transparent;
3210
- border-bottom: 7px solid #ccc;
3211
- border-bottom-color: rgba(0, 0, 0, 0.2);
3212
- position: absolute;
3213
- top: -7px;
3214
- left: 9px;
3215
- }
3216
-
3217
- .navbar .dropdown-menu:after {
3218
- content: '';
3219
- display: inline-block;
3220
- border-left: 6px solid transparent;
3221
- border-right: 6px solid transparent;
3222
- border-bottom: 6px solid #ffffff;
3223
- position: absolute;
3224
- top: -6px;
3225
- left: 10px;
3226
- }
3227
-
3228
- .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
3229
- border-top-color: #ffffff;
3230
- }
3231
-
3232
- .navbar .nav .active .caret {
3233
- opacity: 1;
3234
- filter: alpha(opacity = 100);
3235
- }
3236
-
3237
- .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
3238
- background-color: transparent;
3239
- }
3240
-
3241
- .navbar .nav .active > .dropdown-toggle:hover {
3242
- color: #ffffff;
3243
- }
3244
-
3245
- .navbar .nav.pull-right .dropdown-menu {
3246
- left: auto;
3247
- right: 0;
3248
- }
3249
-
3250
- .navbar .nav.pull-right .dropdown-menu:before {
3251
- left: auto;
3252
- right: 12px;
3253
- }
3254
-
3255
- .navbar .nav.pull-right .dropdown-menu:after {
3256
- left: auto;
3257
- right: 13px;
3258
- }
3259
-
3260
- .breadcrumb {
3261
- padding: 7px 14px;
3262
- margin: 0 0 18px;
3263
- background-color: #fbfbfb;
3264
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
3265
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
3266
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
3267
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
3268
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
3269
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
3270
- background-repeat: repeat-x;
3271
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#f5f5f5', GradientType = 0);
3272
- border: 1px solid #ddd;
3273
- -webkit-border-radius: 3px;
3274
- -moz-border-radius: 3px;
3275
- border-radius: 3px;
3276
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
3277
- -moz-box-shadow: inset 0 1px 0 #ffffff;
3278
- box-shadow: inset 0 1px 0 #ffffff;
3279
- }
3280
-
3281
- .breadcrumb li {
3282
- display: inline-block;
3283
- text-shadow: 0 1px 0 #ffffff;
3284
- }
3285
-
3286
- .breadcrumb .divider {
3287
- padding: 0 5px;
3288
- color: #999999;
3289
- }
3290
-
3291
- .breadcrumb .active a {
3292
- color: #333333;
3293
- }
3294
-
3295
- .pagination {
3296
- /* height: 36px;
3297
- margin: 18px 0;*/
3298
- }
3299
-
3300
- .pagination ul {
3301
- display: inline-block;
3302
- *display: inline;
3303
- /* IE7 inline-block hack */
3304
-
3305
- *zoom: 1;
3306
- margin-left: 0;
3307
- margin-bottom: 0;
3308
- -webkit-border-radius: 3px;
3309
- -moz-border-radius: 3px;
3310
- border-radius: 3px;
3311
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3312
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3313
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3314
- }
3315
-
3316
- .pagination li {
3317
- display: inline;
3318
- }
3319
-
3320
- .pagination a {
3321
- /*float: left;*/
3322
- padding: 0 14px;
3323
- line-height: 34px;
3324
- text-decoration: none;
3325
- border: 1px solid #ddd;
3326
- border-left-width: 0;
3327
-
3328
- padding: 0 2px;
3329
- line-height: 20px;
3330
- }
3331
-
3332
- .pagination a:hover, .pagination .active a {
3333
- background-color: #f5f5f5;
3334
- }
3335
-
3336
- .pagination .active a {
3337
- color: #999999;
3338
- cursor: default;
3339
- }
3340
-
3341
- .pagination .disabled a, .pagination .disabled a:hover {
3342
- color: #999999;
3343
- background-color: transparent;
3344
- cursor: default;
3345
- }
3346
-
3347
- .pagination li:first-child a {
3348
- border-left-width: 1px;
3349
- -webkit-border-radius: 3px 0 0 3px;
3350
- -moz-border-radius: 3px 0 0 3px;
3351
- border-radius: 3px 0 0 3px;
3352
- }
3353
-
3354
- .pagination li:last-child a {
3355
- -webkit-border-radius: 0 3px 3px 0;
3356
- -moz-border-radius: 0 3px 3px 0;
3357
- border-radius: 0 3px 3px 0;
3358
- }
3359
-
3360
- .pagination-centered {
3361
- text-align: center;
3362
- }
3363
-
3364
- .pagination-right {
3365
- text-align: right;
3366
- }
3367
-
3368
- .pager {
3369
- margin-left: 0;
3370
- margin-bottom: 18px;
3371
- list-style: none;
3372
- text-align: center;
3373
- *zoom: 1;
3374
- }
3375
-
3376
- .pager:before, .pager:after {
3377
- display: table;
3378
- content: "";
3379
- }
3380
-
3381
- .pager:after {
3382
- clear: both;
3383
- }
3384
-
3385
- .pager li {
3386
- display: inline;
3387
- }
3388
-
3389
- .pager a {
3390
- display: inline-block;
3391
- padding: 5px 14px;
3392
- background-color: #fff;
3393
- border: 1px solid #ddd;
3394
- -webkit-border-radius: 15px;
3395
- -moz-border-radius: 15px;
3396
- border-radius: 15px;
3397
- }
3398
-
3399
- .pager a:hover {
3400
- text-decoration: none;
3401
- background-color: #f5f5f5;
3402
- }
3403
-
3404
- .pager .next a {
3405
- float: right;
3406
- }
3407
-
3408
- .pager .previous a {
3409
- float: left;
3410
- }
3411
-
3412
- .modal-open .dropdown-menu {
3413
- z-index: 2050;
3414
- }
3415
-
3416
- .modal-open .dropdown.open {
3417
- *z-index: 2050;
3418
- }
3419
-
3420
- .modal-open .popover {
3421
- z-index: 2060;
3422
- }
3423
-
3424
- .modal-open .tooltip {
3425
- z-index: 2070;
3426
- }
3427
-
3428
- .modal-backdrop {
3429
- position: fixed;
3430
- top: 0;
3431
- right: 0;
3432
- bottom: 0;
3433
- left: 0;
3434
- z-index: 1040;
3435
- background-color: #000000;
3436
- }
3437
-
3438
- .modal-backdrop.fade {
3439
- opacity: 0;
3440
- }
3441
-
3442
- .modal-backdrop, .modal-backdrop.fade.in {
3443
- opacity: 0.8;
3444
- filter: alpha(opacity = 80);
3445
- }
3446
-
3447
- .modal {
3448
- position: fixed;
3449
- top: 50%;
3450
- left: 50%;
3451
- z-index: 1050;
3452
- max-height: 500px;
3453
- overflow: auto;
3454
- width: 560px;
3455
- margin: -250px 0 0 -280px;
3456
- background-color: #ffffff;
3457
- border: 1px solid #999;
3458
- border: 1px solid rgba(0, 0, 0, 0.3);
3459
- *border: 1px solid #999;
3460
- /* IE6-7 */
3461
-
3462
- -webkit-border-radius: 6px;
3463
- -moz-border-radius: 6px;
3464
- border-radius: 6px;
3465
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3466
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3467
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3468
- -webkit-background-clip: padding-box;
3469
- -moz-background-clip: padding-box;
3470
- background-clip: padding-box;
3471
- }
3472
-
3473
- .modal.large {
3474
- width: 940px;
3475
- margin-left: -470px;
3476
- max-height: 600px;
3477
- margin-top: -300px;
3478
- background-color: #dedede;
3479
- }
3480
-
3481
- .modal.fade {
3482
- -webkit-transition: opacity .3s linear, top .3s ease-out;
3483
- -moz-transition: opacity .3s linear, top .3s ease-out;
3484
- -ms-transition: opacity .3s linear, top .3s ease-out;
3485
- -o-transition: opacity .3s linear, top .3s ease-out;
3486
- transition: opacity .3s linear, top .3s ease-out;
3487
- top: -25%;
3488
- }
3489
-
3490
- .modal.fade.in {
3491
- top: 50%;
3492
- }
3493
-
3494
- .modal-header {
3495
- padding: 9px 15px;
3496
- border-bottom: 1px solid #eee;
3497
- }
3498
-
3499
- .modal-header .close {
3500
- margin-top: 2px;
3501
- }
3502
-
3503
- .modal-body {
3504
- padding: 15px;
3505
- }
3506
-
3507
- .modal-body .modal-form {
3508
- margin-bottom: 0;
3509
- }
3510
-
3511
- .modal-footer {
3512
- padding: 14px 15px 15px;
3513
- margin-bottom: 0;
3514
- background-color: #f5f5f5;
3515
- border-top: 1px solid #ddd;
3516
- -webkit-border-radius: 0 0 6px 6px;
3517
- -moz-border-radius: 0 0 6px 6px;
3518
- border-radius: 0 0 6px 6px;
3519
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
3520
- -moz-box-shadow: inset 0 1px 0 #ffffff;
3521
- box-shadow: inset 0 1px 0 #ffffff;
3522
- *zoom: 1;
3523
- }
3524
-
3525
- .modal-footer:before, .modal-footer:after {
3526
- display: table;
3527
- content: "";
3528
- }
3529
-
3530
- .modal-footer:after {
3531
- clear: both;
3532
- }
3533
-
3534
- .modal-footer .btn {
3535
- float: right;
3536
- margin-left: 5px;
3537
- margin-bottom: 0;
3538
- }
3539
-
3540
- .tooltip {
3541
- position: absolute;
3542
- z-index: 1020;
3543
- display: block;
3544
- visibility: visible;
3545
- padding: 5px;
3546
- font-size: 11px;
3547
- opacity: 0;
3548
- filter: alpha(opacity = 0);
3549
- }
3550
-
3551
- .tooltip.in {
3552
- opacity: 0.8;
3553
- filter: alpha(opacity = 80);
3554
- }
3555
-
3556
- .tooltip.top {
3557
- margin-top: -2px;
3558
- }
3559
-
3560
- .tooltip.right {
3561
- margin-left: 2px;
3562
- }
3563
-
3564
- .tooltip.bottom {
3565
- margin-top: 2px;
3566
- }
3567
-
3568
- .tooltip.left {
3569
- margin-left: -2px;
3570
- }
3571
-
3572
- .tooltip.top .tooltip-arrow {
3573
- bottom: 0;
3574
- left: 50%;
3575
- margin-left: -5px;
3576
- border-left: 5px solid transparent;
3577
- border-right: 5px solid transparent;
3578
- border-top: 5px solid #000000;
3579
- }
3580
-
3581
- .tooltip.left .tooltip-arrow {
3582
- top: 50%;
3583
- right: 0;
3584
- margin-top: -5px;
3585
- border-top: 5px solid transparent;
3586
- border-bottom: 5px solid transparent;
3587
- border-left: 5px solid #000000;
3588
- }
3589
-
3590
- .tooltip.bottom .tooltip-arrow {
3591
- top: 0;
3592
- left: 50%;
3593
- margin-left: -5px;
3594
- border-left: 5px solid transparent;
3595
- border-right: 5px solid transparent;
3596
- border-bottom: 5px solid #000000;
3597
- }
3598
-
3599
- .tooltip.right .tooltip-arrow {
3600
- top: 50%;
3601
- left: 0;
3602
- margin-top: -5px;
3603
- border-top: 5px solid transparent;
3604
- border-bottom: 5px solid transparent;
3605
- border-right: 5px solid #000000;
3606
- }
3607
-
3608
- .tooltip-inner {
3609
- max-width: 200px;
3610
- padding: 3px 8px;
3611
- color: #ffffff;
3612
- text-align: center;
3613
- text-decoration: none;
3614
- background-color: #000000;
3615
- -webkit-border-radius: 4px;
3616
- -moz-border-radius: 4px;
3617
- border-radius: 4px;
3618
- }
3619
-
3620
- .tooltip-arrow {
3621
- position: absolute;
3622
- width: 0;
3623
- height: 0;
3624
- }
3625
-
3626
- .popover {
3627
- position: absolute;
3628
- top: 0;
3629
- left: 0;
3630
- z-index: 1010;
3631
- display: none;
3632
- padding: 5px;
3633
- }
3634
-
3635
- .popover.top {
3636
- margin-top: -5px;
3637
- }
3638
-
3639
- .popover.right {
3640
- margin-left: 5px;
3641
- }
3642
-
3643
- .popover.bottom {
3644
- margin-top: 5px;
3645
- }
3646
-
3647
- .popover.left {
3648
- margin-left: -5px;
3649
- }
3650
-
3651
- .popover.top .arrow {
3652
- bottom: 0;
3653
- left: 50%;
3654
- margin-left: -5px;
3655
- border-left: 5px solid transparent;
3656
- border-right: 5px solid transparent;
3657
- border-top: 5px solid #000000;
3658
- }
3659
-
3660
- .popover.right .arrow {
3661
- top: 50%;
3662
- left: 0;
3663
- margin-top: -5px;
3664
- border-top: 5px solid transparent;
3665
- border-bottom: 5px solid transparent;
3666
- border-right: 5px solid #000000;
3667
- }
3668
-
3669
- .popover.bottom .arrow {
3670
- top: 0;
3671
- left: 50%;
3672
- margin-left: -5px;
3673
- border-left: 5px solid transparent;
3674
- border-right: 5px solid transparent;
3675
- border-bottom: 5px solid #000000;
3676
- }
3677
-
3678
- .popover.left .arrow {
3679
- top: 50%;
3680
- right: 0;
3681
- margin-top: -5px;
3682
- border-top: 5px solid transparent;
3683
- border-bottom: 5px solid transparent;
3684
- border-left: 5px solid #000000;
3685
- }
3686
-
3687
- .popover .arrow {
3688
- position: absolute;
3689
- width: 0;
3690
- height: 0;
3691
- }
3692
-
3693
- .popover-inner {
3694
- padding: 3px;
3695
- width: 280px;
3696
- overflow: hidden;
3697
- background: #000000;
3698
- background: rgba(0, 0, 0, 0.8);
3699
- -webkit-border-radius: 6px;
3700
- -moz-border-radius: 6px;
3701
- border-radius: 6px;
3702
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3703
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3704
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3705
- }
3706
-
3707
- .popover-title {
3708
- padding: 9px 15px;
3709
- line-height: 1;
3710
- background-color: #f5f5f5;
3711
- border-bottom: 1px solid #eee;
3712
- -webkit-border-radius: 3px 3px 0 0;
3713
- -moz-border-radius: 3px 3px 0 0;
3714
- border-radius: 3px 3px 0 0;
3715
- }
3716
-
3717
- .popover-content {
3718
- padding: 14px;
3719
- background-color: #ffffff;
3720
- -webkit-border-radius: 0 0 3px 3px;
3721
- -moz-border-radius: 0 0 3px 3px;
3722
- border-radius: 0 0 3px 3px;
3723
- -webkit-background-clip: padding-box;
3724
- -moz-background-clip: padding-box;
3725
- background-clip: padding-box;
3726
- }
3727
-
3728
- .popover-content p, .popover-content ul, .popover-content ol {
3729
- margin-bottom: 0;
3730
- }
3731
-
3732
- .thumbnails {
3733
- margin-left: -20px;
3734
- list-style: none;
3735
- *zoom: 1;
3736
- }
3737
-
3738
- .thumbnails:before, .thumbnails:after {
3739
- display: table;
3740
- content: "";
3741
- }
3742
-
3743
- .thumbnails:after {
3744
- clear: both;
3745
- }
3746
-
3747
- .thumbnails > li {
3748
- float: left;
3749
- margin: 0 0 18px 20px;
3750
- }
3751
-
3752
- .thumbnail {
3753
- display: block;
3754
- padding: 4px;
3755
- line-height: 1;
3756
- border: 1px solid #ddd;
3757
- -webkit-border-radius: 4px;
3758
- -moz-border-radius: 4px;
3759
- border-radius: 4px;
3760
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3761
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3762
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3763
- }
3764
-
3765
- a.thumbnail:hover {
3766
- border-color: #0088cc;
3767
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3768
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3769
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3770
- }
3771
-
3772
- .thumbnail > img {
3773
- display: block;
3774
- max-width: 100%;
3775
- margin-left: auto;
3776
- margin-right: auto;
3777
- }
3778
-
3779
- .thumbnail .caption {
3780
- padding: 9px;
3781
- }
3782
-
3783
- .label {
3784
- padding: 2px 4px 3px;
3785
- font-size: 11.049999999999999px;
3786
- font-weight: bold;
3787
- color: #ffffff;
3788
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3789
- background-color: #999999;
3790
- -webkit-border-radius: 3px;
3791
- -moz-border-radius: 3px;
3792
- border-radius: 3px;
3793
- }
3794
-
3795
- .label:hover {
3796
- color: #ffffff;
3797
- text-decoration: none;
3798
- }
3799
-
3800
- .label-important {
3801
- background-color: #b94a48;
3802
- }
3803
-
3804
- .label-important:hover {
3805
- background-color: #953b39;
3806
- }
3807
-
3808
- .label-warning {
3809
- background-color: #f89406;
3810
- }
3811
-
3812
- .label-warning:hover {
3813
- background-color: #c67605;
3814
- }
3815
-
3816
- .label-success {
3817
- background-color: #468847;
3818
- }
3819
-
3820
- .label-success:hover {
3821
- background-color: #356635;
3822
- }
3823
-
3824
- .label-info {
3825
- background-color: #3a87ad;
3826
- }
3827
-
3828
- .label-info:hover {
3829
- background-color: #2d6987;
3830
- }
3831
-
3832
- @-webkit-keyframes progress-bar-stripes {
3833
- from {
3834
- background-position: 0 0;
3835
- }
3836
- to {
3837
- background-position: 40px 0;
3838
- }
3839
- }
3840
- @-moz-keyframes progress-bar-stripes {
3841
- from {
3842
- background-position: 0 0;
3843
- }
3844
- to {
3845
- background-position: 40px 0;
3846
- }
3847
- }
3848
- @keyframes progress-bar-stripes {
3849
- from {
3850
- background-position: 0 0;
3851
- }
3852
- to {
3853
- background-position: 40px 0;
3854
- }
3855
- }
3856
- .progress {
3857
- overflow: hidden;
3858
- height: 18px;
3859
- margin-bottom: 18px;
3860
- background-color: #f7f7f7;
3861
- background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
3862
- background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
3863
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
3864
- background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
3865
- background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
3866
- background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
3867
- background-repeat: repeat-x;
3868
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f5f5f5', endColorstr = '#f9f9f9', GradientType = 0);
3869
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3870
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3871
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3872
- -webkit-border-radius: 4px;
3873
- -moz-border-radius: 4px;
3874
- border-radius: 4px;
3875
- }
3876
-
3877
- .progress .bar {
3878
- width: 0%;
3879
- height: 18px;
3880
- color: #ffffff;
3881
- font-size: 12px;
3882
- text-align: center;
3883
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3884
- background-color: #0e90d2;
3885
- background-image: -moz-linear-gradient(top, #149bdf, #0480be);
3886
- background-image: -ms-linear-gradient(top, #149bdf, #0480be);
3887
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
3888
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
3889
- background-image: -o-linear-gradient(top, #149bdf, #0480be);
3890
- background-image: linear-gradient(top, #149bdf, #0480be);
3891
- background-repeat: repeat-x;
3892
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#149bdf', endColorstr = '#0480be', GradientType = 0);
3893
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3894
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3895
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3896
- -webkit-box-sizing: border-box;
3897
- -moz-box-sizing: border-box;
3898
- box-sizing: border-box;
3899
- -webkit-transition: width 0.6s ease;
3900
- -moz-transition: width 0.6s ease;
3901
- -ms-transition: width 0.6s ease;
3902
- -o-transition: width 0.6s ease;
3903
- transition: width 0.6s ease;
3904
- }
3905
-
3906
- .progress-striped .bar {
3907
- background-color: #62c462;
3908
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3909
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3910
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3911
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3912
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3913
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3914
- -webkit-background-size: 40px 40px;
3915
- -moz-background-size: 40px 40px;
3916
- -o-background-size: 40px 40px;
3917
- background-size: 40px 40px;
3918
- }
3919
-
3920
- .progress.active .bar {
3921
- -webkit-animation: progress-bar-stripes 2s linear infinite;
3922
- -moz-animation: progress-bar-stripes 2s linear infinite;
3923
- animation: progress-bar-stripes 2s linear infinite;
3924
- }
3925
-
3926
- .progress-danger .bar {
3927
- background-color: #dd514c;
3928
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3929
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3930
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
3931
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3932
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3933
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
3934
- background-repeat: repeat-x;
3935
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ee5f5b', endColorstr = '#c43c35', GradientType = 0);
3936
- }
3937
-
3938
- .progress-danger.progress-striped .bar {
3939
- background-color: #ee5f5b;
3940
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3941
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3942
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3943
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3944
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3945
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3946
- }
3947
-
3948
- .progress-success .bar {
3949
- background-color: #5eb95e;
3950
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
3951
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
3952
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
3953
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3954
- background-image: -o-linear-gradient(top, #62c462, #57a957);
3955
- background-image: linear-gradient(top, #62c462, #57a957);
3956
- background-repeat: repeat-x;
3957
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#62c462', endColorstr = '#57a957', GradientType = 0);
3958
- }
3959
-
3960
- .progress-success.progress-striped .bar {
3961
- background-color: #62c462;
3962
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3963
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3964
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3965
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3966
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3967
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3968
- }
3969
-
3970
- .progress-info .bar {
3971
- background-color: #4bb1cf;
3972
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3973
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3974
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
3975
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3976
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3977
- background-image: linear-gradient(top, #5bc0de, #339bb9);
3978
- background-repeat: repeat-x;
3979
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#5bc0de', endColorstr = '#339bb9', GradientType = 0);
3980
- }
3981
-
3982
- .progress-info.progress-striped .bar {
3983
- background-color: #5bc0de;
3984
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3985
- background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3986
- background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3987
- background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3988
- background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3989
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3990
- }
3991
-
3992
- .accordion {
3993
- margin-bottom: 18px;
3994
- }
3995
-
3996
- .accordion-group {
3997
- margin-bottom: 2px;
3998
- border: 1px solid #e5e5e5;
3999
- -webkit-border-radius: 4px;
4000
- -moz-border-radius: 4px;
4001
- border-radius: 4px;
4002
- }
4003
-
4004
- .accordion-heading {
4005
- border-bottom: 0;
4006
- }
4007
-
4008
- .accordion-heading .accordion-toggle {
4009
- display: block;
4010
- padding: 8px 15px;
4011
- }
4012
-
4013
- .accordion-inner {
4014
- padding: 9px 15px;
4015
- border-top: 1px solid #e5e5e5;
4016
- }
4017
-
4018
- .carousel {
4019
- position: relative;
4020
- margin-bottom: 18px;
4021
- line-height: 1;
4022
- }
4023
-
4024
- .carousel-inner {
4025
- overflow: hidden;
4026
- width: 100%;
4027
- position: relative;
4028
- }
4029
-
4030
- .carousel .item {
4031
- display: none;
4032
- position: relative;
4033
- -webkit-transition: 0.6s ease-in-out left;
4034
- -moz-transition: 0.6s ease-in-out left;
4035
- -ms-transition: 0.6s ease-in-out left;
4036
- -o-transition: 0.6s ease-in-out left;
4037
- transition: 0.6s ease-in-out left;
4038
- }
4039
-
4040
- .carousel .item > img {
4041
- display: block;
4042
- line-height: 1;
4043
- }
4044
-
4045
- .carousel .active, .carousel .next, .carousel .prev {
4046
- display: block;
4047
- }
4048
-
4049
- .carousel .active {
4050
- left: 0;
4051
- }
4052
-
4053
- .carousel .next, .carousel .prev {
4054
- position: absolute;
4055
- top: 0;
4056
- width: 100%;
4057
- }
4058
-
4059
- .carousel .next {
4060
- left: 100%;
4061
- }
4062
-
4063
- .carousel .prev {
4064
- left: -100%;
4065
- }
4066
-
4067
- .carousel .next.left, .carousel .prev.right {
4068
- left: 0;
4069
- }
4070
-
4071
- .carousel .active.left {
4072
- left: -100%;
4073
- }
4074
-
4075
- .carousel .active.right {
4076
- left: 100%;
4077
- }
4078
-
4079
- .carousel-control {
4080
- position: absolute;
4081
- top: 40%;
4082
- left: 15px;
4083
- width: 40px;
4084
- height: 40px;
4085
- margin-top: -20px;
4086
- font-size: 60px;
4087
- font-weight: 100;
4088
- line-height: 30px;
4089
- color: #ffffff;
4090
- text-align: center;
4091
- background: #222222;
4092
- border: 3px solid #ffffff;
4093
- -webkit-border-radius: 23px;
4094
- -moz-border-radius: 23px;
4095
- border-radius: 23px;
4096
- opacity: 0.5;
4097
- filter: alpha(opacity = 50);
4098
- }
4099
-
4100
- .carousel-control.right {
4101
- left: auto;
4102
- right: 15px;
4103
- }
4104
-
4105
- .carousel-control:hover {
4106
- color: #ffffff;
4107
- text-decoration: none;
4108
- opacity: 0.9;
4109
- filter: alpha(opacity = 90);
4110
- }
4111
-
4112
- .carousel-caption {
4113
- position: absolute;
4114
- left: 0;
4115
- right: 0;
4116
- bottom: 0;
4117
- padding: 10px 15px 5px;
4118
- background: #333333;
4119
- background: rgba(0, 0, 0, 0.75);
4120
- }
4121
-
4122
- .carousel-caption h4, .carousel-caption p {
4123
- color: #ffffff;
4124
- }
4125
-
4126
- .hero-unit {
4127
- padding: 60px;
4128
- margin-bottom: 30px;
4129
- background-color: #f5f5f5;
4130
- -webkit-border-radius: 6px;
4131
- -moz-border-radius: 6px;
4132
- border-radius: 6px;
4133
-
4134
- padding: 10px;
4135
- margin-bottom: 10px;
4136
- }
4137
-
4138
- .hero-unit h1 {
4139
- margin-bottom: 0;
4140
- /*font-size: 60px;*/
4141
- line-height: 1;
4142
- letter-spacing: -1px;
4143
- }
4144
-
4145
- .hero-unit p {
4146
- font-size: 18px;
4147
- font-weight: 200;
4148
- line-height: 27px;
4149
- }
4150
-
4151
- .pull-right {
4152
- float: right;
4153
- }
4154
-
4155
- .pull-left {
4156
- float: left;
4157
- }
4158
-
4159
- .hide {
4160
- display: none;
4161
- }
4162
-
4163
- .show {
4164
- display: block;
4165
- }
4166
-
4167
- .invisible {
4168
- visibility: hidden;
4169
- }
4170
-
4171
- tfoot {
4172
- display: table-header-group;
4173
- }
4174
-
4175
- tfoot td.small, tfoot th.small {
4176
- width: 120px;
4177
- }
4178
-
4179
- select.small {
4180
- width: 100px;
4181
- }
4182
-
4183
- /* Hierarchy */
4184
-
4185
- .jstree-classic a.jstree-search {
4186
-
4187
- font-weight: bold;
4188
- }
4189
-
4190
- .jstree-classic a.jstree-node-moved {
4191
-
4192
- font-weight: bold;
4193
- }
4194
-
4195
- div.form-section {
4196
- /*background-color:#eee;*/
4197
- /*border:1px dashed red;*/
4198
- /* Do not add paddings, only add paddings per object basis*/
4199
- margin-bottom: 0;
4200
-
4201
- }
4202
-
4203
- div.form-section div.form-content {
4204
- border: 2px solid #d1d1d1;
4205
- border-top: 0;
4206
- padding: 10px;
4207
- background: url(/assets/gray_gradient_horizontal_large_bg.png) repeat-y;
4208
- }
4209
-
4210
- /* Marshall CLASSES have been moved to _custom.css.scss for Themes */
4211
-
4212
- .bold-header, table.table thead th, label {
4213
- font-weight: bold;
4214
- font-size: 12px;
4215
- }
4216
-
4217
- table.table thead th {
4218
- background: url(/assets/light_gray_gradient_bg.png);
4219
- height: 32px;
4220
- white-space: nowrap;
4221
- padding-top: 0;
4222
- padding-bottom: 0;
4223
- line-height: 32px!important;
4224
- }
4225
-
4226
- /* !DO NOT ADD UI CODE IN THIS FILE, USE _custom.css.scss WE NEED TO USE SASS FOR THEMES! NOT CSS, PLEASE USE COMMENTS IN CUSTOM.CSS.SCSS */