leather 0.2.22 → 0.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -0
  3. data/app/assets/javascripts/leather.js +13 -0
  4. data/app/assets/javascripts/{leather.js.coffee → off_canvas.js.coffee} +0 -0
  5. data/app/assets/stylesheets/{leather/_devise.css.scss → _devise.css.scss} +0 -1
  6. data/app/assets/stylesheets/{leather/_off_canvas.css.scss → _off_canvas.css.scss} +0 -0
  7. data/app/assets/stylesheets/{leather/_variables.css.scss → _variables.css.scss} +0 -0
  8. data/app/assets/stylesheets/leather.css.scss +3 -3
  9. data/app/controllers/leather/application_controller.rb +9 -0
  10. data/app/helpers/leather/application_helper.rb +28 -0
  11. data/app/views/leather/application/_table.html.haml +23 -0
  12. data/{templates/views/pages → app/views/leather/application}/ui_kit.html.haml +18 -15
  13. data/app/views/leather/{_dropdown_nav_item.html.haml → bootstrap_components/_dropdown_nav_item.html.haml} +0 -0
  14. data/app/views/leather/{_modal.html.haml → bootstrap_components/_modal.html.haml} +0 -0
  15. data/app/views/leather/{_modal_body.html.haml → bootstrap_components/_modal_body.html.haml} +0 -0
  16. data/app/views/leather/{_modal_footer.html.haml → bootstrap_components/_modal_footer.html.haml} +0 -0
  17. data/app/views/leather/{_modal_header.html.haml → bootstrap_components/_modal_header.html.haml} +0 -0
  18. data/app/views/leather/{_nav_item.html.haml → bootstrap_components/_nav_item.html.haml} +0 -0
  19. data/app/views/leather/{_nav_list.html.haml → bootstrap_components/_nav_list.html.haml} +0 -0
  20. data/app/views/leather/{_navbar.html.haml → bootstrap_components/_navbar.html.haml} +0 -0
  21. data/config/routes.rb +3 -0
  22. data/lib/generators/leather/install/install_generator.rb +7 -3
  23. data/lib/leather.rb +2 -11
  24. data/lib/leather/{action_controller.rb → action_controller_extension.rb} +1 -1
  25. data/lib/leather/engine.rb +9 -0
  26. data/lib/leather/leather_helpers.rb +16 -8
  27. data/lib/leather/railtie.rb +1 -1
  28. data/lib/leather/version.rb +1 -1
  29. data/test/dummy/README.rdoc +28 -0
  30. data/test/dummy/Rakefile +6 -0
  31. data/test/dummy/app/assets/javascripts/application.js +16 -0
  32. data/test/dummy/app/assets/stylesheets/application.css.scss +3 -0
  33. data/{templates → test/dummy/app/assets/stylesheets}/bootstrap_variables.css.scss +0 -0
  34. data/test/dummy/app/controllers/application_controller.rb +5 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/models/user.rb +6 -0
  37. data/test/dummy/app/views/application/_navigation.html.haml +10 -0
  38. data/{templates → test/dummy/app}/views/devise/passwords/edit.html.erb +0 -0
  39. data/{templates → test/dummy/app}/views/devise/passwords/new.html.erb +0 -0
  40. data/{templates → test/dummy/app}/views/devise/registrations/new.html.erb +0 -0
  41. data/{templates → test/dummy/app}/views/devise/sessions/new.html.erb +0 -0
  42. data/{templates → test/dummy/app}/views/devise/shared/_links.html.erb +0 -0
  43. data/{templates → test/dummy/app}/views/devise/shared/_welcome.html.erb +1 -1
  44. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  45. data/test/dummy/app/views/pages/home.html.haml +2 -0
  46. data/test/dummy/bin/bundle +3 -0
  47. data/test/dummy/bin/rails +4 -0
  48. data/test/dummy/bin/rake +4 -0
  49. data/test/dummy/config.ru +4 -0
  50. data/test/dummy/config/application.rb +23 -0
  51. data/test/dummy/config/boot.rb +5 -0
  52. data/test/dummy/config/database.yml +25 -0
  53. data/test/dummy/config/environment.rb +5 -0
  54. data/test/dummy/config/environments/development.rb +37 -0
  55. data/test/dummy/config/environments/production.rb +82 -0
  56. data/test/dummy/config/environments/test.rb +39 -0
  57. data/test/dummy/config/initializers/assets.rb +8 -0
  58. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  59. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  60. data/test/dummy/config/initializers/devise.rb +259 -0
  61. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/{templates → test/dummy/config/initializers}/high_voltage.rb +0 -0
  63. data/test/dummy/config/initializers/inflections.rb +16 -0
  64. data/test/dummy/config/initializers/mime_types.rb +4 -0
  65. data/test/dummy/config/initializers/session_store.rb +3 -0
  66. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/test/dummy/config/locales/devise.en.yml +60 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/routes.rb +4 -0
  70. data/test/dummy/config/secrets.yml +22 -0
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20140814162425_devise_create_users.rb +42 -0
  73. data/test/dummy/db/schema.rb +34 -0
  74. data/test/dummy/log/development.log +11369 -0
  75. data/test/dummy/public/404.html +67 -0
  76. data/test/dummy/public/422.html +67 -0
  77. data/test/dummy/public/500.html +66 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/test/fixtures/users.yml +11 -0
  80. data/test/dummy/test/models/user_test.rb +7 -0
  81. data/test/dummy/tmp/cache/assets/development/sass/1641d3150ac5429005b865a93b3a8f1f2fd752bc/application.css.scssc +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sass/1fe1d31e5c11da98ccb41fd2426b10e396cae9ef/application.css.scssc +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/1fe1d31e5c11da98ccb41fd2426b10e396cae9ef/bootstrap_variables.css.scssc +1701 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_alerts.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_badges.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_breadcrumbs.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_button-groups.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_buttons.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_carousel.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_close.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_code.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_component-animations.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_dropdowns.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_forms.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_glyphicons.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_grid.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_input-groups.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_jumbotron.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_labels.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_list-group.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_media.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_mixins.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_modals.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_navbar.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_navs.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_normalize.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_pager.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_pagination.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_panels.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_popovers.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_print.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_progress-bars.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_responsive-embed.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_responsive-utilities.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_scaffolding.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_tables.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_thumbnails.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_tooltip.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_type.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_utilities.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_variables.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sass/7d709f89007018e9b896a11840fb57fe1faf39e8/_wells.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sass/c6c02afe3e484db0157d0b969d3fd5d5c62e4d94/bootstrap.scssc +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_alerts.scssc +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_background-variant.scssc +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_border-radius.scssc +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_buttons.scssc +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_center-block.scssc +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_clearfix.scssc +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_forms.scssc +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_gradients.scssc +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_grid-framework.scssc +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_grid.scssc +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_hide-text.scssc +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_image.scssc +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_labels.scssc +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_list-group.scssc +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_nav-divider.scssc +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_nav-vertical-align.scssc +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_opacity.scssc +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_pagination.scssc +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_panels.scssc +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_progress-bar.scssc +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_reset-filter.scssc +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_resize.scssc +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_responsive-visibility.scssc +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_size.scssc +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_tab-focus.scssc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_table-row.scssc +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_text-emphasis.scssc +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_text-overflow.scssc +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sass/e936609740201ce4d037df2bc4e0d0583a9db099/_vendor-prefixes.scssc +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sass/f79010467975f9f0c74079973e2e6ac43e352b55/_devise.css.scssc +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sass/f79010467975f9f0c74079973e2e6ac43e352b55/_off_canvas.css.scssc +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sass/f79010467975f9f0c74079973e2e6ac43e352b55/_variables.css.scssc +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sass/f79010467975f9f0c74079973e2e6ac43e352b55/leather.css.scssc +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/046291387bc2d2809757a336ec0fe4dd +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/1aa37d6306939c6bd4d2d3dbd1a972b4 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/1c74f524ef1c9664c5e027ecfb2f534e +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/1ecf6ce46912d5c0e24343940a72fce7 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/274c66f2ef77dedcb7dc72e5c80b654c +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/2a614fefcf86c505c98bd491b8057fc0 +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/2b143e009dd8e8cf9dce01e50a29ecc0 +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/47420553469a85f5ed442ccb08588099 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/48cea382a3ed21081e139131c519e3e9 +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/497b53ce078e6c220cb7d7fdc5ffd06d +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/52e5cce67e5ce8d22cd7cf062f1396bf +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/563354ac2bc7c194f7b61e1db43bb636 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/7379a30babe5f5562913dd7aaf455d0d +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/7f63bbb4eb4a18d7b34c5a4d00574deb +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/8ab512c9b33ac90e699b73469d71f061 +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/93e73cad26dda36a65545f659023ed43 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/94e8a6b05d99d35f7b50a0670a388a3f +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/a43f717bccf7814b0f5dd8b1e65f8bcf +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/a4c1a1b7f7b3ef8eef5e91d15021acfc +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/aa8b8b91fdc14339221eb215870567a4 +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/ab4135af88f861c1cbff29b547bf4ea6 +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/af8d23558ed6bffb1663e09f8173783c +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/bcca522c6302f184f12fe0e8a7d7e71a +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/c13fc73ceafa45876a901b3e775b83ae +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/c8698346bbe3b8299a17e9922ef54b8d +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/ce2bf14384e46d791ba077ef9af694bb +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/d23d368477e7164786f1c4ea07ba217c +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/d99551528f517a3d6c158eedd1afd880 +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/e4169f8ade49b1355c22470d8c27338e +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/ee270497fcf07e6ea24dde5f1de5bb3f +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/f8cbf91fc43cafc23d7976c4634215d4 +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/fb2054989d359cd4c8dc2d2c59e98333 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/fc0d528a667b47ff79c6a1159488c7f6 +0 -0
  196. data/test/dummy/tmp/pids/server.pid +1 -0
  197. data/test/integration/navigation_test.rb +10 -0
  198. data/test/leather_test.rb +7 -0
  199. data/test/test_helper.rb +15 -0
  200. metadata +387 -64
  201. data/app/helpers/navigation_helper.rb +0 -9
  202. data/templates/views/pages/_table.html.erb +0 -30
  203. data/templates/views/pages/home.html.haml +0 -13
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,1701 @@
1
+ {: versionI"3.2.19 (Media Mark):EF:shaI"-19353b0db8405a33e342027d40bca022b1c606b6;F:
2
+ :@children[o:Sass::Tree::CommentNode
3
+ : @value[I"
4
+ /* // a flag to toggle asset pipeline / compass integration
5
+ * // defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
6
+ * // in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
7
+ * $bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
8
+ * //
9
+ * // Variables
10
+ * // --------------------------------------------------
11
+ *
12
+ *
13
+ * //== Colors
14
+ * //
15
+ * //## Gray and brand colors for use across Bootstrap.
16
+ *
17
+ * $gray-darker: lighten(#000, 13.5%) !default; // #222
18
+ * $gray-dark: lighten(#000, 20%) !default; // #333
19
+ * $gray: lighten(#000, 33.5%) !default; // #555
20
+ * $gray-light: lighten(#000, 46.7%) !default; // #777
21
+ * $gray-lighter: lighten(#000, 93.5%) !default; // #eee
22
+ *
23
+ * $brand-primary: #428bca !default;
24
+ * $brand-success: #5cb85c !default;
25
+ * $brand-info: #5bc0de !default;
26
+ * $brand-warning: #f0ad4e !default;
27
+ * $brand-danger: #d9534f !default;
28
+ *
29
+ *
30
+ * //== Scaffolding
31
+ * //
32
+ * //## Settings for some of the most global styles.
33
+ *
34
+ * //** Background color for `<body>`.
35
+ * $body-bg: #fff !default;
36
+ * //** Global text color on `<body>`.
37
+ * $text-color: $gray-dark !default;
38
+ *
39
+ * //** Global textual link color.
40
+ * $link-color: $brand-primary !default;
41
+ * //** Link hover color set via `darken()` function.
42
+ * $link-hover-color: darken($link-color, 15%) !default;
43
+ *
44
+ *
45
+ * //== Typography
46
+ * //
47
+ * //## Font, line-height, and color for body text, headings, and more.
48
+ *
49
+ * $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
50
+ * $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
51
+ * //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
52
+ * $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
53
+ * $font-family-base: $font-family-sans-serif !default;
54
+ *
55
+ * $font-size-base: 14px !default;
56
+ * $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
57
+ * $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
58
+ *
59
+ * $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
60
+ * $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
61
+ * $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
62
+ * $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
63
+ * $font-size-h5: $font-size-base !default;
64
+ * $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
65
+ *
66
+ * //** Unit-less `line-height` for use in components like buttons.
67
+ * $line-height-base: 1.428571429 !default; // 20/14
68
+ * //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
69
+ * $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
70
+ *
71
+ * //** By default, this inherits from the `<body>`.
72
+ * $headings-font-family: inherit !default;
73
+ * $headings-font-weight: 500 !default;
74
+ * $headings-line-height: 1.1 !default;
75
+ * $headings-color: inherit !default;
76
+ *
77
+ *
78
+ * //== Iconography
79
+ * //
80
+ * //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
81
+ *
82
+ * //** Load fonts from this directory.
83
+ * $icon-font-path: "bootstrap/" !default;
84
+ * //** File name for all font files.
85
+ * $icon-font-name: "glyphicons-halflings-regular" !default;
86
+ * //** Element ID within SVG icon file.
87
+ * $icon-font-svg-id: "glyphicons_halflingsregular" !default;
88
+ *
89
+ *
90
+ * //== Components
91
+ * //
92
+ * //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
93
+ *
94
+ * $padding-base-vertical: 6px !default;
95
+ * $padding-base-horizontal: 12px !default;
96
+ *
97
+ * $padding-large-vertical: 10px !default;
98
+ * $padding-large-horizontal: 16px !default;
99
+ *
100
+ * $padding-small-vertical: 5px !default;
101
+ * $padding-small-horizontal: 10px !default;
102
+ *
103
+ * $padding-xs-vertical: 1px !default;
104
+ * $padding-xs-horizontal: 5px !default;
105
+ *
106
+ * $line-height-large: 1.33 !default;
107
+ * $line-height-small: 1.5 !default;
108
+ *
109
+ * $border-radius-base: 4px !default;
110
+ * $border-radius-large: 6px !default;
111
+ * $border-radius-small: 3px !default;
112
+ *
113
+ * //** Global color for active items (e.g., navs or dropdowns).
114
+ * $component-active-color: #fff !default;
115
+ * //** Global background color for active items (e.g., navs or dropdowns).
116
+ * $component-active-bg: $brand-primary !default;
117
+ *
118
+ * //** Width of the `border` for generating carets that indicator dropdowns.
119
+ * $caret-width-base: 4px !default;
120
+ * //** Carets increase slightly in size for larger components.
121
+ * $caret-width-large: 5px !default;
122
+ *
123
+ *
124
+ * //== Tables
125
+ * //
126
+ * //## Customizes the `.table` component with basic values, each used across all table variations.
127
+ *
128
+ * //** Padding for `<th>`s and `<td>`s.
129
+ * $table-cell-padding: 8px !default;
130
+ * //** Padding for cells in `.table-condensed`.
131
+ * $table-condensed-cell-padding: 5px !default;
132
+ *
133
+ * //** Default background color used for all tables.
134
+ * $table-bg: transparent !default;
135
+ * //** Background color used for `.table-striped`.
136
+ * $table-bg-accent: #f9f9f9 !default;
137
+ * //** Background color used for `.table-hover`.
138
+ * $table-bg-hover: #f5f5f5 !default;
139
+ * $table-bg-active: $table-bg-hover !default;
140
+ *
141
+ * //** Border color for table and cell borders.
142
+ * $table-border-color: #ddd !default;
143
+ *
144
+ *
145
+ * //== Buttons
146
+ * //
147
+ * //## For each of Bootstrap's buttons, define text, background and border color.
148
+ *
149
+ * $btn-font-weight: normal !default;
150
+ *
151
+ * $btn-default-color: #333 !default;
152
+ * $btn-default-bg: #fff !default;
153
+ * $btn-default-border: #ccc !default;
154
+ *
155
+ * $btn-primary-color: #fff !default;
156
+ * $btn-primary-bg: $brand-primary !default;
157
+ * $btn-primary-border: darken($btn-primary-bg, 5%) !default;
158
+ *
159
+ * $btn-success-color: #fff !default;
160
+ * $btn-success-bg: $brand-success !default;
161
+ * $btn-success-border: darken($btn-success-bg, 5%) !default;
162
+ *
163
+ * $btn-info-color: #fff !default;
164
+ * $btn-info-bg: $brand-info !default;
165
+ * $btn-info-border: darken($btn-info-bg, 5%) !default;
166
+ *
167
+ * $btn-warning-color: #fff !default;
168
+ * $btn-warning-bg: $brand-warning !default;
169
+ * $btn-warning-border: darken($btn-warning-bg, 5%) !default;
170
+ *
171
+ * $btn-danger-color: #fff !default;
172
+ * $btn-danger-bg: $brand-danger !default;
173
+ * $btn-danger-border: darken($btn-danger-bg, 5%) !default;
174
+ *
175
+ * $btn-link-disabled-color: $gray-light !default;
176
+ *
177
+ *
178
+ * //== Forms
179
+ * //
180
+ * //##
181
+ *
182
+ * //** `<input>` background color
183
+ * $input-bg: #fff !default;
184
+ * //** `<input disabled>` background color
185
+ * $input-bg-disabled: $gray-lighter !default;
186
+ *
187
+ * //** Text color for `<input>`s
188
+ * $input-color: $gray !default;
189
+ * //** `<input>` border color
190
+ * $input-border: #ccc !default;
191
+ * //** `<input>` border radius
192
+ * $input-border-radius: $border-radius-base !default;
193
+ * //** Border color for inputs on focus
194
+ * $input-border-focus: #66afe9 !default;
195
+ *
196
+ * //** Placeholder text color
197
+ * $input-color-placeholder: $gray-light !default;
198
+ *
199
+ * //** Default `.form-control` height
200
+ * $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
201
+ * //** Large `.form-control` height
202
+ * $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
203
+ * //** Small `.form-control` height
204
+ * $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
205
+ *
206
+ * $legend-color: $gray-dark !default;
207
+ * $legend-border-color: #e5e5e5 !default;
208
+ *
209
+ * //** Background color for textual input addons
210
+ * $input-group-addon-bg: $gray-lighter !default;
211
+ * //** Border color for textual input addons
212
+ * $input-group-addon-border-color: $input-border !default;
213
+ *
214
+ *
215
+ * //== Dropdowns
216
+ * //
217
+ * //## Dropdown menu container and contents.
218
+ *
219
+ * //** Background for the dropdown menu.
220
+ * $dropdown-bg: #fff !default;
221
+ * //** Dropdown menu `border-color`.
222
+ * $dropdown-border: rgba(0,0,0,.15) !default;
223
+ * //** Dropdown menu `border-color` **for IE8**.
224
+ * $dropdown-fallback-border: #ccc !default;
225
+ * //** Divider color for between dropdown items.
226
+ * $dropdown-divider-bg: #e5e5e5 !default;
227
+ *
228
+ * //** Dropdown link text color.
229
+ * $dropdown-link-color: $gray-dark !default;
230
+ * //** Hover color for dropdown links.
231
+ * $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
232
+ * //** Hover background for dropdown links.
233
+ * $dropdown-link-hover-bg: #f5f5f5 !default;
234
+ *
235
+ * //** Active dropdown menu item text color.
236
+ * $dropdown-link-active-color: $component-active-color !default;
237
+ * //** Active dropdown menu item background color.
238
+ * $dropdown-link-active-bg: $component-active-bg !default;
239
+ *
240
+ * //** Disabled dropdown menu item background color.
241
+ * $dropdown-link-disabled-color: $gray-light !default;
242
+ *
243
+ * //** Text color for headers within dropdown menus.
244
+ * $dropdown-header-color: $gray-light !default;
245
+ *
246
+ * //** Deprecated `$dropdown-caret-color` as of v3.1.0
247
+ * $dropdown-caret-color: #000 !default;
248
+ *
249
+ *
250
+ * //-- Z-index master list
251
+ * //
252
+ * // Warning: Avoid customizing these values. They're used for a bird's eye view
253
+ * // of components dependent on the z-axis and are designed to all work together.
254
+ * //
255
+ * // Note: These variables are not generated into the Customizer.
256
+ *
257
+ * $zindex-navbar: 1000 !default;
258
+ * $zindex-dropdown: 1000 !default;
259
+ * $zindex-popover: 1060 !default;
260
+ * $zindex-tooltip: 1070 !default;
261
+ * $zindex-navbar-fixed: 1030 !default;
262
+ * $zindex-modal-background: 1040 !default;
263
+ * $zindex-modal: 1050 !default;
264
+ *
265
+ *
266
+ * //== Media queries breakpoints
267
+ * //
268
+ * //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
269
+ *
270
+ * // Extra small screen / phone
271
+ * //** Deprecated `$screen-xs` as of v3.0.1
272
+ * $screen-xs: 480px !default;
273
+ * //** Deprecated `$screen-xs-min` as of v3.2.0
274
+ * $screen-xs-min: $screen-xs !default;
275
+ * //** Deprecated `$screen-phone` as of v3.0.1
276
+ * $screen-phone: $screen-xs-min !default;
277
+ *
278
+ * // Small screen / tablet
279
+ * //** Deprecated `$screen-sm` as of v3.0.1
280
+ * $screen-sm: 768px !default;
281
+ * $screen-sm-min: $screen-sm !default;
282
+ * //** Deprecated `$screen-tablet` as of v3.0.1
283
+ * $screen-tablet: $screen-sm-min !default;
284
+ *
285
+ * // Medium screen / desktop
286
+ * //** Deprecated `$screen-md` as of v3.0.1
287
+ * $screen-md: 992px !default;
288
+ * $screen-md-min: $screen-md !default;
289
+ * //** Deprecated `$screen-desktop` as of v3.0.1
290
+ * $screen-desktop: $screen-md-min !default;
291
+ *
292
+ * // Large screen / wide desktop
293
+ * //** Deprecated `$screen-lg` as of v3.0.1
294
+ * $screen-lg: 1200px !default;
295
+ * $screen-lg-min: $screen-lg !default;
296
+ * //** Deprecated `$screen-lg-desktop` as of v3.0.1
297
+ * $screen-lg-desktop: $screen-lg-min !default;
298
+ *
299
+ * // So media queries don't overlap when required, provide a maximum
300
+ * $screen-xs-max: ($screen-sm-min - 1) !default;
301
+ * $screen-sm-max: ($screen-md-min - 1) !default;
302
+ * $screen-md-max: ($screen-lg-min - 1) !default;
303
+ *
304
+ *
305
+ * //== Grid system
306
+ * //
307
+ * //## Define your custom responsive grid.
308
+ *
309
+ * //** Number of columns in the grid.
310
+ * $grid-columns: 12 !default;
311
+ * //** Padding between columns. Gets divided in half for the left and right.
312
+ * $grid-gutter-width: 30px !default;
313
+ * // Navbar collapse
314
+ * //** Point at which the navbar becomes uncollapsed.
315
+ * $grid-float-breakpoint: $screen-sm-min !default;
316
+ * //** Point at which the navbar begins collapsing.
317
+ * $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
318
+ *
319
+ *
320
+ * //== Container sizes
321
+ * //
322
+ * //## Define the maximum width of `.container` for different screen sizes.
323
+ *
324
+ * // Small screen / tablet
325
+ * $container-tablet: ((720px + $grid-gutter-width)) !default;
326
+ * //** For `$screen-sm-min` and up.
327
+ * $container-sm: $container-tablet !default;
328
+ *
329
+ * // Medium screen / desktop
330
+ * $container-desktop: ((940px + $grid-gutter-width)) !default;
331
+ * //** For `$screen-md-min` and up.
332
+ * $container-md: $container-desktop !default;
333
+ *
334
+ * // Large screen / wide desktop
335
+ * $container-large-desktop: ((1140px + $grid-gutter-width)) !default;
336
+ * //** For `$screen-lg-min` and up.
337
+ * $container-lg: $container-large-desktop !default;
338
+ *
339
+ *
340
+ * //== Navbar
341
+ * //
342
+ * //##
343
+ *
344
+ * // Basics of a navbar
345
+ * $navbar-height: 50px !default;
346
+ * $navbar-margin-bottom: $line-height-computed !default;
347
+ * $navbar-border-radius: $border-radius-base !default;
348
+ * $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
349
+ * $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
350
+ * $navbar-collapse-max-height: 340px !default;
351
+ *
352
+ * $navbar-default-color: #777 !default;
353
+ * $navbar-default-bg: #f8f8f8 !default;
354
+ * $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
355
+ *
356
+ * // Navbar links
357
+ * $navbar-default-link-color: #777 !default;
358
+ * $navbar-default-link-hover-color: #333 !default;
359
+ * $navbar-default-link-hover-bg: transparent !default;
360
+ * $navbar-default-link-active-color: #555 !default;
361
+ * $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
362
+ * $navbar-default-link-disabled-color: #ccc !default;
363
+ * $navbar-default-link-disabled-bg: transparent !default;
364
+ *
365
+ * // Navbar brand label
366
+ * $navbar-default-brand-color: $navbar-default-link-color !default;
367
+ * $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
368
+ * $navbar-default-brand-hover-bg: transparent !default;
369
+ *
370
+ * // Navbar toggle
371
+ * $navbar-default-toggle-hover-bg: #ddd !default;
372
+ * $navbar-default-toggle-icon-bar-bg: #888 !default;
373
+ * $navbar-default-toggle-border-color: #ddd !default;
374
+ *
375
+ *
376
+ * // Inverted navbar
377
+ * // Reset inverted navbar basics
378
+ * $navbar-inverse-color: $gray-light !default;
379
+ * $navbar-inverse-bg: #222 !default;
380
+ * $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
381
+ *
382
+ * // Inverted navbar links
383
+ * $navbar-inverse-link-color: $gray-light !default;
384
+ * $navbar-inverse-link-hover-color: #fff !default;
385
+ * $navbar-inverse-link-hover-bg: transparent !default;
386
+ * $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
387
+ * $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
388
+ * $navbar-inverse-link-disabled-color: #444 !default;
389
+ * $navbar-inverse-link-disabled-bg: transparent !default;
390
+ *
391
+ * // Inverted navbar brand label
392
+ * $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
393
+ * $navbar-inverse-brand-hover-color: #fff !default;
394
+ * $navbar-inverse-brand-hover-bg: transparent !default;
395
+ *
396
+ * // Inverted navbar toggle
397
+ * $navbar-inverse-toggle-hover-bg: #333 !default;
398
+ * $navbar-inverse-toggle-icon-bar-bg: #fff !default;
399
+ * $navbar-inverse-toggle-border-color: #333 !default;
400
+ *
401
+ *
402
+ * //== Navs
403
+ * //
404
+ * //##
405
+ *
406
+ * //=== Shared nav styles
407
+ * $nav-link-padding: 10px 15px !default;
408
+ * $nav-link-hover-bg: $gray-lighter !default;
409
+ *
410
+ * $nav-disabled-link-color: $gray-light !default;
411
+ * $nav-disabled-link-hover-color: $gray-light !default;
412
+ *
413
+ * $nav-open-link-hover-color: #fff !default;
414
+ *
415
+ * //== Tabs
416
+ * $nav-tabs-border-color: #ddd !default;
417
+ *
418
+ * $nav-tabs-link-hover-border-color: $gray-lighter !default;
419
+ *
420
+ * $nav-tabs-active-link-hover-bg: $body-bg !default;
421
+ * $nav-tabs-active-link-hover-color: $gray !default;
422
+ * $nav-tabs-active-link-hover-border-color: #ddd !default;
423
+ *
424
+ * $nav-tabs-justified-link-border-color: #ddd !default;
425
+ * $nav-tabs-justified-active-link-border-color: $body-bg !default;
426
+ *
427
+ * //== Pills
428
+ * $nav-pills-border-radius: $border-radius-base !default;
429
+ * $nav-pills-active-link-hover-bg: $component-active-bg !default;
430
+ * $nav-pills-active-link-hover-color: $component-active-color !default;
431
+ *
432
+ *
433
+ * //== Pagination
434
+ * //
435
+ * //##
436
+ *
437
+ * $pagination-color: $link-color !default;
438
+ * $pagination-bg: #fff !default;
439
+ * $pagination-border: #ddd !default;
440
+ *
441
+ * $pagination-hover-color: $link-hover-color !default;
442
+ * $pagination-hover-bg: $gray-lighter !default;
443
+ * $pagination-hover-border: #ddd !default;
444
+ *
445
+ * $pagination-active-color: #fff !default;
446
+ * $pagination-active-bg: $brand-primary !default;
447
+ * $pagination-active-border: $brand-primary !default;
448
+ *
449
+ * $pagination-disabled-color: $gray-light !default;
450
+ * $pagination-disabled-bg: #fff !default;
451
+ * $pagination-disabled-border: #ddd !default;
452
+ *
453
+ *
454
+ * //== Pager
455
+ * //
456
+ * //##
457
+ *
458
+ * $pager-bg: $pagination-bg !default;
459
+ * $pager-border: $pagination-border !default;
460
+ * $pager-border-radius: 15px !default;
461
+ *
462
+ * $pager-hover-bg: $pagination-hover-bg !default;
463
+ *
464
+ * $pager-active-bg: $pagination-active-bg !default;
465
+ * $pager-active-color: $pagination-active-color !default;
466
+ *
467
+ * $pager-disabled-color: $pagination-disabled-color !default;
468
+ *
469
+ *
470
+ * //== Jumbotron
471
+ * //
472
+ * //##
473
+ *
474
+ * $jumbotron-padding: 30px !default;
475
+ * $jumbotron-color: inherit !default;
476
+ * $jumbotron-bg: $gray-lighter !default;
477
+ * $jumbotron-heading-color: inherit !default;
478
+ * $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
479
+ *
480
+ *
481
+ * //== Form states and alerts
482
+ * //
483
+ * //## Define colors for form feedback states and, by default, alerts.
484
+ *
485
+ * $state-success-text: #3c763d !default;
486
+ * $state-success-bg: #dff0d8 !default;
487
+ * $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
488
+ *
489
+ * $state-info-text: #31708f !default;
490
+ * $state-info-bg: #d9edf7 !default;
491
+ * $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
492
+ *
493
+ * $state-warning-text: #8a6d3b !default;
494
+ * $state-warning-bg: #fcf8e3 !default;
495
+ * $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
496
+ *
497
+ * $state-danger-text: #a94442 !default;
498
+ * $state-danger-bg: #f2dede !default;
499
+ * $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
500
+ *
501
+ *
502
+ * //== Tooltips
503
+ * //
504
+ * //##
505
+ *
506
+ * //** Tooltip max width
507
+ * $tooltip-max-width: 200px !default;
508
+ * //** Tooltip text color
509
+ * $tooltip-color: #fff !default;
510
+ * //** Tooltip background color
511
+ * $tooltip-bg: #000 !default;
512
+ * $tooltip-opacity: .9 !default;
513
+ *
514
+ * //** Tooltip arrow width
515
+ * $tooltip-arrow-width: 5px !default;
516
+ * //** Tooltip arrow color
517
+ * $tooltip-arrow-color: $tooltip-bg !default;
518
+ *
519
+ *
520
+ * //== Popovers
521
+ * //
522
+ * //##
523
+ *
524
+ * //** Popover body background color
525
+ * $popover-bg: #fff !default;
526
+ * //** Popover maximum width
527
+ * $popover-max-width: 276px !default;
528
+ * //** Popover border color
529
+ * $popover-border-color: rgba(0,0,0,.2) !default;
530
+ * //** Popover fallback border color
531
+ * $popover-fallback-border-color: #ccc !default;
532
+ *
533
+ * //** Popover title background color
534
+ * $popover-title-bg: darken($popover-bg, 3%) !default;
535
+ *
536
+ * //** Popover arrow width
537
+ * $popover-arrow-width: 10px !default;
538
+ * //** Popover arrow color
539
+ * $popover-arrow-color: #fff !default;
540
+ *
541
+ * //** Popover outer arrow width
542
+ * $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
543
+ * //** Popover outer arrow color
544
+ * $popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
545
+ * //** Popover outer arrow fallback color
546
+ * $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
547
+ *
548
+ *
549
+ * //== Labels
550
+ * //
551
+ * //##
552
+ *
553
+ * //** Default label background color
554
+ * $label-default-bg: $gray-light !default;
555
+ * //** Primary label background color
556
+ * $label-primary-bg: $brand-primary !default;
557
+ * //** Success label background color
558
+ * $label-success-bg: $brand-success !default;
559
+ * //** Info label background color
560
+ * $label-info-bg: $brand-info !default;
561
+ * //** Warning label background color
562
+ * $label-warning-bg: $brand-warning !default;
563
+ * //** Danger label background color
564
+ * $label-danger-bg: $brand-danger !default;
565
+ *
566
+ * //** Default label text color
567
+ * $label-color: #fff !default;
568
+ * //** Default text color of a linked label
569
+ * $label-link-hover-color: #fff !default;
570
+ *
571
+ *
572
+ * //== Modals
573
+ * //
574
+ * //##
575
+ *
576
+ * //** Padding applied to the modal body
577
+ * $modal-inner-padding: 15px !default;
578
+ *
579
+ * //** Padding applied to the modal title
580
+ * $modal-title-padding: 15px !default;
581
+ * //** Modal title line-height
582
+ * $modal-title-line-height: $line-height-base !default;
583
+ *
584
+ * //** Background color of modal content area
585
+ * $modal-content-bg: #fff !default;
586
+ * //** Modal content border color
587
+ * $modal-content-border-color: rgba(0,0,0,.2) !default;
588
+ * //** Modal content border color **for IE8**
589
+ * $modal-content-fallback-border-color: #999 !default;
590
+ *
591
+ * //** Modal backdrop background color
592
+ * $modal-backdrop-bg: #000 !default;
593
+ * //** Modal backdrop opacity
594
+ * $modal-backdrop-opacity: .5 !default;
595
+ * //** Modal header border color
596
+ * $modal-header-border-color: #e5e5e5 !default;
597
+ * //** Modal footer border color
598
+ * $modal-footer-border-color: $modal-header-border-color !default;
599
+ *
600
+ * $modal-lg: 900px !default;
601
+ * $modal-md: 600px !default;
602
+ * $modal-sm: 300px !default;
603
+ *
604
+ *
605
+ * //== Alerts
606
+ * //
607
+ * //## Define alert colors, border radius, and padding.
608
+ *
609
+ * $alert-padding: 15px !default;
610
+ * $alert-border-radius: $border-radius-base !default;
611
+ * $alert-link-font-weight: bold !default;
612
+ *
613
+ * $alert-success-bg: $state-success-bg !default;
614
+ * $alert-success-text: $state-success-text !default;
615
+ * $alert-success-border: $state-success-border !default;
616
+ *
617
+ * $alert-info-bg: $state-info-bg !default;
618
+ * $alert-info-text: $state-info-text !default;
619
+ * $alert-info-border: $state-info-border !default;
620
+ *
621
+ * $alert-warning-bg: $state-warning-bg !default;
622
+ * $alert-warning-text: $state-warning-text !default;
623
+ * $alert-warning-border: $state-warning-border !default;
624
+ *
625
+ * $alert-danger-bg: $state-danger-bg !default;
626
+ * $alert-danger-text: $state-danger-text !default;
627
+ * $alert-danger-border: $state-danger-border !default;
628
+ *
629
+ *
630
+ * //== Progress bars
631
+ * //
632
+ * //##
633
+ *
634
+ * //** Background color of the whole progress component
635
+ * $progress-bg: #f5f5f5 !default;
636
+ * //** Progress bar text color
637
+ * $progress-bar-color: #fff !default;
638
+ *
639
+ * //** Default progress bar color
640
+ * $progress-bar-bg: $brand-primary !default;
641
+ * //** Success progress bar color
642
+ * $progress-bar-success-bg: $brand-success !default;
643
+ * //** Warning progress bar color
644
+ * $progress-bar-warning-bg: $brand-warning !default;
645
+ * //** Danger progress bar color
646
+ * $progress-bar-danger-bg: $brand-danger !default;
647
+ * //** Info progress bar color
648
+ * $progress-bar-info-bg: $brand-info !default;
649
+ *
650
+ *
651
+ * //== List group
652
+ * //
653
+ * //##
654
+ *
655
+ * //** Background color on `.list-group-item`
656
+ * $list-group-bg: #fff !default;
657
+ * //** `.list-group-item` border color
658
+ * $list-group-border: #ddd !default;
659
+ * //** List group border radius
660
+ * $list-group-border-radius: $border-radius-base !default;
661
+ *
662
+ * //** Background color of single list items on hover
663
+ * $list-group-hover-bg: #f5f5f5 !default;
664
+ * //** Text color of active list items
665
+ * $list-group-active-color: $component-active-color !default;
666
+ * //** Background color of active list items
667
+ * $list-group-active-bg: $component-active-bg !default;
668
+ * //** Border color of active list elements
669
+ * $list-group-active-border: $list-group-active-bg !default;
670
+ * //** Text color for content within active list items
671
+ * $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
672
+ *
673
+ * //** Text color of disabled list items
674
+ * $list-group-disabled-color: $gray-light !default;
675
+ * //** Background color of disabled list items
676
+ * $list-group-disabled-bg: $gray-lighter !default;
677
+ * //** Text color for content within disabled list items
678
+ * $list-group-disabled-text-color: $list-group-disabled-color !default;
679
+ *
680
+ * $list-group-link-color: #555 !default;
681
+ * $list-group-link-hover-color: $list-group-link-color !default;
682
+ * $list-group-link-heading-color: #333 !default;
683
+ *
684
+ *
685
+ * //== Panels
686
+ * //
687
+ * //##
688
+ *
689
+ * $panel-bg: #fff !default;
690
+ * $panel-body-padding: 15px !default;
691
+ * $panel-heading-padding: 10px 15px !default;
692
+ * $panel-footer-padding: $panel-heading-padding !default;
693
+ * $panel-border-radius: $border-radius-base !default;
694
+ *
695
+ * //** Border color for elements within panels
696
+ * $panel-inner-border: #ddd !default;
697
+ * $panel-footer-bg: #f5f5f5 !default;
698
+ *
699
+ * $panel-default-text: $gray-dark !default;
700
+ * $panel-default-border: #ddd !default;
701
+ * $panel-default-heading-bg: #f5f5f5 !default;
702
+ *
703
+ * $panel-primary-text: #fff !default;
704
+ * $panel-primary-border: $brand-primary !default;
705
+ * $panel-primary-heading-bg: $brand-primary !default;
706
+ *
707
+ * $panel-success-text: $state-success-text !default;
708
+ * $panel-success-border: $state-success-border !default;
709
+ * $panel-success-heading-bg: $state-success-bg !default;
710
+ *
711
+ * $panel-info-text: $state-info-text !default;
712
+ * $panel-info-border: $state-info-border !default;
713
+ * $panel-info-heading-bg: $state-info-bg !default;
714
+ *
715
+ * $panel-warning-text: $state-warning-text !default;
716
+ * $panel-warning-border: $state-warning-border !default;
717
+ * $panel-warning-heading-bg: $state-warning-bg !default;
718
+ *
719
+ * $panel-danger-text: $state-danger-text !default;
720
+ * $panel-danger-border: $state-danger-border !default;
721
+ * $panel-danger-heading-bg: $state-danger-bg !default;
722
+ *
723
+ *
724
+ * //== Thumbnails
725
+ * //
726
+ * //##
727
+ *
728
+ * //** Padding around the thumbnail image
729
+ * $thumbnail-padding: 4px !default;
730
+ * //** Thumbnail background color
731
+ * $thumbnail-bg: $body-bg !default;
732
+ * //** Thumbnail border color
733
+ * $thumbnail-border: #ddd !default;
734
+ * //** Thumbnail border radius
735
+ * $thumbnail-border-radius: $border-radius-base !default;
736
+ *
737
+ * //** Custom text color for thumbnail captions
738
+ * $thumbnail-caption-color: $text-color !default;
739
+ * //** Padding around the thumbnail caption
740
+ * $thumbnail-caption-padding: 9px !default;
741
+ *
742
+ *
743
+ * //== Wells
744
+ * //
745
+ * //##
746
+ *
747
+ * $well-bg: #f5f5f5 !default;
748
+ * $well-border: darken($well-bg, 7%) !default;
749
+ *
750
+ *
751
+ * //== Badges
752
+ * //
753
+ * //##
754
+ *
755
+ * $badge-color: #fff !default;
756
+ * //** Linked badge text color on hover
757
+ * $badge-link-hover-color: #fff !default;
758
+ * $badge-bg: $gray-light !default;
759
+ *
760
+ * //** Badge text color in active nav link
761
+ * $badge-active-color: $link-color !default;
762
+ * //** Badge background color in active nav link
763
+ * $badge-active-bg: #fff !default;
764
+ *
765
+ * $badge-font-weight: bold !default;
766
+ * $badge-line-height: 1 !default;
767
+ * $badge-border-radius: 10px !default;
768
+ *
769
+ *
770
+ * //== Breadcrumbs
771
+ * //
772
+ * //##
773
+ *
774
+ * $breadcrumb-padding-vertical: 8px !default;
775
+ * $breadcrumb-padding-horizontal: 15px !default;
776
+ * //** Breadcrumb background color
777
+ * $breadcrumb-bg: #f5f5f5 !default;
778
+ * //** Breadcrumb text color
779
+ * $breadcrumb-color: #ccc !default;
780
+ * //** Text color of current page in the breadcrumb
781
+ * $breadcrumb-active-color: $gray-light !default;
782
+ * //** Textual separator for between breadcrumb elements
783
+ * $breadcrumb-separator: "/" !default;
784
+ *
785
+ *
786
+ * //== Carousel
787
+ * //
788
+ * //##
789
+ *
790
+ * $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
791
+ *
792
+ * $carousel-control-color: #fff !default;
793
+ * $carousel-control-width: 15% !default;
794
+ * $carousel-control-opacity: .5 !default;
795
+ * $carousel-control-font-size: 20px !default;
796
+ *
797
+ * $carousel-indicator-active-bg: #fff !default;
798
+ * $carousel-indicator-border-color: #fff !default;
799
+ *
800
+ * $carousel-caption-color: #fff !default;
801
+ *
802
+ *
803
+ * //== Close
804
+ * //
805
+ * //##
806
+ *
807
+ * $close-font-weight: bold !default;
808
+ * $close-color: #000 !default;
809
+ * $close-text-shadow: 0 1px 0 #fff !default;
810
+ *
811
+ *
812
+ * //== Code
813
+ * //
814
+ * //##
815
+ *
816
+ * $code-color: #c7254e !default;
817
+ * $code-bg: #f9f2f4 !default;
818
+ *
819
+ * $kbd-color: #fff !default;
820
+ * $kbd-bg: #333 !default;
821
+ *
822
+ * $pre-bg: #f5f5f5 !default;
823
+ * $pre-color: $gray-dark !default;
824
+ * $pre-border-color: #ccc !default;
825
+ * $pre-scrollable-max-height: 340px !default;
826
+ *
827
+ *
828
+ * //== Type
829
+ * //
830
+ * //##
831
+ *
832
+ * //** Horizontal offset for forms and lists.
833
+ * $component-offset-horizontal: 180px !default;
834
+ * //** Text muted color
835
+ * $text-muted: $gray-light !default;
836
+ * //** Abbreviations and acronyms border color
837
+ * $abbr-border-color: $gray-light !default;
838
+ * //** Headings small color
839
+ * $headings-small-color: $gray-light !default;
840
+ * //** Blockquote small color
841
+ * $blockquote-small-color: $gray-light !default;
842
+ * //** Blockquote font size
843
+ * $blockquote-font-size: ($font-size-base * 1.25) !default;
844
+ * //** Blockquote border color
845
+ * $blockquote-border-color: $gray-lighter !default;
846
+ * //** Page header border color
847
+ * $page-header-border-color: $gray-lighter !default;
848
+ * //** Width of horizontal description list titles
849
+ * $dl-horizontal-offset: $component-offset-horizontal !default;
850
+ * //** Horizontal line color.
851
+ * $hr-border: $gray-lighter !default; */:ET:
852
+ @type: silent;[:
853
+ @linei:
854
+ // // defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
855
+ // // in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
856
+ // $bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
857
+ // //
858
+ // // Variables
859
+ // // --------------------------------------------------
860
+ //
861
+ //
862
+ // //== Colors
863
+ // //
864
+ // //## Gray and brand colors for use across Bootstrap.
865
+ //
866
+ // $gray-darker: lighten(#000, 13.5%) !default; // #222
867
+ // $gray-dark: lighten(#000, 20%) !default; // #333
868
+ // $gray: lighten(#000, 33.5%) !default; // #555
869
+ // $gray-light: lighten(#000, 46.7%) !default; // #777
870
+ // $gray-lighter: lighten(#000, 93.5%) !default; // #eee
871
+ //
872
+ // $brand-primary: #428bca !default;
873
+ // $brand-success: #5cb85c !default;
874
+ // $brand-info: #5bc0de !default;
875
+ // $brand-warning: #f0ad4e !default;
876
+ // $brand-danger: #d9534f !default;
877
+ //
878
+ //
879
+ // //== Scaffolding
880
+ // //
881
+ // //## Settings for some of the most global styles.
882
+ //
883
+ // //** Background color for `<body>`.
884
+ // $body-bg: #fff !default;
885
+ // //** Global text color on `<body>`.
886
+ // $text-color: $gray-dark !default;
887
+ //
888
+ // //** Global textual link color.
889
+ // $link-color: $brand-primary !default;
890
+ // //** Link hover color set via `darken()` function.
891
+ // $link-hover-color: darken($link-color, 15%) !default;
892
+ //
893
+ //
894
+ // //== Typography
895
+ // //
896
+ // //## Font, line-height, and color for body text, headings, and more.
897
+ //
898
+ // $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
899
+ // $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
900
+ // //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
901
+ // $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
902
+ // $font-family-base: $font-family-sans-serif !default;
903
+ //
904
+ // $font-size-base: 14px !default;
905
+ // $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
906
+ // $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
907
+ //
908
+ // $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
909
+ // $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
910
+ // $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
911
+ // $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
912
+ // $font-size-h5: $font-size-base !default;
913
+ // $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
914
+ //
915
+ // //** Unit-less `line-height` for use in components like buttons.
916
+ // $line-height-base: 1.428571429 !default; // 20/14
917
+ // //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
918
+ // $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
919
+ //
920
+ // //** By default, this inherits from the `<body>`.
921
+ // $headings-font-family: inherit !default;
922
+ // $headings-font-weight: 500 !default;
923
+ // $headings-line-height: 1.1 !default;
924
+ // $headings-color: inherit !default;
925
+ //
926
+ //
927
+ // //== Iconography
928
+ // //
929
+ // //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
930
+ //
931
+ // //** Load fonts from this directory.
932
+ // $icon-font-path: "bootstrap/" !default;
933
+ // //** File name for all font files.
934
+ // $icon-font-name: "glyphicons-halflings-regular" !default;
935
+ // //** Element ID within SVG icon file.
936
+ // $icon-font-svg-id: "glyphicons_halflingsregular" !default;
937
+ //
938
+ //
939
+ // //== Components
940
+ // //
941
+ // //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
942
+ //
943
+ // $padding-base-vertical: 6px !default;
944
+ // $padding-base-horizontal: 12px !default;
945
+ //
946
+ // $padding-large-vertical: 10px !default;
947
+ // $padding-large-horizontal: 16px !default;
948
+ //
949
+ // $padding-small-vertical: 5px !default;
950
+ // $padding-small-horizontal: 10px !default;
951
+ //
952
+ // $padding-xs-vertical: 1px !default;
953
+ // $padding-xs-horizontal: 5px !default;
954
+ //
955
+ // $line-height-large: 1.33 !default;
956
+ // $line-height-small: 1.5 !default;
957
+ //
958
+ // $border-radius-base: 4px !default;
959
+ // $border-radius-large: 6px !default;
960
+ // $border-radius-small: 3px !default;
961
+ //
962
+ // //** Global color for active items (e.g., navs or dropdowns).
963
+ // $component-active-color: #fff !default;
964
+ // //** Global background color for active items (e.g., navs or dropdowns).
965
+ // $component-active-bg: $brand-primary !default;
966
+ //
967
+ // //** Width of the `border` for generating carets that indicator dropdowns.
968
+ // $caret-width-base: 4px !default;
969
+ // //** Carets increase slightly in size for larger components.
970
+ // $caret-width-large: 5px !default;
971
+ //
972
+ //
973
+ // //== Tables
974
+ // //
975
+ // //## Customizes the `.table` component with basic values, each used across all table variations.
976
+ //
977
+ // //** Padding for `<th>`s and `<td>`s.
978
+ // $table-cell-padding: 8px !default;
979
+ // //** Padding for cells in `.table-condensed`.
980
+ // $table-condensed-cell-padding: 5px !default;
981
+ //
982
+ // //** Default background color used for all tables.
983
+ // $table-bg: transparent !default;
984
+ // //** Background color used for `.table-striped`.
985
+ // $table-bg-accent: #f9f9f9 !default;
986
+ // //** Background color used for `.table-hover`.
987
+ // $table-bg-hover: #f5f5f5 !default;
988
+ // $table-bg-active: $table-bg-hover !default;
989
+ //
990
+ // //** Border color for table and cell borders.
991
+ // $table-border-color: #ddd !default;
992
+ //
993
+ //
994
+ // //== Buttons
995
+ // //
996
+ // //## For each of Bootstrap's buttons, define text, background and border color.
997
+ //
998
+ // $btn-font-weight: normal !default;
999
+ //
1000
+ // $btn-default-color: #333 !default;
1001
+ // $btn-default-bg: #fff !default;
1002
+ // $btn-default-border: #ccc !default;
1003
+ //
1004
+ // $btn-primary-color: #fff !default;
1005
+ // $btn-primary-bg: $brand-primary !default;
1006
+ // $btn-primary-border: darken($btn-primary-bg, 5%) !default;
1007
+ //
1008
+ // $btn-success-color: #fff !default;
1009
+ // $btn-success-bg: $brand-success !default;
1010
+ // $btn-success-border: darken($btn-success-bg, 5%) !default;
1011
+ //
1012
+ // $btn-info-color: #fff !default;
1013
+ // $btn-info-bg: $brand-info !default;
1014
+ // $btn-info-border: darken($btn-info-bg, 5%) !default;
1015
+ //
1016
+ // $btn-warning-color: #fff !default;
1017
+ // $btn-warning-bg: $brand-warning !default;
1018
+ // $btn-warning-border: darken($btn-warning-bg, 5%) !default;
1019
+ //
1020
+ // $btn-danger-color: #fff !default;
1021
+ // $btn-danger-bg: $brand-danger !default;
1022
+ // $btn-danger-border: darken($btn-danger-bg, 5%) !default;
1023
+ //
1024
+ // $btn-link-disabled-color: $gray-light !default;
1025
+ //
1026
+ //
1027
+ // //== Forms
1028
+ // //
1029
+ // //##
1030
+ //
1031
+ // //** `<input>` background color
1032
+ // $input-bg: #fff !default;
1033
+ // //** `<input disabled>` background color
1034
+ // $input-bg-disabled: $gray-lighter !default;
1035
+ //
1036
+ // //** Text color for `<input>`s
1037
+ // $input-color: $gray !default;
1038
+ // //** `<input>` border color
1039
+ // $input-border: #ccc !default;
1040
+ // //** `<input>` border radius
1041
+ // $input-border-radius: $border-radius-base !default;
1042
+ // //** Border color for inputs on focus
1043
+ // $input-border-focus: #66afe9 !default;
1044
+ //
1045
+ // //** Placeholder text color
1046
+ // $input-color-placeholder: $gray-light !default;
1047
+ //
1048
+ // //** Default `.form-control` height
1049
+ // $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
1050
+ // //** Large `.form-control` height
1051
+ // $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
1052
+ // //** Small `.form-control` height
1053
+ // $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
1054
+ //
1055
+ // $legend-color: $gray-dark !default;
1056
+ // $legend-border-color: #e5e5e5 !default;
1057
+ //
1058
+ // //** Background color for textual input addons
1059
+ // $input-group-addon-bg: $gray-lighter !default;
1060
+ // //** Border color for textual input addons
1061
+ // $input-group-addon-border-color: $input-border !default;
1062
+ //
1063
+ //
1064
+ // //== Dropdowns
1065
+ // //
1066
+ // //## Dropdown menu container and contents.
1067
+ //
1068
+ // //** Background for the dropdown menu.
1069
+ // $dropdown-bg: #fff !default;
1070
+ // //** Dropdown menu `border-color`.
1071
+ // $dropdown-border: rgba(0,0,0,.15) !default;
1072
+ // //** Dropdown menu `border-color` **for IE8**.
1073
+ // $dropdown-fallback-border: #ccc !default;
1074
+ // //** Divider color for between dropdown items.
1075
+ // $dropdown-divider-bg: #e5e5e5 !default;
1076
+ //
1077
+ // //** Dropdown link text color.
1078
+ // $dropdown-link-color: $gray-dark !default;
1079
+ // //** Hover color for dropdown links.
1080
+ // $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
1081
+ // //** Hover background for dropdown links.
1082
+ // $dropdown-link-hover-bg: #f5f5f5 !default;
1083
+ //
1084
+ // //** Active dropdown menu item text color.
1085
+ // $dropdown-link-active-color: $component-active-color !default;
1086
+ // //** Active dropdown menu item background color.
1087
+ // $dropdown-link-active-bg: $component-active-bg !default;
1088
+ //
1089
+ // //** Disabled dropdown menu item background color.
1090
+ // $dropdown-link-disabled-color: $gray-light !default;
1091
+ //
1092
+ // //** Text color for headers within dropdown menus.
1093
+ // $dropdown-header-color: $gray-light !default;
1094
+ //
1095
+ // //** Deprecated `$dropdown-caret-color` as of v3.1.0
1096
+ // $dropdown-caret-color: #000 !default;
1097
+ //
1098
+ //
1099
+ // //-- Z-index master list
1100
+ // //
1101
+ // // Warning: Avoid customizing these values. They're used for a bird's eye view
1102
+ // // of components dependent on the z-axis and are designed to all work together.
1103
+ // //
1104
+ // // Note: These variables are not generated into the Customizer.
1105
+ //
1106
+ // $zindex-navbar: 1000 !default;
1107
+ // $zindex-dropdown: 1000 !default;
1108
+ // $zindex-popover: 1060 !default;
1109
+ // $zindex-tooltip: 1070 !default;
1110
+ // $zindex-navbar-fixed: 1030 !default;
1111
+ // $zindex-modal-background: 1040 !default;
1112
+ // $zindex-modal: 1050 !default;
1113
+ //
1114
+ //
1115
+ // //== Media queries breakpoints
1116
+ // //
1117
+ // //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
1118
+ //
1119
+ // // Extra small screen / phone
1120
+ // //** Deprecated `$screen-xs` as of v3.0.1
1121
+ // $screen-xs: 480px !default;
1122
+ // //** Deprecated `$screen-xs-min` as of v3.2.0
1123
+ // $screen-xs-min: $screen-xs !default;
1124
+ // //** Deprecated `$screen-phone` as of v3.0.1
1125
+ // $screen-phone: $screen-xs-min !default;
1126
+ //
1127
+ // // Small screen / tablet
1128
+ // //** Deprecated `$screen-sm` as of v3.0.1
1129
+ // $screen-sm: 768px !default;
1130
+ // $screen-sm-min: $screen-sm !default;
1131
+ // //** Deprecated `$screen-tablet` as of v3.0.1
1132
+ // $screen-tablet: $screen-sm-min !default;
1133
+ //
1134
+ // // Medium screen / desktop
1135
+ // //** Deprecated `$screen-md` as of v3.0.1
1136
+ // $screen-md: 992px !default;
1137
+ // $screen-md-min: $screen-md !default;
1138
+ // //** Deprecated `$screen-desktop` as of v3.0.1
1139
+ // $screen-desktop: $screen-md-min !default;
1140
+ //
1141
+ // // Large screen / wide desktop
1142
+ // //** Deprecated `$screen-lg` as of v3.0.1
1143
+ // $screen-lg: 1200px !default;
1144
+ // $screen-lg-min: $screen-lg !default;
1145
+ // //** Deprecated `$screen-lg-desktop` as of v3.0.1
1146
+ // $screen-lg-desktop: $screen-lg-min !default;
1147
+ //
1148
+ // // So media queries don't overlap when required, provide a maximum
1149
+ // $screen-xs-max: ($screen-sm-min - 1) !default;
1150
+ // $screen-sm-max: ($screen-md-min - 1) !default;
1151
+ // $screen-md-max: ($screen-lg-min - 1) !default;
1152
+ //
1153
+ //
1154
+ // //== Grid system
1155
+ // //
1156
+ // //## Define your custom responsive grid.
1157
+ //
1158
+ // //** Number of columns in the grid.
1159
+ // $grid-columns: 12 !default;
1160
+ // //** Padding between columns. Gets divided in half for the left and right.
1161
+ // $grid-gutter-width: 30px !default;
1162
+ // // Navbar collapse
1163
+ // //** Point at which the navbar becomes uncollapsed.
1164
+ // $grid-float-breakpoint: $screen-sm-min !default;
1165
+ // //** Point at which the navbar begins collapsing.
1166
+ // $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
1167
+ //
1168
+ //
1169
+ // //== Container sizes
1170
+ // //
1171
+ // //## Define the maximum width of `.container` for different screen sizes.
1172
+ //
1173
+ // // Small screen / tablet
1174
+ // $container-tablet: ((720px + $grid-gutter-width)) !default;
1175
+ // //** For `$screen-sm-min` and up.
1176
+ // $container-sm: $container-tablet !default;
1177
+ //
1178
+ // // Medium screen / desktop
1179
+ // $container-desktop: ((940px + $grid-gutter-width)) !default;
1180
+ // //** For `$screen-md-min` and up.
1181
+ // $container-md: $container-desktop !default;
1182
+ //
1183
+ // // Large screen / wide desktop
1184
+ // $container-large-desktop: ((1140px + $grid-gutter-width)) !default;
1185
+ // //** For `$screen-lg-min` and up.
1186
+ // $container-lg: $container-large-desktop !default;
1187
+ //
1188
+ //
1189
+ // //== Navbar
1190
+ // //
1191
+ // //##
1192
+ //
1193
+ // // Basics of a navbar
1194
+ // $navbar-height: 50px !default;
1195
+ // $navbar-margin-bottom: $line-height-computed !default;
1196
+ // $navbar-border-radius: $border-radius-base !default;
1197
+ // $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
1198
+ // $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
1199
+ // $navbar-collapse-max-height: 340px !default;
1200
+ //
1201
+ // $navbar-default-color: #777 !default;
1202
+ // $navbar-default-bg: #f8f8f8 !default;
1203
+ // $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
1204
+ //
1205
+ // // Navbar links
1206
+ // $navbar-default-link-color: #777 !default;
1207
+ // $navbar-default-link-hover-color: #333 !default;
1208
+ // $navbar-default-link-hover-bg: transparent !default;
1209
+ // $navbar-default-link-active-color: #555 !default;
1210
+ // $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
1211
+ // $navbar-default-link-disabled-color: #ccc !default;
1212
+ // $navbar-default-link-disabled-bg: transparent !default;
1213
+ //
1214
+ // // Navbar brand label
1215
+ // $navbar-default-brand-color: $navbar-default-link-color !default;
1216
+ // $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
1217
+ // $navbar-default-brand-hover-bg: transparent !default;
1218
+ //
1219
+ // // Navbar toggle
1220
+ // $navbar-default-toggle-hover-bg: #ddd !default;
1221
+ // $navbar-default-toggle-icon-bar-bg: #888 !default;
1222
+ // $navbar-default-toggle-border-color: #ddd !default;
1223
+ //
1224
+ //
1225
+ // // Inverted navbar
1226
+ // // Reset inverted navbar basics
1227
+ // $navbar-inverse-color: $gray-light !default;
1228
+ // $navbar-inverse-bg: #222 !default;
1229
+ // $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
1230
+ //
1231
+ // // Inverted navbar links
1232
+ // $navbar-inverse-link-color: $gray-light !default;
1233
+ // $navbar-inverse-link-hover-color: #fff !default;
1234
+ // $navbar-inverse-link-hover-bg: transparent !default;
1235
+ // $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
1236
+ // $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
1237
+ // $navbar-inverse-link-disabled-color: #444 !default;
1238
+ // $navbar-inverse-link-disabled-bg: transparent !default;
1239
+ //
1240
+ // // Inverted navbar brand label
1241
+ // $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
1242
+ // $navbar-inverse-brand-hover-color: #fff !default;
1243
+ // $navbar-inverse-brand-hover-bg: transparent !default;
1244
+ //
1245
+ // // Inverted navbar toggle
1246
+ // $navbar-inverse-toggle-hover-bg: #333 !default;
1247
+ // $navbar-inverse-toggle-icon-bar-bg: #fff !default;
1248
+ // $navbar-inverse-toggle-border-color: #333 !default;
1249
+ //
1250
+ //
1251
+ // //== Navs
1252
+ // //
1253
+ // //##
1254
+ //
1255
+ // //=== Shared nav styles
1256
+ // $nav-link-padding: 10px 15px !default;
1257
+ // $nav-link-hover-bg: $gray-lighter !default;
1258
+ //
1259
+ // $nav-disabled-link-color: $gray-light !default;
1260
+ // $nav-disabled-link-hover-color: $gray-light !default;
1261
+ //
1262
+ // $nav-open-link-hover-color: #fff !default;
1263
+ //
1264
+ // //== Tabs
1265
+ // $nav-tabs-border-color: #ddd !default;
1266
+ //
1267
+ // $nav-tabs-link-hover-border-color: $gray-lighter !default;
1268
+ //
1269
+ // $nav-tabs-active-link-hover-bg: $body-bg !default;
1270
+ // $nav-tabs-active-link-hover-color: $gray !default;
1271
+ // $nav-tabs-active-link-hover-border-color: #ddd !default;
1272
+ //
1273
+ // $nav-tabs-justified-link-border-color: #ddd !default;
1274
+ // $nav-tabs-justified-active-link-border-color: $body-bg !default;
1275
+ //
1276
+ // //== Pills
1277
+ // $nav-pills-border-radius: $border-radius-base !default;
1278
+ // $nav-pills-active-link-hover-bg: $component-active-bg !default;
1279
+ // $nav-pills-active-link-hover-color: $component-active-color !default;
1280
+ //
1281
+ //
1282
+ // //== Pagination
1283
+ // //
1284
+ // //##
1285
+ //
1286
+ // $pagination-color: $link-color !default;
1287
+ // $pagination-bg: #fff !default;
1288
+ // $pagination-border: #ddd !default;
1289
+ //
1290
+ // $pagination-hover-color: $link-hover-color !default;
1291
+ // $pagination-hover-bg: $gray-lighter !default;
1292
+ // $pagination-hover-border: #ddd !default;
1293
+ //
1294
+ // $pagination-active-color: #fff !default;
1295
+ // $pagination-active-bg: $brand-primary !default;
1296
+ // $pagination-active-border: $brand-primary !default;
1297
+ //
1298
+ // $pagination-disabled-color: $gray-light !default;
1299
+ // $pagination-disabled-bg: #fff !default;
1300
+ // $pagination-disabled-border: #ddd !default;
1301
+ //
1302
+ //
1303
+ // //== Pager
1304
+ // //
1305
+ // //##
1306
+ //
1307
+ // $pager-bg: $pagination-bg !default;
1308
+ // $pager-border: $pagination-border !default;
1309
+ // $pager-border-radius: 15px !default;
1310
+ //
1311
+ // $pager-hover-bg: $pagination-hover-bg !default;
1312
+ //
1313
+ // $pager-active-bg: $pagination-active-bg !default;
1314
+ // $pager-active-color: $pagination-active-color !default;
1315
+ //
1316
+ // $pager-disabled-color: $pagination-disabled-color !default;
1317
+ //
1318
+ //
1319
+ // //== Jumbotron
1320
+ // //
1321
+ // //##
1322
+ //
1323
+ // $jumbotron-padding: 30px !default;
1324
+ // $jumbotron-color: inherit !default;
1325
+ // $jumbotron-bg: $gray-lighter !default;
1326
+ // $jumbotron-heading-color: inherit !default;
1327
+ // $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
1328
+ //
1329
+ //
1330
+ // //== Form states and alerts
1331
+ // //
1332
+ // //## Define colors for form feedback states and, by default, alerts.
1333
+ //
1334
+ // $state-success-text: #3c763d !default;
1335
+ // $state-success-bg: #dff0d8 !default;
1336
+ // $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
1337
+ //
1338
+ // $state-info-text: #31708f !default;
1339
+ // $state-info-bg: #d9edf7 !default;
1340
+ // $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
1341
+ //
1342
+ // $state-warning-text: #8a6d3b !default;
1343
+ // $state-warning-bg: #fcf8e3 !default;
1344
+ // $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
1345
+ //
1346
+ // $state-danger-text: #a94442 !default;
1347
+ // $state-danger-bg: #f2dede !default;
1348
+ // $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
1349
+ //
1350
+ //
1351
+ // //== Tooltips
1352
+ // //
1353
+ // //##
1354
+ //
1355
+ // //** Tooltip max width
1356
+ // $tooltip-max-width: 200px !default;
1357
+ // //** Tooltip text color
1358
+ // $tooltip-color: #fff !default;
1359
+ // //** Tooltip background color
1360
+ // $tooltip-bg: #000 !default;
1361
+ // $tooltip-opacity: .9 !default;
1362
+ //
1363
+ // //** Tooltip arrow width
1364
+ // $tooltip-arrow-width: 5px !default;
1365
+ // //** Tooltip arrow color
1366
+ // $tooltip-arrow-color: $tooltip-bg !default;
1367
+ //
1368
+ //
1369
+ // //== Popovers
1370
+ // //
1371
+ // //##
1372
+ //
1373
+ // //** Popover body background color
1374
+ // $popover-bg: #fff !default;
1375
+ // //** Popover maximum width
1376
+ // $popover-max-width: 276px !default;
1377
+ // //** Popover border color
1378
+ // $popover-border-color: rgba(0,0,0,.2) !default;
1379
+ // //** Popover fallback border color
1380
+ // $popover-fallback-border-color: #ccc !default;
1381
+ //
1382
+ // //** Popover title background color
1383
+ // $popover-title-bg: darken($popover-bg, 3%) !default;
1384
+ //
1385
+ // //** Popover arrow width
1386
+ // $popover-arrow-width: 10px !default;
1387
+ // //** Popover arrow color
1388
+ // $popover-arrow-color: #fff !default;
1389
+ //
1390
+ // //** Popover outer arrow width
1391
+ // $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
1392
+ // //** Popover outer arrow color
1393
+ // $popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
1394
+ // //** Popover outer arrow fallback color
1395
+ // $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
1396
+ //
1397
+ //
1398
+ // //== Labels
1399
+ // //
1400
+ // //##
1401
+ //
1402
+ // //** Default label background color
1403
+ // $label-default-bg: $gray-light !default;
1404
+ // //** Primary label background color
1405
+ // $label-primary-bg: $brand-primary !default;
1406
+ // //** Success label background color
1407
+ // $label-success-bg: $brand-success !default;
1408
+ // //** Info label background color
1409
+ // $label-info-bg: $brand-info !default;
1410
+ // //** Warning label background color
1411
+ // $label-warning-bg: $brand-warning !default;
1412
+ // //** Danger label background color
1413
+ // $label-danger-bg: $brand-danger !default;
1414
+ //
1415
+ // //** Default label text color
1416
+ // $label-color: #fff !default;
1417
+ // //** Default text color of a linked label
1418
+ // $label-link-hover-color: #fff !default;
1419
+ //
1420
+ //
1421
+ // //== Modals
1422
+ // //
1423
+ // //##
1424
+ //
1425
+ // //** Padding applied to the modal body
1426
+ // $modal-inner-padding: 15px !default;
1427
+ //
1428
+ // //** Padding applied to the modal title
1429
+ // $modal-title-padding: 15px !default;
1430
+ // //** Modal title line-height
1431
+ // $modal-title-line-height: $line-height-base !default;
1432
+ //
1433
+ // //** Background color of modal content area
1434
+ // $modal-content-bg: #fff !default;
1435
+ // //** Modal content border color
1436
+ // $modal-content-border-color: rgba(0,0,0,.2) !default;
1437
+ // //** Modal content border color **for IE8**
1438
+ // $modal-content-fallback-border-color: #999 !default;
1439
+ //
1440
+ // //** Modal backdrop background color
1441
+ // $modal-backdrop-bg: #000 !default;
1442
+ // //** Modal backdrop opacity
1443
+ // $modal-backdrop-opacity: .5 !default;
1444
+ // //** Modal header border color
1445
+ // $modal-header-border-color: #e5e5e5 !default;
1446
+ // //** Modal footer border color
1447
+ // $modal-footer-border-color: $modal-header-border-color !default;
1448
+ //
1449
+ // $modal-lg: 900px !default;
1450
+ // $modal-md: 600px !default;
1451
+ // $modal-sm: 300px !default;
1452
+ //
1453
+ //
1454
+ // //== Alerts
1455
+ // //
1456
+ // //## Define alert colors, border radius, and padding.
1457
+ //
1458
+ // $alert-padding: 15px !default;
1459
+ // $alert-border-radius: $border-radius-base !default;
1460
+ // $alert-link-font-weight: bold !default;
1461
+ //
1462
+ // $alert-success-bg: $state-success-bg !default;
1463
+ // $alert-success-text: $state-success-text !default;
1464
+ // $alert-success-border: $state-success-border !default;
1465
+ //
1466
+ // $alert-info-bg: $state-info-bg !default;
1467
+ // $alert-info-text: $state-info-text !default;
1468
+ // $alert-info-border: $state-info-border !default;
1469
+ //
1470
+ // $alert-warning-bg: $state-warning-bg !default;
1471
+ // $alert-warning-text: $state-warning-text !default;
1472
+ // $alert-warning-border: $state-warning-border !default;
1473
+ //
1474
+ // $alert-danger-bg: $state-danger-bg !default;
1475
+ // $alert-danger-text: $state-danger-text !default;
1476
+ // $alert-danger-border: $state-danger-border !default;
1477
+ //
1478
+ //
1479
+ // //== Progress bars
1480
+ // //
1481
+ // //##
1482
+ //
1483
+ // //** Background color of the whole progress component
1484
+ // $progress-bg: #f5f5f5 !default;
1485
+ // //** Progress bar text color
1486
+ // $progress-bar-color: #fff !default;
1487
+ //
1488
+ // //** Default progress bar color
1489
+ // $progress-bar-bg: $brand-primary !default;
1490
+ // //** Success progress bar color
1491
+ // $progress-bar-success-bg: $brand-success !default;
1492
+ // //** Warning progress bar color
1493
+ // $progress-bar-warning-bg: $brand-warning !default;
1494
+ // //** Danger progress bar color
1495
+ // $progress-bar-danger-bg: $brand-danger !default;
1496
+ // //** Info progress bar color
1497
+ // $progress-bar-info-bg: $brand-info !default;
1498
+ //
1499
+ //
1500
+ // //== List group
1501
+ // //
1502
+ // //##
1503
+ //
1504
+ // //** Background color on `.list-group-item`
1505
+ // $list-group-bg: #fff !default;
1506
+ // //** `.list-group-item` border color
1507
+ // $list-group-border: #ddd !default;
1508
+ // //** List group border radius
1509
+ // $list-group-border-radius: $border-radius-base !default;
1510
+ //
1511
+ // //** Background color of single list items on hover
1512
+ // $list-group-hover-bg: #f5f5f5 !default;
1513
+ // //** Text color of active list items
1514
+ // $list-group-active-color: $component-active-color !default;
1515
+ // //** Background color of active list items
1516
+ // $list-group-active-bg: $component-active-bg !default;
1517
+ // //** Border color of active list elements
1518
+ // $list-group-active-border: $list-group-active-bg !default;
1519
+ // //** Text color for content within active list items
1520
+ // $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
1521
+ //
1522
+ // //** Text color of disabled list items
1523
+ // $list-group-disabled-color: $gray-light !default;
1524
+ // //** Background color of disabled list items
1525
+ // $list-group-disabled-bg: $gray-lighter !default;
1526
+ // //** Text color for content within disabled list items
1527
+ // $list-group-disabled-text-color: $list-group-disabled-color !default;
1528
+ //
1529
+ // $list-group-link-color: #555 !default;
1530
+ // $list-group-link-hover-color: $list-group-link-color !default;
1531
+ // $list-group-link-heading-color: #333 !default;
1532
+ //
1533
+ //
1534
+ // //== Panels
1535
+ // //
1536
+ // //##
1537
+ //
1538
+ // $panel-bg: #fff !default;
1539
+ // $panel-body-padding: 15px !default;
1540
+ // $panel-heading-padding: 10px 15px !default;
1541
+ // $panel-footer-padding: $panel-heading-padding !default;
1542
+ // $panel-border-radius: $border-radius-base !default;
1543
+ //
1544
+ // //** Border color for elements within panels
1545
+ // $panel-inner-border: #ddd !default;
1546
+ // $panel-footer-bg: #f5f5f5 !default;
1547
+ //
1548
+ // $panel-default-text: $gray-dark !default;
1549
+ // $panel-default-border: #ddd !default;
1550
+ // $panel-default-heading-bg: #f5f5f5 !default;
1551
+ //
1552
+ // $panel-primary-text: #fff !default;
1553
+ // $panel-primary-border: $brand-primary !default;
1554
+ // $panel-primary-heading-bg: $brand-primary !default;
1555
+ //
1556
+ // $panel-success-text: $state-success-text !default;
1557
+ // $panel-success-border: $state-success-border !default;
1558
+ // $panel-success-heading-bg: $state-success-bg !default;
1559
+ //
1560
+ // $panel-info-text: $state-info-text !default;
1561
+ // $panel-info-border: $state-info-border !default;
1562
+ // $panel-info-heading-bg: $state-info-bg !default;
1563
+ //
1564
+ // $panel-warning-text: $state-warning-text !default;
1565
+ // $panel-warning-border: $state-warning-border !default;
1566
+ // $panel-warning-heading-bg: $state-warning-bg !default;
1567
+ //
1568
+ // $panel-danger-text: $state-danger-text !default;
1569
+ // $panel-danger-border: $state-danger-border !default;
1570
+ // $panel-danger-heading-bg: $state-danger-bg !default;
1571
+ //
1572
+ //
1573
+ // //== Thumbnails
1574
+ // //
1575
+ // //##
1576
+ //
1577
+ // //** Padding around the thumbnail image
1578
+ // $thumbnail-padding: 4px !default;
1579
+ // //** Thumbnail background color
1580
+ // $thumbnail-bg: $body-bg !default;
1581
+ // //** Thumbnail border color
1582
+ // $thumbnail-border: #ddd !default;
1583
+ // //** Thumbnail border radius
1584
+ // $thumbnail-border-radius: $border-radius-base !default;
1585
+ //
1586
+ // //** Custom text color for thumbnail captions
1587
+ // $thumbnail-caption-color: $text-color !default;
1588
+ // //** Padding around the thumbnail caption
1589
+ // $thumbnail-caption-padding: 9px !default;
1590
+ //
1591
+ //
1592
+ // //== Wells
1593
+ // //
1594
+ // //##
1595
+ //
1596
+ // $well-bg: #f5f5f5 !default;
1597
+ // $well-border: darken($well-bg, 7%) !default;
1598
+ //
1599
+ //
1600
+ // //== Badges
1601
+ // //
1602
+ // //##
1603
+ //
1604
+ // $badge-color: #fff !default;
1605
+ // //** Linked badge text color on hover
1606
+ // $badge-link-hover-color: #fff !default;
1607
+ // $badge-bg: $gray-light !default;
1608
+ //
1609
+ // //** Badge text color in active nav link
1610
+ // $badge-active-color: $link-color !default;
1611
+ // //** Badge background color in active nav link
1612
+ // $badge-active-bg: #fff !default;
1613
+ //
1614
+ // $badge-font-weight: bold !default;
1615
+ // $badge-line-height: 1 !default;
1616
+ // $badge-border-radius: 10px !default;
1617
+ //
1618
+ //
1619
+ // //== Breadcrumbs
1620
+ // //
1621
+ // //##
1622
+ //
1623
+ // $breadcrumb-padding-vertical: 8px !default;
1624
+ // $breadcrumb-padding-horizontal: 15px !default;
1625
+ // //** Breadcrumb background color
1626
+ // $breadcrumb-bg: #f5f5f5 !default;
1627
+ // //** Breadcrumb text color
1628
+ // $breadcrumb-color: #ccc !default;
1629
+ // //** Text color of current page in the breadcrumb
1630
+ // $breadcrumb-active-color: $gray-light !default;
1631
+ // //** Textual separator for between breadcrumb elements
1632
+ // $breadcrumb-separator: "/" !default;
1633
+ //
1634
+ //
1635
+ // //== Carousel
1636
+ // //
1637
+ // //##
1638
+ //
1639
+ // $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
1640
+ //
1641
+ // $carousel-control-color: #fff !default;
1642
+ // $carousel-control-width: 15% !default;
1643
+ // $carousel-control-opacity: .5 !default;
1644
+ // $carousel-control-font-size: 20px !default;
1645
+ //
1646
+ // $carousel-indicator-active-bg: #fff !default;
1647
+ // $carousel-indicator-border-color: #fff !default;
1648
+ //
1649
+ // $carousel-caption-color: #fff !default;
1650
+ //
1651
+ //
1652
+ // //== Close
1653
+ // //
1654
+ // //##
1655
+ //
1656
+ // $close-font-weight: bold !default;
1657
+ // $close-color: #000 !default;
1658
+ // $close-text-shadow: 0 1px 0 #fff !default;
1659
+ //
1660
+ //
1661
+ // //== Code
1662
+ // //
1663
+ // //##
1664
+ //
1665
+ // $code-color: #c7254e !default;
1666
+ // $code-bg: #f9f2f4 !default;
1667
+ //
1668
+ // $kbd-color: #fff !default;
1669
+ // $kbd-bg: #333 !default;
1670
+ //
1671
+ // $pre-bg: #f5f5f5 !default;
1672
+ // $pre-color: $gray-dark !default;
1673
+ // $pre-border-color: #ccc !default;
1674
+ // $pre-scrollable-max-height: 340px !default;
1675
+ //
1676
+ //
1677
+ // //== Type
1678
+ // //
1679
+ // //##
1680
+ //
1681
+ // //** Horizontal offset for forms and lists.
1682
+ // $component-offset-horizontal: 180px !default;
1683
+ // //** Text muted color
1684
+ // $text-muted: $gray-light !default;
1685
+ // //** Abbreviations and acronyms border color
1686
+ // $abbr-border-color: $gray-light !default;
1687
+ // //** Headings small color
1688
+ // $headings-small-color: $gray-light !default;
1689
+ // //** Blockquote small color
1690
+ // $blockquote-small-color: $gray-light !default;
1691
+ // //** Blockquote font size
1692
+ // $blockquote-font-size: ($font-size-base * 1.25) !default;
1693
+ // //** Blockquote border color
1694
+ // $blockquote-border-color: $gray-lighter !default;
1695
+ // //** Page header border color
1696
+ // $page-header-border-color: $gray-lighter !default;
1697
+ // //** Width of horizontal description list titles
1698
+ // $dl-horizontal-offset: $component-offset-horizontal !default;
1699
+ // //** Horizontal line color.
1700
+ // $hr-border: $gray-lighter !default;
1701
+ ; T; i:@has_childrenT;