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
- .uneditable-textarea {
652
- width: auto;
653
- height: auto;
654
- }
655
-
656
- label input, label textarea, label select {
657
- display: block;
658
- }
659
-
660
- input[type="image"], input[type="checkbox"], input[type="radio"] {
661
- width: auto;
662
- height: auto;
663
- padding: 0;
664
- margin: 3px 0;
665
- *margin-top: 0;
666
- /* IE7 */
667
-
668
- line-height: normal;
669
- cursor: pointer;
670
- -webkit-border-radius: 0;
671
- -moz-border-radius: 0;
672
- border-radius: 0;
673
- border: 0 \9;
674
- /* IE9 and down */
675
-
676
- }
677
-
678
- input[type="image"] {
679
- border: 0;
680
- }
681
-
682
- input[type="file"] {
683
- width: auto;
684
- padding: initial;
685
- line-height: initial;
686
- border: initial;
687
- background-color: #ffffff;
688
- background-color: initial;
689
- -webkit-box-shadow: none;
690
- -moz-box-shadow: none;
691
- box-shadow: none;
692
- }
693
-
694
- input[type="button"], input[type="reset"], input[type="submit"] {
695
- width: auto;
696
- height: auto;
697
- }
698
-
699
- select, input[type="file"] {
700
- height: 28px;
701
- /* In IE7, the height of the select element cannot be changed by height, only font-size */
702
-
703
- *margin-top: 4px;
704
- /* For IE7, add top margin to align select with labels */
705
-
706
- line-height: 28px;
707
- }
708
-
709
- input[type="file"] {
710
- line-height: 18px \9;
711
- }
712
-
713
- select {
714
- width: 220px;
715
- }
716
-
717
- select[multiple], select[size] {
718
- height: auto;
719
- }
720
-
721
- input[type="image"] {
722
- -webkit-box-shadow: none;
723
- -moz-box-shadow: none;
724
- box-shadow: none;
725
- }
726
-
727
- textarea {
728
- /*jvsa height: auto;*/
729
- height: 100px;
730
- }
731
-
732
- input[type="hidden"] {
733
- display: none;
734
- }
735
-
736
- .radio, .checkbox {
737
- padding-left: 18px;
738
- }
739
-
740
- .radio input[type="radio"], .checkbox input[type="checkbox"] {
741
- float: left;
742
- margin-left: -18px;
743
- }
744
-
745
- .controls > .radio:first-child, .controls > .checkbox:first-child {
746
- padding-top: 5px;
747
- }
748
-
749
- .radio.inline, .checkbox.inline {
750
- display: inline-block;
751
- padding-top: 5px;
752
- margin-bottom: 0;
753
- vertical-align: middle;
754
- }
755
-
756
- .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
757
- margin-left: 10px;
758
- }
759
-
760
- input, textarea {
761
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
762
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
763
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
764
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
765
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
766
- -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
767
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
768
- transition: border linear 0.2s, box-shadow linear 0.2s;
769
- }
770
-
771
- input:focus, textarea:focus {
772
- border-color: rgba(82, 168, 236, 0.8);
773
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
774
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
775
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
776
- outline: 0;
777
- outline: thin dotted \9;
778
- /* IE6-9 */
779
-
780
- }
781
-
782
- input[type="file"]:focus,
783
- input[type="radio"]:focus,
784
- input[type="checkbox"]:focus,
785
- select:focus {
786
- -webkit-box-shadow: none;
787
- -moz-box-shadow: none;
788
- box-shadow: none;
789
- outline: thin dotted #333;
790
- outline: 5px auto -webkit-focus-ring-color;
791
- outline-offset: -2px;
792
- }
793
-
794
- .input-mini {
795
- width: 60px;
796
- }
797
-
798
- .input-small {
799
- width: 90px;
800
- }
801
-
802
- .input-medium {
803
- width: 150px;
804
- }
805
-
806
- .input-large {
807
- width: 210px;
808
- }
809
-
810
- .input-xlarge {
811
- width: 270px;
812
- }
813
-
814
- .input-xxlarge {
815
- width: 530px;
816
- }
817
-
818
- input[class*="span"],
819
- select[class*="span"],
820
- textarea[class*="span"],
821
- .uneditable-input {
822
- float: none;
823
- margin-left: 0;
824
- }
825
-
826
- input.span1, textarea.span1, .uneditable-input.span1 {
827
- width: 50px;
828
- }
829
-
830
- input.span2, textarea.span2, .uneditable-input.span2 {
831
- width: 130px;
832
- }
833
-
834
- input.span3, textarea.span3, .uneditable-input.span3 {
835
- width: 210px;
836
- }
837
-
838
- input.span4, textarea.span4, .uneditable-input.span4 {
839
- width: 290px;
840
- }
841
-
842
- input.span5, textarea.span5, .uneditable-input.span5 {
843
- width: 370px;
844
- }
845
-
846
- input.span6, textarea.span6, .uneditable-input.span6 {
847
- width: 450px;
848
- }
849
-
850
- input.span7, textarea.span7, .uneditable-input.span7 {
851
- width: 530px;
852
- }
853
-
854
- input.span8, textarea.span8, .uneditable-input.span8 {
855
- width: 610px;
856
- }
857
-
858
- input.span9, textarea.span9, .uneditable-input.span9 {
859
- width: 690px;
860
- }
861
-
862
- input.span10, textarea.span10, .uneditable-input.span10 {
863
- width: 770px;
864
- }
865
-
866
- input.span11, textarea.span11, .uneditable-input.span11 {
867
- width: 850px;
868
- }
869
-
870
- input.span12, textarea.span12, .uneditable-input.span12 {
871
- width: 930px;
872
- }
873
-
874
- input[disabled],
875
- select[disabled],
876
- textarea[disabled],
877
- input[readonly],
878
- select[readonly],
879
- textarea[readonly] {
880
- background-color: #f5f5f5;
881
- border-color: #ddd;
882
- cursor: not-allowed;
883
- }
884
-
885
- .control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline {
886
- color: #c09853;
887
- }
888
-
889
- .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
890
- color: #c09853;
891
- border-color: #c09853;
892
- }
893
-
894
- .control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
895
- border-color: #a47e3c;
896
- -webkit-box-shadow: 0 0 6px #dbc59e;
897
- -moz-box-shadow: 0 0 6px #dbc59e;
898
- box-shadow: 0 0 6px #dbc59e;
899
- }
900
-
901
- .control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
902
- color: #c09853;
903
- background-color: #fcf8e3;
904
- border-color: #c09853;
905
- }
906
-
907
- .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
908
- color: #b94a48;
909
- }
910
-
911
- .control-group.error input, .control-group.error select, .control-group.error textarea {
912
- color: #b94a48;
913
- border-color: #b94a48;
914
- }
915
-
916
- .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
917
- border-color: #953b39;
918
- -webkit-box-shadow: 0 0 6px #d59392;
919
- -moz-box-shadow: 0 0 6px #d59392;
920
- box-shadow: 0 0 6px #d59392;
921
- }
922
-
923
- .control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
924
- color: #b94a48;
925
- background-color: #f2dede;
926
- border-color: #b94a48;
927
- }
928
-
929
- .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline {
930
- color: #468847;
931
- }
932
-
933
- .control-group.success input, .control-group.success select, .control-group.success textarea {
934
- color: #468847;
935
- border-color: #468847;
936
- }
937
-
938
- .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
939
- border-color: #356635;
940
- -webkit-box-shadow: 0 0 6px #7aba7b;
941
- -moz-box-shadow: 0 0 6px #7aba7b;
942
- box-shadow: 0 0 6px #7aba7b;
943
- }
944
-
945
- .control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
946
- color: #468847;
947
- background-color: #dff0d8;
948
- border-color: #468847;
949
- }
950
-
951
- input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
952
- color: #b94a48;
953
- border-color: #ee5f5b;
954
- }
955
-
956
- input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus {
957
- border-color: #e9322d;
958
- -webkit-box-shadow: 0 0 6px #f8b9b7;
959
- -moz-box-shadow: 0 0 6px #f8b9b7;
960
- box-shadow: 0 0 6px #f8b9b7;
961
- }
962
-
963
- .form-actions {
964
- padding: 17px 20px 18px;
965
- margin-top: 18px;
966
- margin-bottom: 18px;
967
- background-color: #f5f5f5;
968
- border-top: 1px solid #ddd;
969
- }
970
-
971
- .uneditable-input {
972
- display: block;
973
- background-color: #ffffff;
974
- border-color: #eee;
975
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
976
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
977
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
978
- cursor: not-allowed;
979
- }
980
-
981
- :-moz-placeholder {
982
- color: #999999;
983
- }
984
-
985
- ::-webkit-input-placeholder {
986
- color: #999999;
987
- }
988
-
989
- .help-block {
990
- display: block;
991
- margin-top: 5px;
992
- margin-bottom: 0;
993
- color: #999999;
994
- }
995
-
996
- .help-inline {
997
- display: inline-block;
998
- *display: inline;
999
- /* IE7 inline-block hack */
1000
-
1001
- *zoom: 1;
1002
- margin-bottom: 9px;
1003
- vertical-align: middle;
1004
- padding-left: 5px;
1005
- }
1006
-
1007
- .input-prepend, .input-append {
1008
- margin-bottom: 5px;
1009
- *zoom: 1;
1010
- }
1011
-
1012
- .input-prepend:before,
1013
- .input-append:before,
1014
- .input-prepend:after,
1015
- .input-append:after {
1016
- display: table;
1017
- content: "";
1018
- }
1019
-
1020
- .input-prepend:after, .input-append:after {
1021
- clear: both;
1022
- }
1023
-
1024
- .input-prepend input,
1025
- .input-append input,
1026
- .input-prepend .uneditable-input,
1027
- .input-append .uneditable-input {
1028
- -webkit-border-radius: 0 3px 3px 0;
1029
- -moz-border-radius: 0 3px 3px 0;
1030
- border-radius: 0 3px 3px 0;
1031
- }
1032
-
1033
- .input-prepend input:focus,
1034
- .input-append input:focus,
1035
- .input-prepend .uneditable-input:focus,
1036
- .input-append .uneditable-input:focus {
1037
- position: relative;
1038
- z-index: 2;
1039
- }
1040
-
1041
- .input-prepend .uneditable-input, .input-append .uneditable-input {
1042
- border-left-color: #ccc;
1043
- }
1044
-
1045
- .input-prepend .add-on, .input-append .add-on {
1046
- float: left;
1047
- display: block;
1048
- width: auto;
1049
- min-width: 16px;
1050
- height: 18px;
1051
- margin-right: -1px;
1052
- padding: 4px 5px;
1053
- font-weight: normal;
1054
- line-height: 18px;
1055
- color: #999999;
1056
- text-align: center;
1057
- text-shadow: 0 1px 0 #ffffff;
1058
- background-color: #f5f5f5;
1059
- border: 1px solid #ccc;
1060
- -webkit-border-radius: 3px 0 0 3px;
1061
- -moz-border-radius: 3px 0 0 3px;
1062
- border-radius: 3px 0 0 3px;
1063
- }
1064
-
1065
- .input-prepend .active, .input-append .active {
1066
- background-color: #a9dba9;
1067
- border-color: #46a546;
1068
- }
1069
-
1070
- .input-prepend .add-on {
1071
- *margin-top: 1px;
1072
- /* IE6-7 */
1073
-
1074
- }
1075
-
1076
- .input-append input, .input-append .uneditable-input {
1077
- float: left;
1078
- -webkit-border-radius: 3px 0 0 3px;
1079
- -moz-border-radius: 3px 0 0 3px;
1080
- border-radius: 3px 0 0 3px;
1081
- }
1082
-
1083
- .input-append .uneditable-input {
1084
- border-left-color: #eee;
1085
- border-right-color: #ccc;
1086
- }
1087
-
1088
- .input-append .add-on {
1089
- margin-right: 0;
1090
- margin-left: -1px;
1091
- -webkit-border-radius: 0 3px 3px 0;
1092
- -moz-border-radius: 0 3px 3px 0;
1093
- border-radius: 0 3px 3px 0;
1094
- }
1095
-
1096
- .input-append input:first-child {
1097
- *margin-left: -160px;
1098
- }
1099
-
1100
- .input-append input:first-child + .add-on {
1101
- *margin-left: -21px;
1102
- }
1103
-
1104
- .search-query {
1105
- padding-left: 14px;
1106
- padding-right: 14px;
1107
- margin-bottom: 0;
1108
- -webkit-border-radius: 14px;
1109
- -moz-border-radius: 14px;
1110
- border-radius: 14px;
1111
- }
1112
-
1113
- .form-search input,
1114
- .form-inline input,
1115
- .form-horizontal input,
1116
- .form-search textarea,
1117
- .form-inline textarea,
1118
- .form-horizontal textarea,
1119
- .form-search select,
1120
- .form-inline select,
1121
- .form-horizontal select,
1122
- .form-search .help-inline,
1123
- .form-inline .help-inline,
1124
- .form-horizontal .help-inline,
1125
- .form-search .uneditable-input,
1126
- .form-inline .uneditable-input,
1127
- .form-horizontal .uneditable-input {
1128
- display: inline-block;
1129
- margin-bottom: 0;
1130
- }
1131
-
1132
- .form-search .hide, .form-inline .hide, .form-horizontal .hide {
1133
- display: none;
1134
- }
1135
-
1136
- .form-search label,
1137
- .form-inline label,
1138
- .form-search .input-append,
1139
- .form-inline .input-append,
1140
- .form-search .input-prepend,
1141
- .form-inline .input-prepend {
1142
- display: inline-block;
1143
- }
1144
-
1145
- .form-search .input-append .add-on,
1146
- .form-inline .input-prepend .add-on,
1147
- .form-search .input-append .add-on,
1148
- .form-inline .input-prepend .add-on {
1149
- vertical-align: middle;
1150
- }
1151
-
1152
- .form-search .radio,
1153
- .form-inline .radio,
1154
- .form-search .checkbox,
1155
- .form-inline .checkbox {
1156
- margin-bottom: 0;
1157
- vertical-align: middle;
1158
- }
1159
-
1160
- .control-group {
1161
- margin-bottom: 9px;
1162
- }
1163
-
1164
- legend + .control-group {
1165
- margin-top: 18px;
1166
- -webkit-margin-top-collapse: separate;
1167
- }
1168
-
1169
- .form-horizontal .control-group {
1170
- margin-bottom: 18px;
1171
- *zoom: 1;
1172
- }
1173
-
1174
- .form-horizontal .control-group:before, .form-horizontal .control-group:after {
1175
- display: table;
1176
- content: "";
1177
- }
1178
-
1179
- .form-horizontal .control-group:after {
1180
- clear: both;
1181
- }
1182
-
1183
- .form-horizontal .control-label {
1184
- float: left;
1185
- width: 140px;
1186
- padding-top: 5px;
1187
- text-align: right;
1188
- }
1189
-
1190
- .form-horizontal .controls {
1191
- margin-left: 160px;
1192
- }
1193
-
1194
- .form-horizontal .form-actions {
1195
- padding-left: 160px;
1196
- }
1197
-
1198
- table {
1199
- max-width: 100%;
1200
- border-collapse: collapse;
1201
- border-spacing: 0;
1202
- }
1203
-
1204
- .table {
1205
- width: 100%;
1206
- margin-bottom: 18px;
1207
- }
1208
-
1209
- .table th, .table td {
1210
- padding: 8px;
1211
- line-height: 18px;
1212
- text-align: left;
1213
- vertical-align: top;
1214
- border-top: 1px solid #ddd;
1215
- }
1216
-
1217
- .table th {
1218
- font-weight: bold;
1219
- text-align: left;
1220
- }
1221
-
1222
- .table thead th {
1223
- vertical-align: bottom;
1224
- }
1225
-
1226
- .table thead:first-child tr th, .table thead:first-child tr td {
1227
- border-top: 0;
1228
- }
1229
-
1230
- .table tbody + tbody {
1231
- border-top: 2px solid #ddd;
1232
- }
1233
-
1234
- .table-condensed th, .table-condensed td {
1235
- padding: 4px 5px;
1236
- }
1237
-
1238
- .table-bordered {
1239
- border: 1px solid #ddd;
1240
- border-collapse: separate;
1241
- *border-collapse: collapsed;
1242
- -webkit-border-radius: 4px;
1243
- -moz-border-radius: 4px;
1244
- border-radius: 4px;
1245
- }
1246
-
1247
- .table-bordered th + th,
1248
- .table-bordered td + td,
1249
- .table-bordered th + td,
1250
- .table-bordered td + th {
1251
- border-left: 1px solid #ddd;
1252
- }
1253
-
1254
- .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 {
1255
- border-top: 0;
1256
- }
1257
-
1258
- .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
1259
- -webkit-border-radius: 4px 0 0 0;
1260
- -moz-border-radius: 4px 0 0 0;
1261
- border-radius: 4px 0 0 0;
1262
- }
1263
-
1264
- .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
1265
- -webkit-border-radius: 0 4px 0 0;
1266
- -moz-border-radius: 0 4px 0 0;
1267
- border-radius: 0 4px 0 0;
1268
- }
1269
-
1270
- .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
1271
- -webkit-border-radius: 0 0 0 4px;
1272
- -moz-border-radius: 0 0 0 4px;
1273
- border-radius: 0 0 0 4px;
1274
- }
1275
-
1276
- .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
1277
- -webkit-border-radius: 0 0 4px 0;
1278
- -moz-border-radius: 0 0 4px 0;
1279
- border-radius: 0 0 4px 0;
1280
- }
1281
-
1282
- .table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
1283
- background-color: #f5f5f5;
1284
- }
1285
-
1286
- .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
1287
- background-color: #f9f9f9;
1288
- background-color: #ededed;
1289
- }
1290
-
1291
- .table tbody tr:hover td, .table tbody tr:hover th {
1292
- background-color: #f5f5f5;
1293
- background-color: #e5e5e5;
1294
- }
1295
-
1296
- table .span1 {
1297
- float: none;
1298
- width: 44px;
1299
- margin-left: 0;
1300
- }
1301
-
1302
- table .span2 {
1303
- float: none;
1304
- width: 124px;
1305
- margin-left: 0;
1306
- }
1307
-
1308
- table .span3 {
1309
- float: none;
1310
- width: 204px;
1311
- margin-left: 0;
1312
- }
1313
-
1314
- table .span4 {
1315
- float: none;
1316
- width: 284px;
1317
- margin-left: 0;
1318
- }
1319
-
1320
- table .span5 {
1321
- float: none;
1322
- width: 364px;
1323
- margin-left: 0;
1324
- }
1325
-
1326
- table .span6 {
1327
- float: none;
1328
- width: 444px;
1329
- margin-left: 0;
1330
- }
1331
-
1332
- table .span7 {
1333
- float: none;
1334
- width: 524px;
1335
- margin-left: 0;
1336
- }
1337
-
1338
- table .span8 {
1339
- float: none;
1340
- width: 604px;
1341
- margin-left: 0;
1342
- }
1343
-
1344
- table .span9 {
1345
- float: none;
1346
- width: 684px;
1347
- margin-left: 0;
1348
- }
1349
-
1350
- table .span10 {
1351
- float: none;
1352
- width: 764px;
1353
- margin-left: 0;
1354
- }
1355
-
1356
- table .span11 {
1357
- float: none;
1358
- width: 844px;
1359
- margin-left: 0;
1360
- }
1361
-
1362
- table .span12 {
1363
- float: none;
1364
- width: 924px;
1365
- margin-left: 0;
1366
- }
1367
-
1368
- [class^="icon-"], [class*=" icon-"] {
1369
- display: inline-block;
1370
- width: 14px;
1371
- height: 14px;
1372
- line-height: 14px;
1373
- vertical-align: text-top;
1374
- background-image: url("/assets/glyphicons-halflings.png");
1375
- background-position: 14px 14px;
1376
- background-repeat: no-repeat;
1377
- *margin-right: .3em;
1378
- }
1379
-
1380
- [class^="icon-"]:last-child, [class*=" icon-"]:last-child {
1381
- *margin-left: 0;
1382
- }
1383
-
1384
- .icon-white {
1385
- background-image: url("/assets/glyphicons-halflings-white.png");
1386
- }
1387
-
1388
- .icon-thumbs-up {
1389
- background-position: -96px -144px;
1390
- }
1391
-
1392
- .icon-glass {
1393
- background-position: 0 0;
1394
- }
1395
-
1396
- .icon-music {
1397
- background-position: -24px 0;
1398
- }
1399
-
1400
- .icon-search {
1401
- background-position: -48px 0;
1402
- }
1403
-
1404
- .icon-envelope {
1405
- background-position: -72px 0;
1406
- }
1407
-
1408
- .icon-heart {
1409
- background-position: -96px 0;
1410
- }
1411
-
1412
- .icon-star {
1413
- background-position: -120px 0;
1414
- }
1415
-
1416
- .icon-star-empty {
1417
- background-position: -144px 0;
1418
- }
1419
-
1420
- .icon-user {
1421
- background-position: -168px 0;
1422
- }
1423
-
1424
- .icon-film {
1425
- background-position: -192px 0;
1426
- }
1427
-
1428
- .icon-th-large {
1429
- background-position: -216px 0;
1430
- }
1431
-
1432
- .icon-th {
1433
- background-position: -240px 0;
1434
- }
1435
-
1436
- .icon-th-list {
1437
- background-position: -264px 0;
1438
- }
1439
-
1440
- .icon-ok {
1441
- background-position: -288px 0;
1442
- }
1443
-
1444
- .icon-remove {
1445
- background-position: -312px 0;
1446
- }
1447
-
1448
- .icon-zoom-in {
1449
- background-position: -336px 0;
1450
- }
1451
-
1452
- .icon-zoom-out {
1453
- background-position: -360px 0;
1454
- }
1455
-
1456
- .icon-off {
1457
- background-position: -384px 0;
1458
- }
1459
-
1460
- .icon-signal {
1461
- background-position: -408px 0;
1462
- }
1463
-
1464
- .icon-cog {
1465
- background-position: -432px 0;
1466
- }
1467
-
1468
- .icon-trash {
1469
- background-position: -456px 0;
1470
- }
1471
-
1472
- .icon-home {
1473
- background-position: 0 -24px;
1474
- }
1475
-
1476
- .icon-file {
1477
- background-position: -24px -24px;
1478
- }
1479
-
1480
- .icon-time {
1481
- background-position: -48px -24px;
1482
- }
1483
-
1484
- .icon-road {
1485
- background-position: -72px -24px;
1486
- }
1487
-
1488
- .icon-download-alt {
1489
- background-position: -96px -24px;
1490
- }
1491
-
1492
- .icon-download {
1493
- background-position: -120px -24px;
1494
- }
1495
-
1496
- .icon-upload {
1497
- background-position: -144px -24px;
1498
- }
1499
-
1500
- .icon-inbox {
1501
- background-position: -168px -24px;
1502
- }
1503
-
1504
- .icon-play-circle {
1505
- background-position: -192px -24px;
1506
- }
1507
-
1508
- .icon-repeat {
1509
- background-position: -216px -24px;
1510
- }
1511
-
1512
- .icon-refresh {
1513
- background-position: -240px -24px;
1514
- }
1515
-
1516
- .icon-list-alt {
1517
- background-position: -264px -24px;
1518
- }
1519
-
1520
- .icon-lock {
1521
- background-position: -287px -24px;
1522
- }
1523
-
1524
- .icon-flag {
1525
- background-position: -312px -24px;
1526
- }
1527
-
1528
- .icon-headphones {
1529
- background-position: -336px -24px;
1530
- }
1531
-
1532
- .icon-volume-off {
1533
- background-position: -360px -24px;
1534
- }
1535
-
1536
- .icon-volume-down {
1537
- background-position: -384px -24px;
1538
- }
1539
-
1540
- .icon-volume-up {
1541
- background-position: -408px -24px;
1542
- }
1543
-
1544
- .icon-qrcode {
1545
- background-position: -432px -24px;
1546
- }
1547
-
1548
- .icon-barcode {
1549
- background-position: -456px -24px;
1550
- }
1551
-
1552
- .icon-tag {
1553
- background-position: 0 -48px;
1554
- }
1555
-
1556
- .icon-tags {
1557
- background-position: -25px -48px;
1558
- }
1559
-
1560
- .icon-book {
1561
- background-position: -48px -48px;
1562
- }
1563
-
1564
- .icon-bookmark {
1565
- background-position: -72px -48px;
1566
- }
1567
-
1568
- .icon-print {
1569
- background-position: -96px -48px;
1570
- }
1571
-
1572
- .icon-camera {
1573
- background-position: -120px -48px;
1574
- }
1575
-
1576
- .icon-font {
1577
- background-position: -144px -48px;
1578
- }
1579
-
1580
- .icon-bold {
1581
- background-position: -167px -48px;
1582
- }
1583
-
1584
- .icon-italic {
1585
- background-position: -192px -48px;
1586
- }
1587
-
1588
- .icon-text-height {
1589
- background-position: -216px -48px;
1590
- }
1591
-
1592
- .icon-text-width {
1593
- background-position: -240px -48px;
1594
- }
1595
-
1596
- .icon-align-left {
1597
- background-position: -264px -48px;
1598
- }
1599
-
1600
- .icon-align-center {
1601
- background-position: -288px -48px;
1602
- }
1603
-
1604
- .icon-align-right {
1605
- background-position: -312px -48px;
1606
- }
1607
-
1608
- .icon-align-justify {
1609
- background-position: -336px -48px;
1610
- }
1611
-
1612
- .icon-list {
1613
- background-position: -360px -48px;
1614
- }
1615
-
1616
- .icon-indent-left {
1617
- background-position: -384px -48px;
1618
- }
1619
-
1620
- .icon-indent-right {
1621
- background-position: -408px -48px;
1622
- }
1623
-
1624
- .icon-facetime-video {
1625
- background-position: -432px -48px;
1626
- }
1627
-
1628
- .icon-picture {
1629
- background-position: -456px -48px;
1630
- }
1631
-
1632
- .icon-pencil {
1633
- background-position: 0 -72px;
1634
- }
1635
-
1636
- .icon-map-marker {
1637
- background-position: -24px -72px;
1638
- }
1639
-
1640
- .icon-adjust {
1641
- background-position: -48px -72px;
1642
- }
1643
-
1644
- .icon-tint {
1645
- background-position: -72px -72px;
1646
- }
1647
-
1648
- .icon-edit {
1649
- background-position: -96px -72px;
1650
- }
1651
-
1652
- .icon-share {
1653
- background-position: -120px -72px;
1654
- }
1655
-
1656
- .icon-check {
1657
- background-position: -144px -72px;
1658
- }
1659
-
1660
- .icon-move {
1661
- background-position: -168px -72px;
1662
- }
1663
-
1664
- .icon-step-backward {
1665
- background-position: -192px -72px;
1666
- }
1667
-
1668
- .icon-fast-backward {
1669
- background-position: -216px -72px;
1670
- }
1671
-
1672
- .icon-backward {
1673
- background-position: -240px -72px;
1674
- }
1675
-
1676
- .icon-play {
1677
- background-position: -264px -72px;
1678
- }
1679
-
1680
- .icon-pause {
1681
- background-position: -288px -72px;
1682
- }
1683
-
1684
- .icon-stop {
1685
- background-position: -312px -72px;
1686
- }
1687
-
1688
- .icon-forward {
1689
- background-position: -336px -72px;
1690
- }
1691
-
1692
- .icon-fast-forward {
1693
- background-position: -360px -72px;
1694
- }
1695
-
1696
- .icon-step-forward {
1697
- background-position: -384px -72px;
1698
- }
1699
-
1700
- .icon-eject {
1701
- background-position: -408px -72px;
1702
- }
1703
-
1704
- .icon-chevron-left {
1705
- background-position: -432px -72px;
1706
- }
1707
-
1708
- .icon-chevron-right {
1709
- background-position: -456px -72px;
1710
- }
1711
-
1712
- .icon-plus-sign {
1713
- background-position: 0 -96px;
1714
- }
1715
-
1716
- .icon-minus-sign {
1717
- background-position: -24px -96px;
1718
- }
1719
-
1720
- .icon-remove-sign {
1721
- background-position: -48px -96px;
1722
- }
1723
-
1724
- .icon-ok-sign {
1725
- background-position: -72px -96px;
1726
- }
1727
-
1728
- .icon-question-sign {
1729
- background-position: -96px -96px;
1730
- }
1731
-
1732
- .icon-info-sign {
1733
- background-position: -120px -96px;
1734
- }
1735
-
1736
- .icon-screenshot {
1737
- background-position: -144px -96px;
1738
- }
1739
-
1740
- .icon-remove-circle {
1741
- background-position: -168px -96px;
1742
- }
1743
-
1744
- .icon-ok-circle {
1745
- background-position: -192px -96px;
1746
- }
1747
-
1748
- .icon-ban-circle {
1749
- background-position: -216px -96px;
1750
- }
1751
-
1752
- .icon-arrow-left {
1753
- background-position: -240px -96px;
1754
- }
1755
-
1756
- .icon-arrow-right {
1757
- background-position: -264px -96px;
1758
- }
1759
-
1760
- .icon-arrow-up {
1761
- background-position: -289px -96px;
1762
- }
1763
-
1764
- .icon-arrow-down {
1765
- background-position: -312px -96px;
1766
- }
1767
-
1768
- .icon-share-alt {
1769
- background-position: -336px -96px;
1770
- }
1771
-
1772
- .icon-resize-full {
1773
- background-position: -360px -96px;
1774
- }
1775
-
1776
- .icon-resize-small {
1777
- background-position: -384px -96px;
1778
- }
1779
-
1780
- .icon-plus {
1781
- background-position: -408px -96px;
1782
- }
1783
-
1784
- .icon-minus {
1785
- background-position: -433px -96px;
1786
- }
1787
-
1788
- .icon-asterisk {
1789
- background-position: -456px -96px;
1790
- }
1791
-
1792
- .icon-exclamation-sign {
1793
- background-position: 0 -120px;
1794
- }
1795
-
1796
- .icon-gift {
1797
- background-position: -24px -120px;
1798
- }
1799
-
1800
- .icon-leaf {
1801
- background-position: -48px -120px;
1802
- }
1803
-
1804
- .icon-fire {
1805
- background-position: -72px -120px;
1806
- }
1807
-
1808
- .icon-eye-open {
1809
- background-position: -96px -120px;
1810
- }
1811
-
1812
- .icon-eye-close {
1813
- background-position: -120px -120px;
1814
- }
1815
-
1816
- .icon-warning-sign {
1817
- background-position: -144px -120px;
1818
- }
1819
-
1820
- .icon-plane {
1821
- background-position: -168px -120px;
1822
- }
1823
-
1824
- .icon-calendar {
1825
- background-position: -192px -120px;
1826
- }
1827
-
1828
- .icon-random {
1829
- background-position: -216px -120px;
1830
- }
1831
-
1832
- .icon-comment {
1833
- background-position: -240px -120px;
1834
- }
1835
-
1836
- .icon-magnet {
1837
- background-position: -264px -120px;
1838
- }
1839
-
1840
- .icon-chevron-up {
1841
- background-position: -288px -120px;
1842
- }
1843
-
1844
- .icon-chevron-down {
1845
- background-position: -313px -119px;
1846
- }
1847
-
1848
- .icon-retweet {
1849
- background-position: -336px -120px;
1850
- }
1851
-
1852
- .icon-shopping-cart {
1853
- background-position: -360px -120px;
1854
- }
1855
-
1856
- .icon-folder-close {
1857
- background-position: -384px -120px;
1858
- }
1859
-
1860
- .icon-folder-open {
1861
- background-position: -408px -120px;
1862
- }
1863
-
1864
- .icon-resize-vertical {
1865
- background-position: -432px -119px;
1866
- }
1867
-
1868
- .icon-resize-horizontal {
1869
- background-position: -456px -118px;
1870
- }
1871
-
1872
- .dropdown {
1873
- position: relative;
1874
- }
1875
-
1876
- .dropdown-toggle {
1877
- *margin-bottom: -3px;
1878
- }
1879
-
1880
- .dropdown-toggle:active, .open .dropdown-toggle {
1881
- outline: 0;
1882
- }
1883
-
1884
- .caret {
1885
- display: inline-block;
1886
- width: 0;
1887
- height: 0;
1888
- text-indent: -99999px;
1889
- *text-indent: 0;
1890
- vertical-align: top;
1891
- border-left: 4px solid transparent;
1892
- border-right: 4px solid transparent;
1893
- border-top: 4px solid #000000;
1894
- opacity: 0.3;
1895
- filter: alpha(opacity = 30);
1896
- content: "\2193";
1897
- }
1898
-
1899
- .dropdown .caret {
1900
- margin-top: 8px;
1901
- margin-left: 2px;
1902
- }
1903
-
1904
- .dropdown:hover .caret, .open.dropdown .caret {
1905
- opacity: 1;
1906
- filter: alpha(opacity = 100);
1907
- }
1908
-
1909
- .dropdown-menu {
1910
- position: absolute;
1911
- top: 100%;
1912
- left: 0;
1913
- z-index: 1000;
1914
- float: left;
1915
- display: none;
1916
- min-width: 160px;
1917
- _width: 160px;
1918
- padding: 4px 0;
1919
- margin: 0;
1920
- list-style: none;
1921
- background-color: #ffffff;
1922
- border-color: #ccc;
1923
- border-color: rgba(0, 0, 0, 0.2);
1924
- border-style: solid;
1925
- border-width: 1px;
1926
- -webkit-border-radius: 0 0 5px 5px;
1927
- -moz-border-radius: 0 0 5px 5px;
1928
- border-radius: 0 0 5px 5px;
1929
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1930
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1931
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1932
- -webkit-background-clip: padding-box;
1933
- -moz-background-clip: padding;
1934
- background-clip: padding-box;
1935
- *border-right-width: 2px;
1936
- *border-bottom-width: 2px;
1937
- }
1938
-
1939
- .dropdown-menu.bottom-up {
1940
- top: auto;
1941
- bottom: 100%;
1942
- margin-bottom: 2px;
1943
- }
1944
-
1945
- .dropdown-menu .divider {
1946
- height: 1px;
1947
- margin: 5px 1px;
1948
- overflow: hidden;
1949
- background-color: #e5e5e5;
1950
- border-bottom: 1px solid #ffffff;
1951
- *width: 100%;
1952
- *margin: -5px 0 5px;
1953
- }
1954
-
1955
- .dropdown-menu a {
1956
- display: block;
1957
- padding: 3px 15px;
1958
- clear: both;
1959
- font-weight: normal;
1960
- line-height: 18px;
1961
- color: #555555;
1962
- white-space: nowrap;
1963
- }
1964
-
1965
- .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
1966
- color: #ffffff;
1967
- text-decoration: none;
1968
- background-color: #0088cc;
1969
- }
1970
-
1971
- .dropdown.open {
1972
- *z-index: 1000;
1973
- }
1974
-
1975
- .dropdown.open .dropdown-toggle {
1976
- color: #ffffff;
1977
- background: #ccc;
1978
- background: rgba(0, 0, 0, 0.3);
1979
- }
1980
-
1981
- .dropdown.open .dropdown-menu {
1982
- display: block;
1983
- }
1984
-
1985
- .typeahead {
1986
- margin-top: 2px;
1987
- -webkit-border-radius: 4px;
1988
- -moz-border-radius: 4px;
1989
- border-radius: 4px;
1990
- }
1991
-
1992
- .well {
1993
- min-height: 20px;
1994
- padding: 19px;
1995
- margin-bottom: 20px;
1996
- background-color: #f5f5f5;
1997
- border: 1px solid #eee;
1998
- border: 1px solid rgba(0, 0, 0, 0.05);
1999
- -webkit-border-radius: 4px;
2000
- -moz-border-radius: 4px;
2001
- border-radius: 4px;
2002
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2003
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2004
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2005
- }
2006
-
2007
- .well blockquote {
2008
- border-color: #ddd;
2009
- border-color: rgba(0, 0, 0, 0.15);
2010
- }
2011
-
2012
- .fade {
2013
- -webkit-transition: opacity 0.15s linear;
2014
- -moz-transition: opacity 0.15s linear;
2015
- -ms-transition: opacity 0.15s linear;
2016
- -o-transition: opacity 0.15s linear;
2017
- transition: opacity 0.15s linear;
2018
- opacity: 0;
2019
- }
2020
-
2021
- .fade.in {
2022
- opacity: 1;
2023
- }
2024
-
2025
- .collapse {
2026
- -webkit-transition: height 0.35s ease;
2027
- -moz-transition: height 0.35s ease;
2028
- -ms-transition: height 0.35s ease;
2029
- -o-transition: height 0.35s ease;
2030
- transition: height 0.35s ease;
2031
- position: relative;
2032
- overflow: hidden;
2033
- height: 0;
2034
- }
2035
-
2036
- .collapse.in {
2037
- height: auto;
2038
- }
2039
-
2040
- .close {
2041
- float: right;
2042
- font-size: 20px;
2043
- font-weight: bold;
2044
- line-height: 18px;
2045
- color: #000000;
2046
- text-shadow: 0 1px 0 #ffffff;
2047
- opacity: 0.2;
2048
- filter: alpha(opacity = 20);
2049
- }
2050
-
2051
- .close:hover {
2052
- color: #000000;
2053
- text-decoration: none;
2054
- opacity: 0.4;
2055
- filter: alpha(opacity = 40);
2056
- cursor: pointer;
2057
- }
2058
-
2059
- .btn-def {
2060
- display: inline-block;
2061
- padding: 4px 10px 4px;
2062
- margin-bottom: 0;
2063
- font-size: 13px;
2064
- line-height: 18px;
2065
- color: #333333;
2066
- text-align: center;
2067
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
2068
- vertical-align: middle;
2069
- background-color: #f5f5f5;
2070
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
2071
- background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
2072
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
2073
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
2074
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
2075
- background-image: linear-gradient(top, #ffffff, #e6e6e6);
2076
- background-repeat: repeat-x;
2077
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#e6e6e6', GradientType = 0);
2078
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
2079
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2080
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2081
- border: 1px solid #ccc;
2082
- border-bottom-color: #bbb;
2083
- -webkit-border-radius: 4px;
2084
- -moz-border-radius: 4px;
2085
- border-radius: 4px;
2086
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2087
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2088
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2089
- cursor: pointer;
2090
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2091
- *margin-left: .3em;
2092
- }
2093
-
2094
- .btn-def:hover,
2095
- .btn-def:active,
2096
- .btn-def.active,
2097
- .btn-def.disabled,
2098
- .btn-def[disabled] {
2099
- background-color: #e6e6e6;
2100
- }
2101
-
2102
- .btn-def:active, .btn.active {
2103
- background-color: #cccccc \9;
2104
- }
2105
-
2106
- .btn-def:first-child {
2107
- *margin-left: 0;
2108
- }
2109
-
2110
- .btn-def:hover {
2111
- color: #333333;
2112
- text-decoration: none;
2113
- background-color: #e6e6e6;
2114
- background-position: 0 -15px;
2115
- -webkit-transition: background-position 0.1s linear;
2116
- -moz-transition: background-position 0.1s linear;
2117
- -ms-transition: background-position 0.1s linear;
2118
- -o-transition: background-position 0.1s linear;
2119
- transition: background-position 0.1s linear;
2120
- }
2121
-
2122
- .btn-def:focus {
2123
- outline: thin dotted #333;
2124
- outline: 5px auto -webkit-focus-ring-color;
2125
- outline-offset: -2px;
2126
- }
2127
-
2128
- .btn-def.active, .btn:active {
2129
- background-image: none;
2130
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2131
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2132
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2133
- background-color: #e6e6e6;
2134
- background-color: #d9d9d9 \9;
2135
- outline: 0;
2136
- }
2137
-
2138
- .btn-def.disabled, .btn[disabled] {
2139
- cursor: default;
2140
- background-image: none;
2141
- background-color: #e6e6e6;
2142
- opacity: 0.65;
2143
- filter: alpha(opacity = 65);
2144
- -webkit-box-shadow: none;
2145
- -moz-box-shadow: none;
2146
- box-shadow: none;
2147
- }
2148
-
2149
- .btn-def-large {
2150
- padding: 9px 14px;
2151
- font-size: 15px;
2152
- line-height: normal;
2153
- -webkit-border-radius: 5px;
2154
- -moz-border-radius: 5px;
2155
- border-radius: 5px;
2156
- }
2157
-
2158
- .btn-def-large [class^="icon-"] {
2159
- margin-top: 1px;
2160
- }
2161
-
2162
- .btn-def-small {
2163
- padding: 5px 9px;
2164
- font-size: 11px;
2165
- line-height: 16px;
2166
- }
2167
-
2168
- .btn-def-small [class^="icon-"] {
2169
- margin-top: -1px;
2170
- }
2171
-
2172
- .btn-def-mini {
2173
- padding: 2px 6px;
2174
- font-size: 11px;
2175
- line-height: 14px;
2176
- }
2177
-
2178
- .btn-primary,
2179
- .btn-primary:hover,
2180
- .btn-warning,
2181
- .btn-warning:hover,
2182
- .btn-danger,
2183
- .btn-danger:hover,
2184
- .btn-success,
2185
- .btn-success:hover,
2186
- .btn-info,
2187
- .btn-info:hover,
2188
- .btn-inverse,
2189
- .btn-inverse:hover {
2190
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2191
- color: #ffffff;
2192
- }
2193
-
2194
- .btn-primary.active,
2195
- .btn-warning.active,
2196
- .btn-danger.active,
2197
- .btn-success.active,
2198
- .btn-info.active,
2199
- .btn-dark.active {
2200
- color: rgba(255, 255, 255, 0.75);
2201
- }
2202
-
2203
- .btn-primary {
2204
- background-color: #006dcc;
2205
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
2206
- background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
2207
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
2208
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
2209
- background-image: -o-linear-gradient(top, #0088cc, #0044cc);
2210
- background-image: linear-gradient(top, #0088cc, #0044cc);
2211
- background-repeat: repeat-x;
2212
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0088cc', endColorstr = '#0044cc', GradientType = 0);
2213
- border-color: #0044cc #0044cc #002a80;
2214
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2215
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2216
- }
2217
-
2218
- .btn-primary:hover,
2219
- .btn-primary:active,
2220
- .btn-primary.active,
2221
- .btn-primary.disabled,
2222
- .btn-primary[disabled] {
2223
- background-color: #0044cc;
2224
- }
2225
-
2226
- .btn-primary:active, .btn-primary.active {
2227
- background-color: #003399 \9;
2228
- }
2229
-
2230
- .btn-warning {
2231
- background-color: #faa732;
2232
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2233
- background-image: -ms-linear-gradient(top, #fbb450, #f89406);
2234
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
2235
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2236
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
2237
- background-image: linear-gradient(top, #fbb450, #f89406);
2238
- background-repeat: repeat-x;
2239
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#fbb450', endColorstr = '#f89406', GradientType = 0);
2240
- border-color: #f89406 #f89406 #ad6704;
2241
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2242
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2243
- }
2244
-
2245
- .btn-warning:hover,
2246
- .btn-warning:active,
2247
- .btn-warning.active,
2248
- .btn-warning.disabled,
2249
- .btn-warning[disabled] {
2250
- background-color: #f89406;
2251
- }
2252
-
2253
- .btn-warning:active, .btn-warning.active {
2254
- background-color: #c67605 \9;
2255
- }
2256
-
2257
- .btn-danger {
2258
- background-color: #da4f49;
2259
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2260
- background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
2261
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
2262
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2263
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2264
- background-image: linear-gradient(top, #ee5f5b, #bd362f);
2265
- background-repeat: repeat-x;
2266
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ee5f5b', endColorstr = '#bd362f', GradientType = 0);
2267
- border-color: #bd362f #bd362f #802420;
2268
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2269
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2270
- }
2271
-
2272
- .btn-danger:hover,
2273
- .btn-danger:active,
2274
- .btn-danger.active,
2275
- .btn-danger.disabled,
2276
- .btn-danger[disabled] {
2277
- background-color: #bd362f;
2278
- }
2279
-
2280
- .btn-danger:active, .btn-danger.active {
2281
- background-color: #942a25 \9;
2282
- }
2283
-
2284
- .btn-success {
2285
- background-color: #5bb75b;
2286
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
2287
- background-image: -ms-linear-gradient(top, #62c462, #51a351);
2288
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2289
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2290
- background-image: -o-linear-gradient(top, #62c462, #51a351);
2291
- background-image: linear-gradient(top, #62c462, #51a351);
2292
- background-repeat: repeat-x;
2293
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#62c462', endColorstr = '#51a351', GradientType = 0);
2294
- border-color: #51a351 #51a351 #387038;
2295
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2296
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2297
- }
2298
-
2299
- .btn-success:hover,
2300
- .btn-success:active,
2301
- .btn-success.active,
2302
- .btn-success.disabled,
2303
- .btn-success[disabled] {
2304
- background-color: #51a351;
2305
- }
2306
-
2307
- .btn-success:active, .btn-success.active {
2308
- background-color: #408140 \9;
2309
- }
2310
-
2311
- .btn-info {
2312
- background-color: #49afcd;
2313
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2314
- background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2315
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2316
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2317
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2318
- background-image: linear-gradient(top, #5bc0de, #2f96b4);
2319
- background-repeat: repeat-x;
2320
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#5bc0de', endColorstr = '#2f96b4', GradientType = 0);
2321
- border-color: #2f96b4 #2f96b4 #1f6377;
2322
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2323
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2324
- }
2325
-
2326
- .btn-info:hover,
2327
- .btn-info:active,
2328
- .btn-info.active,
2329
- .btn-info.disabled,
2330
- .btn-info[disabled] {
2331
- background-color: #2f96b4;
2332
- }
2333
-
2334
- .btn-info:active, .btn-info.active {
2335
- background-color: #24748c \9;
2336
- }
2337
-
2338
- .btn-inverse {
2339
- background-color: #393939;
2340
- background-image: -moz-linear-gradient(top, #454545, #262626);
2341
- background-image: -ms-linear-gradient(top, #454545, #262626);
2342
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#454545), to(#262626));
2343
- background-image: -webkit-linear-gradient(top, #454545, #262626);
2344
- background-image: -o-linear-gradient(top, #454545, #262626);
2345
- background-image: linear-gradient(top, #454545, #262626);
2346
- background-repeat: repeat-x;
2347
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#454545', endColorstr = '#262626', GradientType = 0);
2348
- border-color: #262626 #262626 #000000;
2349
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2350
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2351
- }
2352
-
2353
- .btn-inverse:hover,
2354
- .btn-inverse:active,
2355
- .btn-inverse.active,
2356
- .btn-inverse.disabled,
2357
- .btn-inverse[disabled] {
2358
- background-color: #262626;
2359
- }
2360
-
2361
- .btn-inverse:active, .btn-inverse.active {
2362
- background-color: #0c0c0c \9;
2363
- }
2364
-
2365
- button.btn, input[type="submit"].btn {
2366
- *padding-top: 2px;
2367
- *padding-bottom: 2px;
2368
- }
2369
-
2370
- button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
2371
- padding: 0;
2372
- border: 0;
2373
- }
2374
-
2375
- button.btn.large, input[type="submit"].btn.large {
2376
- *padding-top: 7px;
2377
- *padding-bottom: 7px;
2378
- }
2379
-
2380
- button.btn.small, input[type="submit"].btn.small {
2381
- *padding-top: 3px;
2382
- *padding-bottom: 3px;
2383
- }
2384
-
2385
- .btn-group {
2386
- width: 115px;
2387
- display: inline-block;
2388
- position: relative;
2389
- vertical-align: middle;
2390
- white-space: nowrap;
2391
- *zoom: 1;
2392
- *margin-left: .3em;
2393
- }
2394
-
2395
- .btn-group:before, .btn-group:after {
2396
- display: table;
2397
- content: "";
2398
- }
2399
-
2400
- .btn-group:after {
2401
- clear: both;
2402
- }
2403
-
2404
- .btn-group:first-child {
2405
- *margin-left: 0;
2406
- }
2407
-
2408
- .btn-group + .btn-group {
2409
- margin-left: 5px;
2410
- }
2411
-
2412
- .btn-toolbar {
2413
- margin-top: 9px;
2414
- margin-bottom: 9px;
2415
- }
2416
-
2417
- .btn-toolbar .btn-group {
2418
- display: inline-block;
2419
- *display: inline;
2420
- /* IE7 inline-block hack */
2421
-
2422
- *zoom: 1;
2423
- }
2424
-
2425
- .btn-group .btn {
2426
- position: relative;
2427
- float: left;
2428
- margin-left: -1px;
2429
- -webkit-border-radius: 0;
2430
- -moz-border-radius: 0;
2431
- border-radius: 0;
2432
- }
2433
-
2434
- .btn-group .btn:first-child {
2435
- margin-left: 0;
2436
- -webkit-border-top-left-radius: 4px;
2437
- -moz-border-radius-topleft: 4px;
2438
- border-top-left-radius: 4px;
2439
- -webkit-border-bottom-left-radius: 4px;
2440
- -moz-border-radius-bottomleft: 4px;
2441
- border-bottom-left-radius: 4px;
2442
- }
2443
-
2444
- .btn-group .btn:last-child, .btn-group .dropdown-toggle {
2445
- -webkit-border-top-right-radius: 4px;
2446
- -moz-border-radius-topright: 4px;
2447
- border-top-right-radius: 4px;
2448
- -webkit-border-bottom-right-radius: 4px;
2449
- -moz-border-radius-bottomright: 4px;
2450
- border-bottom-right-radius: 4px;
2451
- }
2452
-
2453
- .btn-group .btn.large:first-child {
2454
- margin-left: 0;
2455
- -webkit-border-top-left-radius: 6px;
2456
- -moz-border-radius-topleft: 6px;
2457
- border-top-left-radius: 6px;
2458
- -webkit-border-bottom-left-radius: 6px;
2459
- -moz-border-radius-bottomleft: 6px;
2460
- border-bottom-left-radius: 6px;
2461
- }
2462
-
2463
- .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
2464
- -webkit-border-top-right-radius: 6px;
2465
- -moz-border-radius-topright: 6px;
2466
- border-top-right-radius: 6px;
2467
- -webkit-border-bottom-right-radius: 6px;
2468
- -moz-border-radius-bottomright: 6px;
2469
- border-bottom-right-radius: 6px;
2470
- }
2471
-
2472
- .btn-group .btn:hover,
2473
- .btn-group .btn:focus,
2474
- .btn-group .btn:active,
2475
- .btn-group .btn.active {
2476
- z-index: 2;
2477
- }
2478
-
2479
- .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2480
- outline: 0;
2481
- }
2482
-
2483
- .btn-group .dropdown-toggle {
2484
- padding-left: 8px;
2485
- padding-right: 8px;
2486
- -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);
2487
- -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);
2488
- 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
- *padding-top: 5px;
2490
- *padding-bottom: 5px;
2491
- }
2492
-
2493
- .btn-group.open {
2494
- *z-index: 1000;
2495
- }
2496
-
2497
- .btn-group.open .dropdown-menu {
2498
- display: block;
2499
- margin-top: 1px;
2500
- -webkit-border-radius: 5px;
2501
- -moz-border-radius: 5px;
2502
- border-radius: 5px;
2503
- }
2504
-
2505
- .btn-group.open .dropdown-toggle {
2506
- background-image: none;
2507
- -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2508
- -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2509
- box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
2510
- }
2511
-
2512
- .btn .caret {
2513
- margin-top: 7px;
2514
- margin-left: 0;
2515
- }
2516
-
2517
- .btn:hover .caret, .open.btn-group .caret {
2518
- opacity: 1;
2519
- filter: alpha(opacity = 100);
2520
- }
2521
-
2522
- .btn-primary .caret,
2523
- .btn-danger .caret,
2524
- .btn-info .caret,
2525
- .btn-success .caret,
2526
- .btn-inverse .caret {
2527
- border-top-color: #ffffff;
2528
- opacity: 0.75;
2529
- filter: alpha(opacity = 75);
2530
- }
2531
-
2532
- .btn-small .caret {
2533
- margin-top: 4px;
2534
- }
2535
-
2536
- .alert {
2537
- padding: 8px 35px 8px 14px;
2538
- margin-bottom: 18px;
2539
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2540
- background-color: #fcf8e3;
2541
- border: 1px solid #fbeed5;
2542
- -webkit-border-radius: 4px;
2543
- -moz-border-radius: 4px;
2544
- border-radius: 4px;
2545
- }
2546
-
2547
- .alert, .alert-heading {
2548
- color: #c09853;
2549
- }
2550
-
2551
- .alert .close {
2552
- position: relative;
2553
- top: -2px;
2554
- right: -21px;
2555
- line-height: 18px;
2556
- }
2557
-
2558
- .alert-success {
2559
- background-color: #dff0d8;
2560
- border-color: #d6e9c6;
2561
- }
2562
-
2563
- .alert-success, .alert-success .alert-heading {
2564
- color: #468847;
2565
- }
2566
-
2567
- .alert-danger, .alert-error {
2568
- background-color: #f2dede;
2569
- border-color: #eed3d7;
2570
- }
2571
-
2572
- .alert-danger,
2573
- .alert-error,
2574
- .alert-danger .alert-heading,
2575
- .alert-error .alert-heading {
2576
- color: #b94a48;
2577
- }
2578
-
2579
- .alert-info {
2580
- background-color: #d9edf7;
2581
- border-color: #bce8f1;
2582
- }
2583
-
2584
- .alert-info, .alert-info .alert-heading {
2585
- color: #3a87ad;
2586
- }
2587
-
2588
- .alert-block {
2589
- padding-top: 14px;
2590
- padding-bottom: 14px;
2591
- }
2592
-
2593
- .alert-block > p, .alert-block > ul {
2594
- margin-bottom: 0;
2595
- }
2596
-
2597
- .alert-block p + p {
2598
- margin-top: 5px;
2599
- }
2600
-
2601
- .nav {
2602
- margin-left: 0;
2603
- margin-bottom: 18px;
2604
- list-style: none;
2605
- }
2606
-
2607
- .nav > li > a {
2608
- display: block;
2609
- }
2610
-
2611
- .nav > li > a:hover {
2612
- text-decoration: none;
2613
- background-color: #eeeeee;
2614
- }
2615
-
2616
- .nav .nav-header {
2617
- display: block;
2618
- padding: 3px 15px;
2619
- font-size: 11px;
2620
- font-weight: bold;
2621
- line-height: 18px;
2622
- color: #999999;
2623
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2624
- text-transform: uppercase;
2625
- }
2626
-
2627
- .nav li + .nav-header {
2628
- margin-top: 9px;
2629
- }
2630
-
2631
- .nav-list {
2632
- padding-left: 14px;
2633
- padding-right: 14px;
2634
- margin-bottom: 0;
2635
- }
2636
-
2637
- .nav-list > li > a, .nav-list .nav-header {
2638
- margin-left: -15px;
2639
- margin-right: -15px;
2640
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2641
- }
2642
-
2643
- .nav-list > li > a {
2644
- padding: 3px 15px;
2645
- }
2646
-
2647
- .nav-list .active > a, .nav-list .active > a:hover {
2648
- color: #ffffff;
2649
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2650
- background-color: #0088cc;
2651
- }
2652
-
2653
- .nav-list [class^="icon-"] {
2654
- margin-right: 2px;
2655
- }
2656
-
2657
- .nav-tabs, .nav-pills {
2658
- *zoom: 1;
2659
- }
2660
-
2661
- .nav-tabs:before,
2662
- .nav-pills:before,
2663
- .nav-tabs:after,
2664
- .nav-pills:after {
2665
- display: table;
2666
- content: "";
2667
- }
2668
-
2669
- .nav-tabs:after, .nav-pills:after {
2670
- clear: both;
2671
- }
2672
-
2673
- .nav-tabs > li, .nav-pills > li {
2674
- float: left;
2675
- }
2676
-
2677
- .nav-tabs > li > a, .nav-pills > li > a {
2678
- padding-right: 12px;
2679
- padding-left: 12px;
2680
- margin-right: 2px;
2681
- line-height: 14px;
2682
- }
2683
-
2684
- .nav-tabs {
2685
- border-bottom: 1px solid #ddd;
2686
- }
2687
-
2688
- .nav-tabs > li {
2689
- margin-bottom: -1px;
2690
- }
2691
-
2692
- .nav-tabs > li > a {
2693
- padding-top: 9px;
2694
- padding-bottom: 9px;
2695
- border: 1px solid transparent;
2696
- -webkit-border-radius: 4px 4px 0 0;
2697
- -moz-border-radius: 4px 4px 0 0;
2698
- border-radius: 4px 4px 0 0;
2699
- }
2700
-
2701
- .nav-tabs > li > a:hover {
2702
- border-color: #eeeeee #eeeeee #dddddd;
2703
- }
2704
-
2705
- .nav-tabs > .active > a, .nav-tabs > .active > a:hover {
2706
- color: #555555;
2707
- background-color: #ffffff;
2708
- border: 1px solid #ddd;
2709
- border-bottom-color: transparent;
2710
- cursor: default;
2711
- }
2712
-
2713
- .nav-pills > li > a {
2714
- padding-top: 8px;
2715
- padding-bottom: 8px;
2716
- margin-top: 2px;
2717
- margin-bottom: 2px;
2718
- -webkit-border-radius: 5px;
2719
- -moz-border-radius: 5px;
2720
- border-radius: 5px;
2721
- }
2722
-
2723
- .nav-pills .active > a, .nav-pills .active > a:hover {
2724
- color: #ffffff;
2725
- background-color: #0088cc;
2726
- }
2727
-
2728
- .nav-stacked > li {
2729
- float: none;
2730
- }
2731
-
2732
- .nav-stacked > li > a {
2733
- margin-right: 0;
2734
- }
2735
-
2736
- .nav-tabs.nav-stacked {
2737
- border-bottom: 0;
2738
- }
2739
-
2740
- .nav-tabs.nav-stacked > li > a {
2741
- border: 1px solid #ddd;
2742
- -webkit-border-radius: 0;
2743
- -moz-border-radius: 0;
2744
- border-radius: 0;
2745
- }
2746
-
2747
- .nav-tabs.nav-stacked > li:first-child > a {
2748
- -webkit-border-radius: 4px 4px 0 0;
2749
- -moz-border-radius: 4px 4px 0 0;
2750
- border-radius: 4px 4px 0 0;
2751
- }
2752
-
2753
- .nav-tabs.nav-stacked > li:last-child > a {
2754
- -webkit-border-radius: 0 0 4px 4px;
2755
- -moz-border-radius: 0 0 4px 4px;
2756
- border-radius: 0 0 4px 4px;
2757
- }
2758
-
2759
- .nav-tabs.nav-stacked > li > a:hover {
2760
- border-color: #ddd;
2761
- z-index: 2;
2762
- }
2763
-
2764
- .nav-pills.nav-stacked > li > a {
2765
- margin-bottom: 3px;
2766
- }
2767
-
2768
- .nav-pills.nav-stacked > li:last-child > a {
2769
- margin-bottom: 1px;
2770
- }
2771
-
2772
- .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
2773
- margin-top: 1px;
2774
- border-width: 1px;
2775
- }
2776
-
2777
- .nav-pills .dropdown-menu {
2778
- -webkit-border-radius: 4px;
2779
- -moz-border-radius: 4px;
2780
- border-radius: 4px;
2781
- }
2782
-
2783
- .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
2784
- border-top-color: #0088cc;
2785
- margin-top: 6px;
2786
- }
2787
-
2788
- .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
2789
- border-top-color: #005580;
2790
- }
2791
-
2792
- .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
2793
- border-top-color: #333333;
2794
- }
2795
-
2796
- .nav > .dropdown.active > a:hover {
2797
- color: #000000;
2798
- cursor: pointer;
2799
- }
2800
-
2801
- .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
2802
- color: #ffffff;
2803
- background-color: #999999;
2804
- border-color: #999999;
2805
- }
2806
-
2807
- .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
2808
- border-top-color: #ffffff;
2809
- opacity: 1;
2810
- filter: alpha(opacity = 100);
2811
- }
2812
-
2813
- .tabs-stacked .open > a:hover {
2814
- border-color: #999999;
2815
- }
2816
-
2817
- .tabbable {
2818
- *zoom: 1;
2819
- }
2820
-
2821
- .tabbable:before, .tabbable:after {
2822
- display: table;
2823
- content: "";
2824
- }
2825
-
2826
- .tabbable:after {
2827
- clear: both;
2828
- }
2829
-
2830
- .tab-content {
2831
-
2832
- }
2833
-
2834
- .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
2835
- border-bottom: 0;
2836
- }
2837
-
2838
- .tab-content > .tab-pane, .pill-content > .pill-pane {
2839
- display: none;
2840
- }
2841
-
2842
- .tab-content > .active, .pill-content > .active {
2843
- display: block;
2844
- }
2845
-
2846
- .tabs-below .nav-tabs {
2847
- border-top: 1px solid #ddd;
2848
- }
2849
-
2850
- .tabs-below .nav-tabs > li {
2851
- margin-top: -1px;
2852
- margin-bottom: 0;
2853
- }
2854
-
2855
- .tabs-below .nav-tabs > li > a {
2856
- -webkit-border-radius: 0 0 4px 4px;
2857
- -moz-border-radius: 0 0 4px 4px;
2858
- border-radius: 0 0 4px 4px;
2859
- }
2860
-
2861
- .tabs-below .nav-tabs > li > a:hover {
2862
- border-bottom-color: transparent;
2863
- border-top-color: #ddd;
2864
- }
2865
-
2866
- .tabs-below .nav-tabs .active > a, .tabs-below .nav-tabs .active > a:hover {
2867
- border-color: transparent #ddd #ddd #ddd;
2868
- }
2869
-
2870
- .tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li {
2871
- float: none;
2872
- }
2873
-
2874
- .tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a {
2875
- min-width: 74px;
2876
- margin-right: 0;
2877
- margin-bottom: 3px;
2878
- }
2879
-
2880
- .tabs-left .nav-tabs {
2881
- float: left;
2882
- margin-right: 19px;
2883
- border-right: 1px solid #ddd;
2884
- }
2885
-
2886
- .tabs-left .nav-tabs > li > a {
2887
- margin-right: -1px;
2888
- -webkit-border-radius: 4px 0 0 4px;
2889
- -moz-border-radius: 4px 0 0 4px;
2890
- border-radius: 4px 0 0 4px;
2891
- }
2892
-
2893
- .tabs-left .nav-tabs > li > a:hover {
2894
- border-color: #eeeeee #dddddd #eeeeee #eeeeee;
2895
- }
2896
-
2897
- .tabs-left .nav-tabs .active > a, .tabs-left .nav-tabs .active > a:hover {
2898
- border-color: #ddd transparent #ddd #ddd;
2899
- *border-right-color: #ffffff;
2900
- }
2901
-
2902
- .tabs-right .nav-tabs {
2903
- float: right;
2904
- margin-left: 19px;
2905
- border-left: 1px solid #ddd;
2906
- }
2907
-
2908
- .tabs-right .nav-tabs > li > a {
2909
- margin-left: -1px;
2910
- -webkit-border-radius: 0 4px 4px 0;
2911
- -moz-border-radius: 0 4px 4px 0;
2912
- border-radius: 0 4px 4px 0;
2913
- }
2914
-
2915
- .tabs-right .nav-tabs > li > a:hover {
2916
- border-color: #eeeeee #eeeeee #eeeeee #dddddd;
2917
- }
2918
-
2919
- .tabs-right .nav-tabs .active > a, .tabs-right .nav-tabs .active > a:hover {
2920
- border-color: #ddd #ddd #ddd transparent;
2921
- *border-left-color: #ffffff;
2922
- }
2923
-
2924
- .navbar {
2925
- overflow: visible;
2926
- margin-bottom: 18px;
2927
- }
2928
-
2929
- .navbar-inner {
2930
- padding-left: 20px;
2931
- padding-right: 20px;
2932
- background-color: #2c2c2c;
2933
- background-image: -moz-linear-gradient(top, #333333, #222222);
2934
- background-image: -ms-linear-gradient(top, #333333, #222222);
2935
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2936
- background-image: -webkit-linear-gradient(top, #333333, #222222);
2937
- background-image: -o-linear-gradient(top, #333333, #222222);
2938
- background-image: linear-gradient(top, #333333, #222222);
2939
- background-repeat: repeat-x;
2940
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#333333', endColorstr = '#222222', GradientType = 0);
2941
- -webkit-border-radius: 4px;
2942
- -moz-border-radius: 4px;
2943
- border-radius: 4px;
2944
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2945
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2946
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
2947
- }
2948
-
2949
- .btn-navbar {
2950
- display: none;
2951
- float: right;
2952
- padding: 7px 10px;
2953
- margin-left: 5px;
2954
- margin-right: 5px;
2955
- background-color: #2c2c2c;
2956
- background-image: -moz-linear-gradient(top, #333333, #222222);
2957
- background-image: -ms-linear-gradient(top, #333333, #222222);
2958
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2959
- background-image: -webkit-linear-gradient(top, #333333, #222222);
2960
- background-image: -o-linear-gradient(top, #333333, #222222);
2961
- background-image: linear-gradient(top, #333333, #222222);
2962
- background-repeat: repeat-x;
2963
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#333333', endColorstr = '#222222', GradientType = 0);
2964
- border-color: #222222 #222222 #000000;
2965
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2966
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2967
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2968
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2969
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
2970
- }
2971
-
2972
- .btn-navbar:hover,
2973
- .btn-navbar:active,
2974
- .btn-navbar.active,
2975
- .btn-navbar.disabled,
2976
- .btn-navbar[disabled] {
2977
- background-color: #222222;
2978
- }
2979
-
2980
- .btn-navbar:active, .btn-navbar.active {
2981
- background-color: #080808 \9;
2982
- }
2983
-
2984
- .btn-navbar .icon-bar {
2985
- display: block;
2986
- width: 18px;
2987
- height: 2px;
2988
- background-color: #f5f5f5;
2989
- -webkit-border-radius: 1px;
2990
- -moz-border-radius: 1px;
2991
- border-radius: 1px;
2992
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2993
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2994
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2995
- }
2996
-
2997
- .btn-navbar .icon-bar + .icon-bar {
2998
- margin-top: 3px;
2999
- }
3000
-
3001
- .nav-collapse.collapse {
3002
- height: auto;
3003
- }
3004
-
3005
- .navbar .brand:hover {
3006
- text-decoration: none;
3007
- }
3008
-
3009
- .navbar .brand {
3010
- float: left;
3011
- display: block;
3012
- padding: 8px 20px 12px;
3013
- margin-left: -20px;
3014
- font-size: 20px;
3015
- font-weight: 200;
3016
- line-height: 1;
3017
- color: #ffffff;
3018
- }
3019
-
3020
- .navbar .navbar-text {
3021
- margin-bottom: 0;
3022
- line-height: 40px;
3023
- color: #999999;
3024
- }
3025
-
3026
- .navbar .navbar-text a:hover {
3027
- color: #ffffff;
3028
- background-color: transparent;
3029
- }
3030
-
3031
- .navbar .btn, .navbar .btn-group {
3032
- margin-top: 5px;
3033
- }
3034
-
3035
- .navbar .btn-group .btn {
3036
- margin-top: 0;
3037
- }
3038
-
3039
- .navbar-form {
3040
- margin-bottom: 0;
3041
- *zoom: 1;
3042
- }
3043
-
3044
- .navbar-form:before, .navbar-form:after {
3045
- display: table;
3046
- content: "";
3047
- }
3048
-
3049
- .navbar-form:after {
3050
- clear: both;
3051
- }
3052
-
3053
- .navbar-form input, .navbar-form select {
3054
- display: inline-block;
3055
- margin-top: 5px;
3056
- margin-bottom: 0;
3057
- }
3058
-
3059
- .navbar-form .radio, .navbar-form .checkbox {
3060
- margin-top: 5px;
3061
- }
3062
-
3063
- .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
3064
- margin-top: 3px;
3065
- }
3066
-
3067
- .navbar-form .input-append, .navbar-form .input-prepend {
3068
- margin-top: 6px;
3069
- white-space: nowrap;
3070
- }
3071
-
3072
- .navbar-form .input-append input, .navbar-form .input-prepend input {
3073
- margin-top: 0;
3074
- }
3075
-
3076
- .navbar-search {
3077
- position: relative;
3078
- float: left;
3079
- margin-top: 6px;
3080
- margin-bottom: 0;
3081
- }
3082
-
3083
- .navbar-search .search-query {
3084
- padding: 4px 9px;
3085
- font-size: 13px;
3086
- font-weight: normal;
3087
- line-height: 1;
3088
- color: #ffffff;
3089
- color: rgba(255, 255, 255, 0.75);
3090
- background: #666;
3091
- background: rgba(255, 255, 255, 0.3);
3092
- border: 1px solid #111;
3093
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3094
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3095
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
3096
- -webkit-transition: none;
3097
- -moz-transition: none;
3098
- -ms-transition: none;
3099
- -o-transition: none;
3100
- transition: none;
3101
- }
3102
-
3103
- .navbar-search .search-query :-moz-placeholder {
3104
- color: #eeeeee;
3105
- }
3106
-
3107
- .navbar-search .search-query::-webkit-input-placeholder {
3108
- color: #eeeeee;
3109
- }
3110
-
3111
- .navbar-search .search-query:hover {
3112
- color: #ffffff;
3113
- background-color: #999999;
3114
- background-color: rgba(255, 255, 255, 0.5);
3115
- }
3116
-
3117
- .navbar-search .search-query:focus, .navbar-search .search-query.focused {
3118
- padding: 5px 10px;
3119
- color: #333333;
3120
- text-shadow: 0 1px 0 #ffffff;
3121
- background-color: #ffffff;
3122
- border: 0;
3123
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3124
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3125
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3126
- outline: 0;
3127
- }
3128
-
3129
- .navbar-fixed-top {
3130
- position: fixed;
3131
- top: 0;
3132
- right: 0;
3133
- left: 0;
3134
- z-index: 1030;
3135
- }
3136
-
3137
- .navbar-fixed-top .navbar-inner {
3138
- padding-left: 0;
3139
- padding-right: 0;
3140
- -webkit-border-radius: 0;
3141
- -moz-border-radius: 0;
3142
- border-radius: 0;
3143
- }
3144
-
3145
- .navbar .nav {
3146
- position: relative;
3147
- left: 0;
3148
- display: block;
3149
- float: left;
3150
- margin: 0 10px 0 0;
3151
- }
3152
-
3153
- .navbar .nav.pull-right {
3154
- float: right;
3155
- }
3156
-
3157
- .navbar .nav > li {
3158
- display: block;
3159
- float: left;
3160
- }
3161
-
3162
- .navbar .nav > li > a {
3163
- float: none;
3164
- padding: 10px 10px 11px;
3165
- line-height: 19px;
3166
- color: #999999;
3167
- text-decoration: none;
3168
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3169
- }
3170
-
3171
- .navbar .nav > li > a:hover {
3172
- background-color: transparent;
3173
- color: #ffffff;
3174
- text-decoration: none;
3175
- }
3176
-
3177
- .navbar .nav .active > a, .navbar .nav .active > a:hover {
3178
- color: #ffffff;
3179
- text-decoration: none;
3180
- background-color: #222222;
3181
- }
3182
-
3183
- .navbar .divider-vertical {
3184
- height: 40px;
3185
- width: 1px;
3186
- margin: 0 9px;
3187
- overflow: hidden;
3188
- background-color: #222222;
3189
- border-right: 1px solid #333333;
3190
- }
3191
-
3192
- .navbar .nav.pull-right {
3193
- margin-left: 10px;
3194
- margin-right: 0;
3195
- }
3196
-
3197
- .navbar .dropdown-menu {
3198
- margin-top: 1px;
3199
- -webkit-border-radius: 4px;
3200
- -moz-border-radius: 4px;
3201
- border-radius: 4px;
3202
- }
3203
-
3204
- .navbar .dropdown-menu:before {
3205
- content: '';
3206
- display: inline-block;
3207
- border-left: 7px solid transparent;
3208
- border-right: 7px solid transparent;
3209
- border-bottom: 7px solid #ccc;
3210
- border-bottom-color: rgba(0, 0, 0, 0.2);
3211
- position: absolute;
3212
- top: -7px;
3213
- left: 9px;
3214
- }
3215
-
3216
- .navbar .dropdown-menu:after {
3217
- content: '';
3218
- display: inline-block;
3219
- border-left: 6px solid transparent;
3220
- border-right: 6px solid transparent;
3221
- border-bottom: 6px solid #ffffff;
3222
- position: absolute;
3223
- top: -6px;
3224
- left: 10px;
3225
- }
3226
-
3227
- .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
3228
- border-top-color: #ffffff;
3229
- }
3230
-
3231
- .navbar .nav .active .caret {
3232
- opacity: 1;
3233
- filter: alpha(opacity = 100);
3234
- }
3235
-
3236
- .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
3237
- background-color: transparent;
3238
- }
3239
-
3240
- .navbar .nav .active > .dropdown-toggle:hover {
3241
- color: #ffffff;
3242
- }
3243
-
3244
- .navbar .nav.pull-right .dropdown-menu {
3245
- left: auto;
3246
- right: 0;
3247
- }
3248
-
3249
- .navbar .nav.pull-right .dropdown-menu:before {
3250
- left: auto;
3251
- right: 12px;
3252
- }
3253
-
3254
- .navbar .nav.pull-right .dropdown-menu:after {
3255
- left: auto;
3256
- right: 13px;
3257
- }
3258
-
3259
- .breadcrumb {
3260
- padding: 7px 14px;
3261
- margin: 0 0 18px;
3262
- background-color: #fbfbfb;
3263
- background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
3264
- background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
3265
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
3266
- background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
3267
- background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
3268
- background-image: linear-gradient(top, #ffffff, #f5f5f5);
3269
- background-repeat: repeat-x;
3270
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#f5f5f5', GradientType = 0);
3271
- border: 1px solid #ddd;
3272
- -webkit-border-radius: 3px;
3273
- -moz-border-radius: 3px;
3274
- border-radius: 3px;
3275
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
3276
- -moz-box-shadow: inset 0 1px 0 #ffffff;
3277
- box-shadow: inset 0 1px 0 #ffffff;
3278
- }
3279
-
3280
- .breadcrumb li {
3281
- display: inline-block;
3282
- text-shadow: 0 1px 0 #ffffff;
3283
- }
3284
-
3285
- .breadcrumb .divider {
3286
- padding: 0 5px;
3287
- color: #999999;
3288
- }
3289
-
3290
- .breadcrumb .active a {
3291
- color: #333333;
3292
- }
3293
-
3294
- .pagination {
3295
- /* height: 36px;
3296
- margin: 18px 0;*/
3297
- }
3298
-
3299
- .pagination ul {
3300
- display: inline-block;
3301
- *display: inline;
3302
- /* IE7 inline-block hack */
3303
-
3304
- *zoom: 1;
3305
- margin-left: 0;
3306
- margin-bottom: 0;
3307
- -webkit-border-radius: 3px;
3308
- -moz-border-radius: 3px;
3309
- border-radius: 3px;
3310
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3311
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3312
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
3313
- }
3314
-
3315
- .pagination li {
3316
- display: inline;
3317
- }
3318
-
3319
- .pagination a {
3320
- /*float: left;*/
3321
- padding: 0 14px;
3322
- line-height: 34px;
3323
- text-decoration: none;
3324
- border: 1px solid #ddd;
3325
- border-left-width: 0;
3326
-
3327
- padding: 0 2px;
3328
- line-height: 20px;
3329
- }
3330
-
3331
- .pagination a:hover, .pagination .active a {
3332
- background-color: #f5f5f5;
3333
- }
3334
-
3335
- .pagination .active a {
3336
- color: #999999;
3337
- cursor: default;
3338
- }
3339
-
3340
- .pagination .disabled a, .pagination .disabled a:hover {
3341
- color: #999999;
3342
- background-color: transparent;
3343
- cursor: default;
3344
- }
3345
-
3346
- .pagination li:first-child a {
3347
- border-left-width: 1px;
3348
- -webkit-border-radius: 3px 0 0 3px;
3349
- -moz-border-radius: 3px 0 0 3px;
3350
- border-radius: 3px 0 0 3px;
3351
- }
3352
-
3353
- .pagination li:last-child a {
3354
- -webkit-border-radius: 0 3px 3px 0;
3355
- -moz-border-radius: 0 3px 3px 0;
3356
- border-radius: 0 3px 3px 0;
3357
- }
3358
-
3359
- .pagination-centered {
3360
- text-align: center;
3361
- }
3362
-
3363
- .pagination-right {
3364
- text-align: right;
3365
- }
3366
-
3367
- .pager {
3368
- margin-left: 0;
3369
- margin-bottom: 18px;
3370
- list-style: none;
3371
- text-align: center;
3372
- *zoom: 1;
3373
- }
3374
-
3375
- .pager:before, .pager:after {
3376
- display: table;
3377
- content: "";
3378
- }
3379
-
3380
- .pager:after {
3381
- clear: both;
3382
- }
3383
-
3384
- .pager li {
3385
- display: inline;
3386
- }
3387
-
3388
- .pager a {
3389
- display: inline-block;
3390
- padding: 5px 14px;
3391
- background-color: #fff;
3392
- border: 1px solid #ddd;
3393
- -webkit-border-radius: 15px;
3394
- -moz-border-radius: 15px;
3395
- border-radius: 15px;
3396
- }
3397
-
3398
- .pager a:hover {
3399
- text-decoration: none;
3400
- background-color: #f5f5f5;
3401
- }
3402
-
3403
- .pager .next a {
3404
- float: right;
3405
- }
3406
-
3407
- .pager .previous a {
3408
- float: left;
3409
- }
3410
-
3411
- .modal-open .dropdown-menu {
3412
- z-index: 2050;
3413
- }
3414
-
3415
- .modal-open .dropdown.open {
3416
- *z-index: 2050;
3417
- }
3418
-
3419
- .modal-open .popover {
3420
- z-index: 2060;
3421
- }
3422
-
3423
- .modal-open .tooltip {
3424
- z-index: 2070;
3425
- }
3426
-
3427
- .modal-backdrop {
3428
- position: fixed;
3429
- top: 0;
3430
- right: 0;
3431
- bottom: 0;
3432
- left: 0;
3433
- z-index: 1040;
3434
- background-color: #000000;
3435
- }
3436
-
3437
- .modal-backdrop.fade {
3438
- opacity: 0;
3439
- }
3440
-
3441
- .modal-backdrop, .modal-backdrop.fade.in {
3442
- opacity: 0.8;
3443
- filter: alpha(opacity = 80);
3444
- }
3445
-
3446
- .modal {
3447
- position: fixed;
3448
- top: 50%;
3449
- left: 50%;
3450
- z-index: 1050;
3451
- max-height: 500px;
3452
- overflow: auto;
3453
- width: 560px;
3454
- margin: -250px 0 0 -280px;
3455
- background-color: #ffffff;
3456
- border: 1px solid #999;
3457
- border: 1px solid rgba(0, 0, 0, 0.3);
3458
- *border: 1px solid #999;
3459
- /* IE6-7 */
3460
-
3461
- -webkit-border-radius: 6px;
3462
- -moz-border-radius: 6px;
3463
- border-radius: 6px;
3464
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3465
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3466
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3467
- -webkit-background-clip: padding-box;
3468
- -moz-background-clip: padding-box;
3469
- background-clip: padding-box;
3470
- }
3471
-
3472
- .modal.large {
3473
- width: 940px;
3474
- margin-left: -470px;
3475
- height: 500px;
3476
-
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 */