express_admin 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (397) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +3 -1
  3. data/app/assets/images/express_admin/appexpress_logo_dark.png +0 -0
  4. data/app/assets/javascripts/express_admin.js +1 -4
  5. data/app/assets/javascripts/express_admin/admin.js +0 -2
  6. data/app/assets/javascripts/express_admin/scrollTableBody.js +127 -0
  7. data/app/assets/stylesheets/express_admin.css +1 -1
  8. data/app/assets/stylesheets/express_admin/components/_main_menu.sass +5 -0
  9. data/app/assets/stylesheets/express_admin/components/_megadropdown.sass +0 -5
  10. data/app/assets/stylesheets/express_admin/components/_module_sidebar.sass +9 -0
  11. data/app/assets/stylesheets/express_admin/components/_pane.sass +9 -0
  12. data/app/assets/stylesheets/express_admin/components/_widget_box.sass +10 -0
  13. data/app/assets/stylesheets/express_admin/globals/_foundation_overrides.sass +612 -0
  14. data/app/assets/stylesheets/express_admin/globals/_mixins.sass +9 -0
  15. data/app/assets/stylesheets/express_admin/globals/_typography.sass +8 -16
  16. data/app/assets/stylesheets/express_admin/globals/_variables.sass +18 -12
  17. data/app/assets/stylesheets/express_admin/screen.sass +16 -9
  18. data/app/assets/stylesheets/express_admin/sections/_header.sass +8 -94
  19. data/app/assets/stylesheets/express_admin/sections/_main_content.sass +3 -61
  20. data/app/assets/stylesheets/express_admin/sections/_main_region.sass +9 -0
  21. data/app/assets/stylesheets/express_admin/sections/_page_body.sass +6 -0
  22. data/app/assets/stylesheets/express_admin/sections/_page_sidebar.sass +5 -0
  23. data/app/assets/stylesheets/express_admin/sections/_sidebar_region.sass +7 -0
  24. data/app/assets/stylesheets/express_admin/shared/_buttons.sass +2 -31
  25. data/app/assets/stylesheets/express_admin/shared/_forms.sass +3 -97
  26. data/app/assets/stylesheets/express_admin/shared/_layout_components.sass +60 -0
  27. data/app/assets/stylesheets/express_admin/shared/_messages.sass +1 -1
  28. data/app/assets/stylesheets/express_admin/shared/_tables.sass +12 -67
  29. data/app/assets/stylesheets/express_admin/shared/_trees.sass +27 -0
  30. data/app/components/express_admin/addon_sidebar_component.rb +5 -9
  31. data/app/components/express_admin/h_box.rb +16 -0
  32. data/app/components/express_admin/layout_component.rb +14 -0
  33. data/app/components/express_admin/main_region.rb +1 -1
  34. data/app/components/express_admin/pane.rb +37 -0
  35. data/app/components/express_admin/sidebar_region.rb +2 -4
  36. data/app/components/express_admin/smart_form.rb +63 -27
  37. data/app/components/express_admin/smart_table.rb +131 -41
  38. data/app/components/express_admin/v_box.rb +16 -0
  39. data/app/components/express_admin/widget_box.rb +2 -2
  40. data/app/helpers/express_admin/admin_helper.rb +14 -9
  41. data/app/views/layouts/express_admin/admin.html.et +7 -11
  42. data/app/views/shared/express_admin/_navigation_bar.html.et +17 -13
  43. data/app/views/shared/express_admin/_navigation_bar_profile.html.et +0 -2
  44. data/app/views/shared/express_admin/_title.html.et +6 -8
  45. data/lib/express_admin/engine.rb +1 -1
  46. data/lib/express_admin/menu.rb +7 -2
  47. data/lib/express_admin/version.rb +1 -1
  48. data/lib/generators/express_admin/install/install_generator.rb +4 -4
  49. data/lib/generators/express_admin/install/templates/controllers/admin_controller.rb.erb +1 -1
  50. data/lib/generators/express_admin/scaffold/scaffold_generator.rb +10 -2
  51. data/lib/generators/express_admin/scaffold/templates/index.html.et.erb +1 -1
  52. data/test/dummy/app/controllers/admin/categories_controller.rb +12 -0
  53. data/test/dummy/app/controllers/admin/widgets_controller.rb +12 -0
  54. data/test/dummy/app/models/category.rb +3 -0
  55. data/test/dummy/app/models/tag.rb +4 -0
  56. data/test/dummy/app/models/widget.rb +7 -0
  57. data/test/dummy/app/models/widget_tag.rb +4 -0
  58. data/test/dummy/app/views/admin/categories/index.html.et +10 -0
  59. data/test/dummy/app/views/admin/widgets/index.html.et +10 -0
  60. data/test/dummy/config/routes.rb +5 -0
  61. data/test/dummy/db/development.sqlite3 +0 -0
  62. data/test/dummy/db/migrate/20150525221206_create_widgets.rb +15 -0
  63. data/test/dummy/db/migrate/20150525221228_create_categories.rb +9 -0
  64. data/test/dummy/db/migrate/20150610081108_create_tags.rb +7 -0
  65. data/test/dummy/db/migrate/20150610081204_create_widget_tags.rb +8 -0
  66. data/test/dummy/db/schema.rb +26 -5
  67. data/test/dummy/db/test.sqlite3 +0 -0
  68. data/test/dummy/log/development.log +35 -0
  69. data/test/dummy/log/test.log +33428 -0
  70. data/test/dummy/test/components/smart_form_test.rb +93 -0
  71. data/test/dummy/test/components/smart_table_test.rb +137 -0
  72. data/test/dummy/test/fixtures/categories.yml +8 -0
  73. data/test/dummy/test/fixtures/tags.yml +14 -0
  74. data/test/dummy/test/fixtures/widget_tags.yml +10 -0
  75. data/test/dummy/test/fixtures/widgets.yml +20 -0
  76. data/test/dummy/test/models/category_test.rb +13 -0
  77. data/test/dummy/test/models/tag_test.rb +13 -0
  78. data/test/dummy/test/models/widget_tag_test.rb +13 -0
  79. data/test/dummy/test/models/widget_test.rb +13 -0
  80. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/0fNukwCUjSC_GRsVIMtSMVdZkd5bq5eShMcGCrCVolc.cache +0 -0
  81. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1c4REJHKdQH9bwZhZ7Ixshmy_1jAzXc3-9OiDCDyRlk.cache +0 -0
  82. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/1rKHSaJsgLcnfIJRWYdYy7IimMCKcdI-I_ABekUargk.cache +0 -0
  83. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2kMk5s4FKAOWE1z_MvFIKHmdvNDzyoknoi39xL7KwJw.cache +0 -0
  84. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2oGeKB_QtwWpX3sJNHocsJiBZT60x_cwV_nSGh_HS-A.cache +0 -0
  85. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2rQDWRzFxOlBnczJ1BLfE2yCPVvrhgLGfAI7VSM54wk.cache +0 -0
  86. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/3S9nnUmEIG4-hDY6cVc82GFUUWicNxtpFfWwJAmJSkI.cache +2 -0
  87. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4WErFdugnc8uWYwUE9vVfw4xxCgknECdpWhn8teZbLk.cache +1 -0
  88. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4a7epNa5R1jeKCtFsJKTdVqMEQm5p0clABRPIiKegMo.cache +0 -0
  89. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/57pjjkzReNE1L9yodewGebfd0AwnfQb33rtJjSTNpLc.cache +0 -0
  90. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7vpDV8GyXVfyuFIkRrrkOwUXyIaCmf22tBPDpvhCUUc.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Cpj6WyqdggDUkeQl_Ut3P9sUtPHPXXwkmZ92TfIJGJ8.cache +0 -0
  92. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DwepgSdLiEklsJWIJItEY_ZW-nOjjeHqcdQwBtu0mus.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FOJpwMQCx9V9wfhJQKFa2f7BjfP7vyS7M3o6VX0nAI0.cache +1 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GStmpiXE4g01i-UTlSKq8B9yS69WpAp0YH7vWyESBwI.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/H53ZZ50FwJjYUOMH60F7cpINgkh9tOF4R3L6ANoH6tU.cache +1 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/HY86Fwn8VPlIysY56uV-wu90bISxrXeiCtwDXg94Glg.cache +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IcNDN_pmsAcLAMv6CST75OwOucmYm3q2099jn4tB0H8.cache +2 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JpdfSFVzivQn6TFSivlys3nV3VzD8cT0ET8uqbptxV4.cache +1 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KYe0_GIi-cNX0eRteBB0aixVATrVRo7Z3BaWFCgc7yg.cache +1 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/LsiO4sLQfM0GvyEYhaC2E54rCurTkewg7YJX-sWBctI.cache +0 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NDViKg4-yspkY1tX9IQWnh1-LkiKqIohBqtRlYZZQcs.cache +2 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OXsmreTQ3MNzGsrV1eEoW72VZQ52hQ0HiuTr0ImnqHA.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PuMvTyv89E8wfRqbWNMhTH3PAE61uCCHgpEsgdOzMXQ.cache +0 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Pvp8CVIKYjspNrgzEvgleujifrrdfATzWbwALDzQNE4.cache +2 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PzcOUndLc-O-VBR2SDM2rFkiqh-iqknTEgEAXDLKfdc.cache +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QbX1HRM7KX85_PeVHcd6VJM6sqzUCWXEEYZX7CAG0eA.cache +1 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UDHqQKrYSSvXfCbiJjXzmJh2Q6T5hLO80aaPvs9n-74.cache +0 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UFtISk01WwcjjWcPLyjeHX3bgBqZHGQcb0Z4KFNmduA.cache +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UWvG-0WgVYHVxrtLU32uumROQuSjJv_M_svW1B8YxhY.cache +1 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UruI7_ZpuzDnmNir9hzUa_r8oiuuIfVTco19ACdxwRw.cache +2 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VQ2-2HlkGd1XVIHlwRGcgDsjto3oE-50-4E3HGdt8uU.cache +1 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VezioHwyk87G6TWkkYX88tBHC6QToVGOU5geZ54Ts5A.cache +1 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WfQ-xKbnwqaKy-UQa8spczc9qocIL_jZE4cyRZftjfA.cache +2 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XPpCqlT8yHTnQNHKRxjnilUBvAs6klpgWXneFU15U78.cache +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XXTM8o6vkSxhxxm8P_orbeCZvxb8nMk7cjdwvUNL1io.cache +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XyRQXY_oj8GLw9z8lj2dknGu45jbX5lK8ko7TePosPE.cache +2 -0
  117. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/YDMOayx363vI7odbkHMVI-_RxkOoVP2Hb7FX0mFVFE0.cache +1 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Z88gJS67lNABJgUB18JzXrnGkVbYfXQvjqm7mSJIv3o.cache +1 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_k4X14Cc-2Y4gc47s7PaWtAaG_zcq1ICJInTYNp6bI4.cache +2 -0
  120. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_kr_dP4VVnM8s8ZMdiNBSpuPqkQVx46FUdCTDH4XR70.cache +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_y-BPEZTh3iXcaPJkcP9-krjw-V8LMhop4VGxUEUDsY.cache +1 -0
  122. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/afi__XQzjsqMT3svcCGlVD_YrHEWQZAEbJt4CgYaCkw.cache +1 -0
  123. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bdqS7lHa0nBN-mqdSomfMK-S6ct2TAn0z9kVzFBwQPM.cache +0 -0
  124. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/csH89NDps1_QU4E0p0HHZti2XLd_etKYDqM9cPsNpps.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ePtEu-AuU0iZ2J02ZafF9yOJVd8VVdV2KSheiJYlXzA.cache +1 -0
  126. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eTRff0YXBw-Tx9VEMxb-Es8NwqjHCXiaosBLxijl3I8.cache +1 -0
  127. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fRkrxaDYzRDIvxEUGZBFbW5ocAlmDQNg8_LRcOJJOzI.cache +1 -0
  128. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/goVFgqSk0CBOXpbwLNd-enc31BvXm1S8cMSJ3zbxRYI.cache +1 -0
  129. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hPH6lLkPX0EzSG_eBprMMUnmFs9y89AOarfyhGoAFGc.cache +0 -0
  130. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hgfrt0FmGrYD5SJVJhlsUPtL9usJvw3vZrW4dqQq16Y.cache +1 -0
  131. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hiZg7FLw7SFa7S-BQ8CKWdAqFVUZy2HVb2chmQijM-g.cache +0 -0
  132. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iKb8yzw0EdFpNkayUbc16U7olK7iwE2xIs_6b_xIEtI.cache +1 -0
  133. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/iY03Ztj2YhBWadK8LHOKR3Hj1W7PLss0v85Q6Nj7E3Q.cache +0 -0
  134. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ipLhCJrCCVwH7l_p1quUi2xS6POFlVHfZCqIymk8CoI.cache +0 -0
  135. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ipTot5AshDPhFtCBNfXROxutQlCrYkvsXsy3fcVT0Nw.cache +0 -0
  136. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/j5CxYBAeuD-bGDZUBh-pA0mEPCSVFDZsJm3x7QED4g0.cache +1 -0
  137. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jr4uhEONyFYm0QhfEOMqv05S-BeUP7gw1gQl3GIFyAI.cache +0 -0
  138. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kGO7_IQtBwpe93nSTKj6cCWGm0fZ_NoXltdw8E_74CQ.cache +2 -0
  139. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/le9WohG3eSGbBMySdKkdvkHXW8yipO8w4iQZCCCQb3M.cache +1 -0
  140. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/mtmR_XlvnlYbOPmP1EkOj96q2Z5OQNv4HkeFj9DwEXQ.cache +2 -0
  141. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nU1obIDVHUhN-3yRA6B9U5aO8wsd6zh1tyVtSROJewk.cache +2 -0
  142. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/oZ6SMNNft5SCbvNtWXkGQwKQPVwXoJRMV7VUJfWHc2k.cache +2 -0
  143. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/oygs10cGTBBo7Mj97CjFRTrSrFR7Qi3MnHNR_WQvIps.cache +0 -0
  144. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p0Gnpai0VYzEsAXH_5t9huZ3dO0v6JKRH0PIH--q-XA.cache +2 -0
  145. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pu9xM8T2O07hU3PafxbOLjg2vJxbbHE3qnIK9JHqVhA.cache +1 -0
  146. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qEHftZrJ-Da_nsvX4UOaALyIt0mwnOuE2TdtBPGAWEw.cache +0 -0
  147. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rtdpq5fxIYMKM43QyOIluEECg2NP5OA-7Zi8yuowZSI.cache +1 -0
  148. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ujFa5Hu76zd1O6nO2G7WcgnOWZyTOMKLajazyMXAL_I.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uovLHiJZBoVnD7CXYj2WZYmAbBcqGLQOzu4Voz5Fx8c.cache +0 -0
  150. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uyHm0KHsHpJhn-wv69exuuyU4kyJtW3DDQLP7tCD7e4.cache +0 -0
  151. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/v50nc5cuqpLxjepk7XsBmomcmFARYlHQRtq8yOv8AY0.cache +0 -0
  152. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vAh5eTPxI929yxRCyXgbKTWat5cZiVSOyX0UeTveXGE.cache +1 -0
  153. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vKiuNu1fQitE151bh0Tr2Ufkc80jWzchPjxaHkpjQL8.cache +1 -0
  154. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/x-3lyh5i4qS-Q9E3X2uj2LthTOxsndFTrFXBsPPo6hI.cache +2 -0
  155. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/x3xQgAyjbrGTXy2FX2UzGG77agJgt_xsyNBuofrvY_E.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xQqBwKYWFPxZm5tidxsRKk23Z3q-OLRmKQUlMjRev_c.cache +0 -0
  157. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yZNo-6dzWGUNCJDnmqm7X5YB5FOxjYp_l8aKS6KaZOg.cache +0 -0
  158. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zV58Nou0R2EJG875wLND6wF9ES4diVi1fP7B_B6eCzw.cache +1 -0
  159. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zxPFYKpkfNJtui1ekitdNMaGAo39fefm-oJCnILEEQ8.cache +1 -0
  160. data/test/fixtures/widgets.yml +20 -0
  161. data/test/lib/express_admin/menu_test.rb +1 -1
  162. data/test/{fixtures/express_admin → support}/test_menu.yml +0 -0
  163. data/test/test_helper.rb +25 -5
  164. data/vendor/gems/express_templates/Gemfile +16 -0
  165. data/vendor/gems/express_templates/Gemfile.lock +153 -0
  166. data/vendor/gems/express_templates/LICENSE +21 -0
  167. data/vendor/gems/express_templates/README.md +152 -0
  168. data/vendor/gems/express_templates/Rakefile +32 -0
  169. data/vendor/gems/express_templates/diagrams/diagram.graffle +2404 -0
  170. data/vendor/gems/express_templates/diagrams/diagram_express_templates.png +0 -0
  171. data/vendor/gems/express_templates/diagrams/diagram_haml_erb.png +0 -0
  172. data/vendor/gems/express_templates/express_templates-0.5.0.gem +0 -0
  173. data/vendor/gems/express_templates/express_templates.gemspec +29 -0
  174. data/vendor/gems/express_templates/lib/core_extensions/proc.rb +90 -0
  175. data/vendor/gems/express_templates/lib/core_extensions/string.rb +25 -0
  176. data/vendor/gems/express_templates/lib/express_templates.rb +19 -0
  177. data/vendor/gems/express_templates/lib/express_templates/compiler.rb +36 -0
  178. data/vendor/gems/express_templates/lib/express_templates/components.rb +18 -0
  179. data/vendor/gems/express_templates/lib/express_templates/components/base.rb +54 -0
  180. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/adoptable.rb +20 -0
  181. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/building.rb +14 -0
  182. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/conditionality.rb +54 -0
  183. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/configurable.rb +90 -0
  184. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/iterating.rb +75 -0
  185. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/parenting.rb +72 -0
  186. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/rendering.rb +30 -0
  187. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/resourceful.rb +135 -0
  188. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/templating.rb +198 -0
  189. data/vendor/gems/express_templates/lib/express_templates/components/capabilities/wrapping.rb +84 -0
  190. data/vendor/gems/express_templates/lib/express_templates/components/column.rb +13 -0
  191. data/vendor/gems/express_templates/lib/express_templates/components/container.rb +7 -0
  192. data/vendor/gems/express_templates/lib/express_templates/components/content_for.rb +42 -0
  193. data/vendor/gems/express_templates/lib/express_templates/components/for_each.rb +30 -0
  194. data/vendor/gems/express_templates/lib/express_templates/components/form_rails_support.rb +22 -0
  195. data/vendor/gems/express_templates/lib/express_templates/components/forms.rb +17 -0
  196. data/vendor/gems/express_templates/lib/express_templates/components/forms/basic_fields.rb +53 -0
  197. data/vendor/gems/express_templates/lib/express_templates/components/forms/checkbox.rb +37 -0
  198. data/vendor/gems/express_templates/lib/express_templates/components/forms/express_form.rb +57 -0
  199. data/vendor/gems/express_templates/lib/express_templates/components/forms/form_component.rb +64 -0
  200. data/vendor/gems/express_templates/lib/express_templates/components/forms/form_support.rb +13 -0
  201. data/vendor/gems/express_templates/lib/express_templates/components/forms/option_support.rb +65 -0
  202. data/vendor/gems/express_templates/lib/express_templates/components/forms/radio.rb +84 -0
  203. data/vendor/gems/express_templates/lib/express_templates/components/forms/select.rb +105 -0
  204. data/vendor/gems/express_templates/lib/express_templates/components/forms/select_collection.rb +57 -0
  205. data/vendor/gems/express_templates/lib/express_templates/components/forms/submit.rb +26 -0
  206. data/vendor/gems/express_templates/lib/express_templates/components/null_wrap.rb +41 -0
  207. data/vendor/gems/express_templates/lib/express_templates/components/row.rb +28 -0
  208. data/vendor/gems/express_templates/lib/express_templates/components/table_for.rb +163 -0
  209. data/vendor/gems/express_templates/lib/express_templates/components/tree_for.rb +86 -0
  210. data/vendor/gems/express_templates/lib/express_templates/components/unless_block.rb +40 -0
  211. data/vendor/gems/express_templates/lib/express_templates/expander.rb +140 -0
  212. data/vendor/gems/express_templates/lib/express_templates/indenter.rb +47 -0
  213. data/vendor/gems/express_templates/lib/express_templates/interpolator.rb +36 -0
  214. data/vendor/gems/express_templates/lib/express_templates/macro.rb +45 -0
  215. data/vendor/gems/express_templates/lib/express_templates/markup.rb +9 -0
  216. data/vendor/gems/express_templates/lib/express_templates/markup/html_tag.rb +62 -0
  217. data/vendor/gems/express_templates/lib/express_templates/markup/tag.rb +150 -0
  218. data/vendor/gems/express_templates/lib/express_templates/markup/wrapper.rb +94 -0
  219. data/vendor/gems/express_templates/lib/express_templates/markup/yielder.rb +21 -0
  220. data/vendor/gems/express_templates/lib/express_templates/renderer.rb +11 -0
  221. data/vendor/gems/express_templates/lib/express_templates/template/handler.rb +15 -0
  222. data/vendor/gems/express_templates/lib/express_templates/version.rb +3 -0
  223. data/vendor/gems/express_templates/lib/tasks/express_templates.rake +4 -0
  224. data/vendor/gems/express_templates/test/compiler_test.rb +9 -0
  225. data/vendor/gems/express_templates/test/components/base_test.rb +44 -0
  226. data/vendor/gems/express_templates/test/components/capabilities/resourceful_test.rb +63 -0
  227. data/vendor/gems/express_templates/test/components/column_test.rb +11 -0
  228. data/vendor/gems/express_templates/test/components/conditionality_test.rb +37 -0
  229. data/vendor/gems/express_templates/test/components/configurable_test.rb +43 -0
  230. data/vendor/gems/express_templates/test/components/container_test.rb +66 -0
  231. data/vendor/gems/express_templates/test/components/content_for_test.rb +60 -0
  232. data/vendor/gems/express_templates/test/components/forms/basic_fields_test.rb +52 -0
  233. data/vendor/gems/express_templates/test/components/forms/checkbox_test.rb +44 -0
  234. data/vendor/gems/express_templates/test/components/forms/express_form_test.rb +108 -0
  235. data/vendor/gems/express_templates/test/components/forms/radio_test.rb +96 -0
  236. data/vendor/gems/express_templates/test/components/forms/select_test.rb +146 -0
  237. data/vendor/gems/express_templates/test/components/forms/submit_test.rb +12 -0
  238. data/vendor/gems/express_templates/test/components/iterating_test.rb +127 -0
  239. data/vendor/gems/express_templates/test/components/null_wrap_test.rb +28 -0
  240. data/vendor/gems/express_templates/test/components/row_test.rb +16 -0
  241. data/vendor/gems/express_templates/test/components/table_for_test.rb +211 -0
  242. data/vendor/gems/express_templates/test/components/tree_for_test.rb +103 -0
  243. data/vendor/gems/express_templates/test/core_extensions/proc_test.rb +71 -0
  244. data/vendor/gems/express_templates/test/core_extensions/string_test.rb +20 -0
  245. data/vendor/gems/express_templates/test/dummy/Rakefile +6 -0
  246. data/vendor/gems/express_templates/test/dummy/app/assets/javascripts/application.js +13 -0
  247. data/vendor/gems/express_templates/test/dummy/app/assets/stylesheets/application.css +15 -0
  248. data/vendor/gems/express_templates/test/dummy/app/controllers/application_controller.rb +5 -0
  249. data/vendor/gems/express_templates/test/dummy/app/controllers/hello_controller.rb +5 -0
  250. data/vendor/gems/express_templates/test/dummy/app/helpers/application_helper.rb +2 -0
  251. data/vendor/gems/express_templates/test/dummy/app/views/hello/show.html.et +5 -0
  252. data/vendor/gems/express_templates/test/dummy/app/views/layouts/application.html.et +15 -0
  253. data/vendor/gems/express_templates/test/dummy/bin/bundle +3 -0
  254. data/vendor/gems/express_templates/test/dummy/bin/rails +4 -0
  255. data/vendor/gems/express_templates/test/dummy/bin/rake +4 -0
  256. data/vendor/gems/express_templates/test/dummy/config.ru +4 -0
  257. data/vendor/gems/express_templates/test/dummy/config/application.rb +26 -0
  258. data/vendor/gems/express_templates/test/dummy/config/boot.rb +5 -0
  259. data/vendor/gems/express_templates/test/dummy/config/environment.rb +5 -0
  260. data/vendor/gems/express_templates/test/dummy/config/environments/development.rb +37 -0
  261. data/vendor/gems/express_templates/test/dummy/config/environments/production.rb +82 -0
  262. data/vendor/gems/express_templates/test/dummy/config/environments/test.rb +40 -0
  263. data/vendor/gems/express_templates/test/dummy/config/initializers/assets.rb +8 -0
  264. data/vendor/gems/express_templates/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  265. data/vendor/gems/express_templates/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  266. data/vendor/gems/express_templates/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  267. data/vendor/gems/express_templates/test/dummy/config/initializers/inflections.rb +16 -0
  268. data/vendor/gems/express_templates/test/dummy/config/initializers/mime_types.rb +4 -0
  269. data/vendor/gems/express_templates/test/dummy/config/initializers/session_store.rb +3 -0
  270. data/vendor/gems/express_templates/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  271. data/vendor/gems/express_templates/test/dummy/config/locales/en.yml +23 -0
  272. data/vendor/gems/express_templates/test/dummy/config/routes.rb +4 -0
  273. data/vendor/gems/express_templates/test/dummy/config/secrets.yml +22 -0
  274. data/vendor/gems/express_templates/test/dummy/log/test.log +15987 -0
  275. data/vendor/gems/express_templates/test/dummy/public/404.html +67 -0
  276. data/vendor/gems/express_templates/test/dummy/public/422.html +67 -0
  277. data/vendor/gems/express_templates/test/dummy/public/500.html +66 -0
  278. data/vendor/gems/express_templates/test/dummy/public/favicon.ico +0 -0
  279. data/vendor/gems/express_templates/test/dummy/test/controllers/hello_controller_test.rb +14 -0
  280. data/vendor/gems/express_templates/test/dummy/test/helpers/hello_helper_test.rb +4 -0
  281. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-1ax0k6FO5drSUN6jbogg4G0JliUHLffvQUvzSePKxA.cache +1 -0
  282. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-cDLO4NJHMndDHchOLz8KLD7QBc68WtaAbYxK2r6GsU.cache +0 -0
  283. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/0t68EIwZ96sAqQSxFka9MQyIk4viw8ZIoREMCGiJRx0.cache +0 -0
  284. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/28LzLLDYjhr3jmu0GxjZ-ms5Bol6JilDRXpg8Zgbjqs.cache +1 -0
  285. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2zt1IbQCnmzGyeZS_I4sYQzrgneSCKIJBRxcffVHlWY.cache +1 -0
  286. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5AeGDyXQbv_BTj3PD4MJpNnGVwUxLsA8H1VcwB69_wE.cache +0 -0
  287. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/B0RgtiEmqwrCQuw4AnDa3fdENtJeBtO_TqtGJuWOeNs.cache +3 -0
  288. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/D-tMNp19G2zWOPPhnQRUm4K8DPa8SpKPfGALkkofTeE.cache +0 -0
  289. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/EDVlXrcn_wEfaZ5nc_4QJBT7lPiIBcX96jBo7PBz-vc.cache +1 -0
  290. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Eso3tkb79hXQ1XdQgjbV03KyQwSeZFAHxVHImsjQ-HQ.cache +2 -0
  291. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/I8LhheC1OlOyvp_qY8kWpqKcZFiqv_BO-l5bExvDEi0.cache +1 -0
  292. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Kf4VrP5sW-qzziYSN-m7p4nETjLiEwwwRfwUOm7rOr0.cache +0 -0
  293. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Pd5YOD1DAL7QtTnwETZYBCabg5DkCFgbjt4iuBOcSoY.cache +1 -0
  294. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QJ0Z8hROMfWpY6f5Chb7GSuDHE4gpabKVQTr9BCZe9s.cache +1 -0
  295. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/T1pSAx767vY7X1UDN0vdF7YGEkI5wMSVUKopsdvp7kI.cache +1 -0
  296. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VlSPFPDK05c7ImadRiRVKzsaa6e15RwX77QR3NYabME.cache +0 -0
  297. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Y7_BbgB9jgJIWYjDCsASySd26DTfPADAu_3DDnLlFog.cache +0 -0
  298. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bSfZQxeyghTF4WIVnzGavxlg9afmSNuqcW6bA1Bm1OA.cache +0 -0
  299. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fvD_ZNFRzd8Sc4PoTjyHPnkg4f7WMietFunnKqNjlvc.cache +2 -0
  300. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/g2xQygPqA5kMmp5L3wVGWaUIhdVsxFmOel9FF6M0Fuw.cache +0 -0
  301. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hKbgrf5CbMO8pe9fCHc-rI5mp1ejAhivBfvfDxBNhQA.cache +0 -0
  302. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kaif59owjUr3HBharCH5GUxU6KoW_zXD9a9JiTjIYPY.cache +1 -0
  303. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kpvKX5UlhhoLJv-faeq7Ibv2KQh4ROjTiarh13gHuWI.cache +2 -0
  304. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lfyrNtbNtwuTXAWlmPCKTS-D3FHoPTY6h53wnUN36-A.cache +0 -0
  305. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lyDRhWNhfDw_YCCSbxQw_iOIV3eTfeAoX6mTREuVZSA.cache +3 -0
  306. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p17lC0HAHCtk1ds_NHl9xhEyMtRjfQInw1c6fmFWguc.cache +0 -0
  307. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/p1cwnBd8RQBm9x5HzDmiiU7RhvnxhPX8VTfi0tTElJY.cache +3 -0
  308. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qT6_0ti_v6fAjS3wETXqvTkr6W0LP4PB942uLYQzWK8.cache +3 -0
  309. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qzU7DVwQZ7z6i6pYUpssYsAj0y33GN83B4O1bLvkW_4.cache +1 -0
  310. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/r56eI1z7iFKeySym_9zw5hVOPjb0d6IQPn5pAYTKk04.cache +2 -0
  311. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rGWvoeLyiyqb813IXgfDpDxks23JQoLLZOa69bzKPE8.cache +1 -0
  312. data/vendor/gems/express_templates/test/dummy/tmp/cache/assets/test/sprockets/v3.0/y8T65xpx0s3RgT_YiqWEEXIaBsgK4woCNSuZ1zjQZBk.cache +2 -0
  313. data/vendor/gems/express_templates/test/expander_stack_test.rb +41 -0
  314. data/vendor/gems/express_templates/test/expander_test.rb +99 -0
  315. data/vendor/gems/express_templates/test/express_templates_test.rb +19 -0
  316. data/vendor/gems/express_templates/test/handler_test.rb +122 -0
  317. data/vendor/gems/express_templates/test/indenter_test.rb +27 -0
  318. data/vendor/gems/express_templates/test/interpolator_test.rb +80 -0
  319. data/vendor/gems/express_templates/test/markup/tag_test.rb +149 -0
  320. data/vendor/gems/express_templates/test/markup/wrapper_test.rb +42 -0
  321. data/vendor/gems/express_templates/test/markup/yielder_test.rb +9 -0
  322. data/vendor/gems/express_templates/test/performance_test.rb +93 -0
  323. data/vendor/gems/express_templates/test/test_helper.rb +28 -0
  324. data/vendor/gems/foundation_apps_styles/Gemfile +4 -0
  325. data/vendor/gems/foundation_apps_styles/LICENSE.txt +21 -0
  326. data/vendor/gems/foundation_apps_styles/README.md +41 -0
  327. data/vendor/gems/foundation_apps_styles/Rakefile +13 -0
  328. data/vendor/gems/foundation_apps_styles/bin/console +14 -0
  329. data/vendor/gems/foundation_apps_styles/bin/setup +7 -0
  330. data/vendor/gems/foundation_apps_styles/foundation_apps_styles.gemspec +24 -0
  331. data/vendor/gems/foundation_apps_styles/lib/foundation_apps_styles.rb +6 -0
  332. data/vendor/gems/foundation_apps_styles/lib/foundation_apps_styles/version.rb +3 -0
  333. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/account.svg +44 -0
  334. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/action.svg +38 -0
  335. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/ban.svg +17 -0
  336. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/bell.svg +22 -0
  337. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/bookmark.svg +14 -0
  338. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/cart.svg +35 -0
  339. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/chevron.svg +28 -0
  340. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/circle-check.svg +25 -0
  341. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/circle-x.svg +25 -0
  342. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/cog.svg +17 -0
  343. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/comment-square.svg +14 -0
  344. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/dashboard.svg +38 -0
  345. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/document.svg +28 -0
  346. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/envelope.svg +44 -0
  347. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/flag.svg +24 -0
  348. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/home.svg +28 -0
  349. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/lock.svg +55 -0
  350. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/magnifying-glass.svg +26 -0
  351. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/person.svg +62 -0
  352. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/reload.svg +19 -0
  353. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/share-boxed.svg +17 -0
  354. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/star.svg +14 -0
  355. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/thumb.svg +38 -0
  356. data/vendor/gems/foundation_apps_styles/vendor/assets/iconic/zoom.svg +56 -0
  357. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/_global.scss +131 -0
  358. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/_includes.scss +33 -0
  359. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/_settings.scss +614 -0
  360. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_accordion.scss +72 -0
  361. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_action-sheet.scss +265 -0
  362. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_block-list.scss +360 -0
  363. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_button-group.scss +197 -0
  364. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_button.scss +205 -0
  365. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_card.scss +93 -0
  366. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_extras.scss +54 -0
  367. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_forms.scss +460 -0
  368. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_grid.scss +422 -0
  369. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_iconic.scss +95 -0
  370. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_label.scss +134 -0
  371. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_list.scss +19 -0
  372. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_menu-bar.scss +382 -0
  373. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_modal.scss +129 -0
  374. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_motion.scss +525 -0
  375. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_notification.scss +207 -0
  376. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_off-canvas.scss +169 -0
  377. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_panel.scss +134 -0
  378. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_popup.scss +68 -0
  379. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_switch.scss +134 -0
  380. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_tabs.scss +100 -0
  381. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_title-bar.scss +135 -0
  382. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_typography.scss +345 -0
  383. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/components/_utilities.scss +160 -0
  384. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/foundation-apps.css +6146 -0
  385. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/foundation.scss +50 -0
  386. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/helpers/_breakpoints.scss +154 -0
  387. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/helpers/_functions.scss +343 -0
  388. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/helpers/_images.scss +19 -0
  389. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/helpers/_mixins.scss +123 -0
  390. data/vendor/gems/foundation_apps_styles/vendor/assets/stylesheets/vendor/_normalize.scss +424 -0
  391. metadata +512 -36
  392. data/app/assets/stylesheets/express_admin/foundation_and_overrides.scss +0 -1443
  393. data/app/assets/stylesheets/express_admin/sections/_devise.sass +0 -42
  394. data/app/assets/stylesheets/express_admin/sections/_sidebar.sass +0 -42
  395. data/app/assets/stylesheets/express_admin/shared/_labels.sass +0 -16
  396. data/app/assets/stylesheets/express_admin/shared/_navigation.sass +0 -20
  397. data/lib/generators/express_admin/scaffold/templates/show.html.et.erb +0 -10
@@ -1,1443 +0,0 @@
1
- // Foundation by ZURB
2
- // foundation.zurb.com
3
- // Licensed under MIT Open Source
4
-
5
- //
6
-
7
- // Table of Contents
8
- // Foundation Settings
9
- //
10
- // a. Base
11
- // b. Grid
12
- // c. Global
13
- // d. Media Query Ranges
14
- // e. Typography
15
- // 01. Accordion
16
- // 02. Alert Boxes
17
- // 03. Block Grid
18
- // 04. Breadcrumbs
19
- // 05. Buttons
20
- // 06. Button Groups
21
- // 07. Clearing
22
- // 08. Dropdown
23
- // 09. Dropdown Buttons
24
- // 10. Flex Video
25
- // 11. Forms
26
- // 12. Icon Bar
27
- // 13. Inline Lists
28
- // 14. Joyride
29
- // 15. Keystrokes
30
- // 16. Labels
31
- // 17. Magellan
32
- // 18. Off-canvas
33
- // 19. Orbit
34
- // 20. Pagination
35
- // 21. Panels
36
- // 22. Pricing Tables
37
- // 23. Progress Bar
38
- // 24. Range Slider
39
- // 25. Reveal
40
- // 26. Side Nav
41
- // 27. Split Buttons
42
- // 28. Sub Nav
43
- // 29. Switch
44
- // 30. Tables
45
- // 31. Tabs
46
- // 32. Thumbnails
47
- // 33. Tooltips
48
- // 34. Top Bar
49
- // 36. Visibility Classes
50
-
51
- // a. Base
52
- // - - - - - - - - - - - - - - - - - - - - - - - - -
53
-
54
- // This is the default html and body font-size for the base rem value.
55
- $rem-base: 14px;
56
-
57
- // Allows the use of rem-calc() or lower-bound() in your settings
58
- @import "foundation/functions";
59
-
60
- // The default font-size is set to 100% of the browser style sheet (usually 16px)
61
- // for compatibility with browser-based text zoom or user-set defaults.
62
-
63
- // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
64
- // If you want your base font-size to be different and not have it affect the grid breakpoints,
65
- // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
66
- $base-font-size: 14px;
67
-
68
- // The $base-font-size is 100% while $base-line-height is 150%
69
- // $base-line-height: 150%;
70
-
71
- // We use this to control whether or not CSS classes come through in the gem files.
72
- // $include-html-classes: true;
73
- // $include-print-styles: true;
74
- // $include-html-global-classes: $include-html-classes;
75
-
76
- // b. Grid
77
- // - - - - - - - - - - - - - - - - - - - - - - - - -
78
-
79
- // $include-html-grid-classes: $include-html-classes;
80
- // $include-xl-html-grid-classes: false;
81
-
82
- // $row-width: rem-calc(1000);
83
- // $total-columns: 12;
84
- // $column-gutter: rem-calc(30);
85
-
86
- // c. Global
87
- // - - - - - - - - - - - - - - - - - - - - - - - - -
88
-
89
- // We use these to define default font stacks
90
- // $font-family-sans-serif: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
91
- // $font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
92
- // $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;
93
-
94
- // We use these to define default font weights
95
- // $font-weight-normal: normal !default;
96
- // $font-weight-bold: bold !default;
97
-
98
- // We use these as default colors throughout
99
- $primary-color: #26ADE4;
100
- // $secondary-color: #e7e7e7;
101
- $alert-color: #FF0000;
102
- $success-color: #8FBE00;
103
- // $warning-color: #f08a24;
104
- // $info-color: #a0d3e8;
105
-
106
- $white : #FFFFFF;
107
- // $ghost : #FAFAFA;
108
- // $snow : #F9F9F9;
109
- // $vapor : #F6F6F6;
110
- // $white-smoke : #F5F5F5;
111
- // $silver : #EFEFEF;
112
- $smoke : #EEEEEE;
113
- $gainsboro : #DDDDDD;
114
- // $iron : #CCCCCC;
115
- // $base : #AAAAAA;
116
- // $aluminum : #999999;
117
- // $jumbo : #888888;
118
- // $monsoon : #777777;
119
- // $steel : #666666;
120
- $charcoal : #555555;
121
- // $tuatara : #444444;
122
- // $oil : #333333;
123
- // $jet : #222222;
124
- // $black : #000000;
125
-
126
- // We use these to control various global styles
127
- // $body-bg: $white;
128
- // $body-font-color: $jet;
129
- // $body-font-family: $font-family-sans-serif;
130
- // $body-font-weight: $font-weight-normal;
131
- // $body-font-style: normal;
132
-
133
- // We use this to control font-smoothing
134
- $font-smoothing: antialiased;
135
-
136
- // We use these to control text direction settings
137
- // $text-direction: ltr;
138
- // $opposite-direction: right;
139
- // $default-float: left;
140
- // $last-child-float: $opposite-direction;
141
-
142
- // We use these to make sure border radius matches unless we want it different.
143
- $global-radius: 3px;
144
- // $global-rounded: 1000px;
145
-
146
- // We use these to control inset shadow shiny edges and depressions.
147
- // $shiny-edge-size: 0 1px 0;
148
- // $shiny-edge-color: rgba($white, .5);
149
- // $shiny-edge-active-color: rgba($black, .2);
150
-
151
- // d. Media Query Ranges
152
- // - - - - - - - - - - - - - - - - - - - - - - - - -
153
-
154
- // $small-range: (0em, 40em);
155
- // $medium-range: (40.063em, 64em);
156
- // $large-range: (64.063em, 90em);
157
- // $xlarge-range: (90.063em, 120em);
158
- // $xxlarge-range: (120.063em, 99999999em);
159
-
160
- // $screen: "only screen";
161
-
162
- // $landscape: "#{$screen} and (orientation: landscape)";
163
- // $portrait: "#{$screen} and (orientation: portrait)";
164
-
165
- // $small-up: $screen;
166
- // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
167
-
168
- // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
169
- // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
170
-
171
- // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
172
- // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
173
-
174
- // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
175
- // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
176
-
177
- // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
178
- // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
179
-
180
- // Legacy
181
- // $small: $medium-up;
182
- // $medium: $medium-up;
183
- // $large: $large-up;
184
-
185
- // We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
186
- // $cursor-crosshair-value: crosshair;
187
- // $cursor-default-value: default;
188
- // $cursor-pointer-value: pointer;
189
- // $cursor-help-value: help;
190
- // $cursor-text-value: text;
191
-
192
- // e. Typography
193
- // - - - - - - - - - - - - - - - - - - - - - - - - -
194
-
195
- // $include-html-type-classes: $include-html-classes;
196
-
197
- // We use these to control header font styles
198
- // $header-font-family: $body-font-family;
199
- $header-font-weight: 500;
200
- // $header-font-style: normal;
201
- // $header-font-color: $jet;
202
- $header-line-height: 1.4;
203
- // $header-top-margin: .2rem;
204
- // $header-bottom-margin: .5rem;
205
- // $header-text-rendering: optimizeLegibility;
206
-
207
- // We use these to control header font sizes
208
- $h1-font-size: rem-calc(38);
209
- $h2-font-size: rem-calc(32);
210
- $h3-font-size: rem-calc(26);
211
- $h4-font-size: rem-calc(20);
212
- $h5-font-size: rem-calc(16);
213
- // $h6-font-size: 1rem;
214
-
215
- // We use these to control header size reduction on small screens
216
- // $h1-font-reduction: rem-calc(10) !default;
217
- // $h2-font-reduction: rem-calc(10) !default;
218
- // $h3-font-reduction: rem-calc(5) !default;
219
- // $h4-font-reduction: rem-calc(5) !default;
220
- // $h5-font-reduction: 0 !default;
221
- // $h6-font-reduction: 0 !default;
222
-
223
- // These control how subheaders are styled.
224
- // $subheader-line-height: 1.4;
225
- // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
226
- $subheader-font-weight: 400;
227
- // $subheader-top-margin: .2rem;
228
- // $subheader-bottom-margin: .5rem;
229
-
230
- // A general <small> styling
231
- // $small-font-size: 60%;
232
- // $small-font-color: scale-color($header-font-color, $lightness: 35%);
233
-
234
- // We use these to style paragraphs
235
- // $paragraph-font-family: inherit;
236
- // $paragraph-font-weight: $font-weight-normal;
237
- // $paragraph-font-size: 1rem;
238
- // $paragraph-line-height: 1.6;
239
- // $paragraph-margin-bottom: rem-calc(20);
240
- // $paragraph-aside-font-size: rem-calc(14);
241
- // $paragraph-aside-line-height: 1.35;
242
- // $paragraph-aside-font-style: italic;
243
- // $paragraph-text-rendering: optimizeLegibility;
244
-
245
- // We use these to style <code> tags
246
- // $code-color: $oil;
247
- // $code-font-family: $font-family-monospace;
248
- // $code-font-weight: $font-weight-normal;
249
- // $code-background-color: scale-color($secondary-color, $lightness: 70%);
250
- // $code-border-size: 1px;
251
- // $code-border-style: solid;
252
- // $code-border-color: scale-color($code-background-color, $lightness: -10%);
253
- // $code-padding: rem-calc(2) rem-calc(5) rem-calc(1);
254
-
255
- // We use these to style anchors
256
- // $anchor-text-decoration: none;
257
- // $anchor-text-decoration-hover: none;
258
- // $anchor-font-color: $primary-color;
259
- // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
260
-
261
- // We use these to style the <hr> element
262
- // $hr-border-width: 1px;
263
- // $hr-border-style: solid;
264
- // $hr-border-color: $gainsboro;
265
- // $hr-margin: rem-calc(20);
266
-
267
- // We use these to style lists
268
- // $list-font-family: $paragraph-font-family;
269
- // $list-font-size: $paragraph-font-size;
270
- // $list-line-height: $paragraph-line-height;
271
- // $list-margin-bottom: $paragraph-margin-bottom;
272
- // $list-style-position: outside;
273
- // $list-side-margin: 1.1rem;
274
- // $list-ordered-side-margin: 1.4rem;
275
- // $list-side-margin-no-bullet: 0;
276
- // $list-nested-margin: rem-calc(20);
277
- // $definition-list-header-weight: $font-weight-bold;
278
- // $definition-list-header-margin-bottom: .3rem;
279
- // $definition-list-margin-bottom: rem-calc(12);
280
-
281
- // We use these to style blockquotes
282
- // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
283
- // $blockquote-padding: rem-calc(9 20 0 19);
284
- $blockquote-border: 5px solid #AAA;
285
- // $blockquote-cite-font-size: rem-calc(13);
286
- // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
287
- // $blockquote-cite-link-color: $blockquote-cite-font-color;
288
-
289
- // Acronym styles
290
- // $acronym-underline: 1px dotted $gainsboro;
291
-
292
- // We use these to control padding and margin
293
- // $microformat-padding: rem-calc(10 12);
294
- // $microformat-margin: rem-calc(0 0 20 0);
295
-
296
- // We use these to control the border styles
297
- // $microformat-border-width: 1px;
298
- // $microformat-border-style: solid;
299
- // $microformat-border-color: $gainsboro;
300
-
301
- // We use these to control full name font styles
302
- // $microformat-fullname-font-weight: $font-weight-bold;
303
- // $microformat-fullname-font-size: rem-calc(15);
304
-
305
- // We use this to control the summary font styles
306
- // $microformat-summary-font-weight: $font-weight-bold;
307
-
308
- // We use this to control abbr padding
309
- // $microformat-abbr-padding: rem-calc(0 1);
310
-
311
- // We use this to control abbr font styles
312
- // $microformat-abbr-font-weight: $font-weight-bold;
313
- // $microformat-abbr-font-decoration: none;
314
-
315
- // 01. Accordion
316
- // - - - - - - - - - - - - - - - - - - - - - - - - -
317
-
318
- // $include-html-accordion-classes: $include-html-classes;
319
-
320
- // $accordion-navigation-padding: rem-calc(16);
321
- // $accordion-navigation-bg-color: $silver ;
322
- // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
323
- // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
324
- // $accordion-navigation-font-color: $jet;
325
- // $accordion-navigation-font-size: rem-calc(16);
326
- // $accordion-navigation-font-family: $body-font-family;
327
-
328
- // $accordion-content-padding: $column-gutter/2;
329
- // $accordion-content-active-bg-color: $white;
330
-
331
- // 02. Alert Boxes
332
- // - - - - - - - - - - - - - - - - - - - - - - - - -
333
-
334
- // $include-html-alert-classes: $include-html-classes;
335
-
336
- // We use this to control alert padding.
337
- $alert-padding-top: rem-calc(14);
338
- // $alert-padding-default-float: $alert-padding-top;
339
- // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
340
- $alert-padding-bottom: $alert-padding-top;
341
-
342
- // We use these to control text style.
343
- // $alert-font-weight: $font-weight-normal;
344
- // $alert-font-size: rem-calc(13);
345
- $alert-font-color: $white;
346
- // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
347
-
348
- // We use this for close hover effect.
349
- // $alert-function-factor: -14%;
350
-
351
- // We use these to control border styles.
352
- $alert-border-style: none;
353
- // $alert-border-width: 1px;
354
- // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
355
- // $alert-bottom-margin: rem-calc(20);
356
-
357
- // We use these to style the close buttons
358
- // $alert-close-color: $oil;
359
- // $alert-close-top: 50%;
360
- // $alert-close-position: rem-calc(4);
361
- // $alert-close-font-size: rem-calc(22);
362
- // $alert-close-opacity: 0.3;
363
- // $alert-close-opacity-hover: 0.5;
364
- // $alert-close-padding: 9px 6px 4px;
365
-
366
- // We use this to control border radius
367
- // $alert-radius: $global-radius;
368
-
369
- // We use this to control transition effects
370
- // $alert-transition-speed: 300ms;
371
- // $alert-transition-ease: ease-out;
372
-
373
- // 03. Block Grid
374
- // - - - - - - - - - - - - - - - - - - - - - - - - -
375
-
376
- // $include-html-block-grid-classes: $include-html-classes;
377
- // $include-xl-html-block-grid-classes: false;
378
-
379
- // We use this to control the maximum number of block grid elements per row
380
- // $block-grid-elements: 12;
381
- // $block-grid-default-spacing: rem-calc(20);
382
- // $align-block-grid-to-grid: false;
383
-
384
- // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
385
- // $block-grid-media-queries: true;
386
-
387
- // 04. Breadcrumbs
388
- // - - - - - - - - - - - - - - - - - - - - - - - - -
389
-
390
- // $include-html-nav-classes: $include-html-classes;
391
-
392
- // We use this to set the background color for the breadcrumb container.
393
- $crumb-bg: $smoke;
394
-
395
- // We use these to set the padding around the breadcrumbs.
396
- $crumb-padding: rem-calc(13 18);
397
- $crumb-side-padding: rem-calc(14);
398
-
399
- // We use these to control border styles.
400
- // $crumb-function-factor: -10%;
401
- // $crumb-border-size: 1px;
402
- // $crumb-border-style: solid;
403
- $crumb-border-color: transparent;
404
- $crumb-radius: $global-radius;
405
-
406
- // We use these to set various text styles for breadcrumbs.
407
- $crumb-font-size: rem-calc(14);
408
- $crumb-font-color: #AAA;
409
- $crumb-font-color-current: #333;
410
- // $crumb-font-color-unavailable: $aluminum;
411
- $crumb-font-transform: normal;
412
- $crumb-link-decor: underline;
413
-
414
- // We use these to control the slash between breadcrumbs
415
- $crumb-slash-color: #AAA;
416
- // $crumb-slash: "/";
417
-
418
- // 05. Buttons
419
- // - - - - - - - - - - - - - - - - - - - - - - - - -
420
-
421
- // $include-html-button-classes: $include-html-classes;
422
-
423
- // We use these to build padding for buttons.
424
- $button-tny: rem-calc(8);
425
- $button-sml: rem-calc(12);
426
- $button-med: rem-calc(14);
427
- $button-lrg: rem-calc(16);
428
-
429
- // We use this to control the display property.
430
- // $button-display: inline-block;
431
- $button-margin-bottom: rem-calc(20);
432
-
433
- // We use these to control button text styles.
434
- // $button-font-family: $body-font-family;
435
- // $button-font-color: $white;
436
- // $button-font-color-alt: $oil;
437
- $button-font-tny: rem-calc(12);
438
- $button-font-sml: rem-calc(14);
439
- $button-font-med: rem-calc(16);
440
- $button-font-lrg: rem-calc(18);
441
- // $button-font-weight: $font-weight-normal;
442
- // $button-font-align: center;
443
-
444
- // We use these to control various hover effects.
445
- // $button-function-factor: -20%;
446
-
447
- // We use these to control button border and hover styles.
448
- $button-border-width: 0px;
449
- // $button-border-style: solid;
450
- // $button-bg-color: $primary-color;
451
- // $button-bg-hover: scale-color($button-bg-color, $lightness: $button-function-factor);
452
- // $button-border-color: $button-bg-hover;
453
- // $secondary-button-bg-hover: scale-color($secondary-color, $lightness: $button-function-factor);
454
- // $secondary-button-border-color: $secondary-button-bg-hover;
455
- // $success-button-bg-hover: scale-color($success-color, $lightness: $button-function-factor);
456
- // $success-button-border-color: $success-button-bg-hover;
457
- // $alert-button-bg-hover: scale-color($alert-color, $lightness: $button-function-factor);
458
- // $alert-button-border-color: $alert-button-bg-hover;
459
-
460
- // We use this to set the default radius used throughout the core.
461
- // $button-radius: $global-radius;
462
- // $button-round: $global-rounded;
463
-
464
- // We use this to set default opacity and cursor for disabled buttons.
465
- // $button-disabled-opacity: 0.7;
466
- // $button-disabled-cursor: $cursor-default-value;
467
-
468
- // 06. Button Groups
469
- // - - - - - - - - - - - - - - - - - - - - - - - - -
470
-
471
- // $include-html-button-classes: $include-html-classes;
472
-
473
- // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
474
- // $button-bar-margin-opposite: rem-calc(10);
475
- // $button-group-border-width: 1px;
476
-
477
- // 07. Clearing
478
- // - - - - - - - - - - - - - - - - - - - - - - - - -
479
-
480
- // $include-html-clearing-classes: $include-html-classes;
481
-
482
- // We use these to set the background colors for parts of Clearing.
483
- // $clearing-bg: $oil;
484
- // $clearing-caption-bg: $clearing-bg;
485
- // $clearing-carousel-bg: rgba(51,51,51,0.8);
486
- // $clearing-img-bg: $clearing-bg;
487
-
488
- // We use these to style the close button
489
- // $clearing-close-color: $iron;
490
- // $clearing-close-size: 30px;
491
-
492
- // We use these to style the arrows
493
- // $clearing-arrow-size: 12px;
494
- // $clearing-arrow-color: $clearing-close-color;
495
-
496
- // We use these to style captions
497
- // $clearing-caption-font-color: $iron;
498
- // $clearing-caption-font-size: 0.875em;
499
- // $clearing-caption-padding: 10px 30px 20px;
500
-
501
- // We use these to make the image and carousel height and style
502
- // $clearing-active-img-height: 85%;
503
- // $clearing-carousel-height: 120px;
504
- // $clearing-carousel-thumb-width: 120px;
505
- // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
506
-
507
- // 08. Dropdown
508
- // - - - - - - - - - - - - - - - - - - - - - - - - -
509
-
510
- // $include-html-dropdown-classes: $include-html-classes;
511
-
512
- // We use these to controls height and width styles.
513
- // $f-dropdown-max-width: 200px;
514
- // $f-dropdown-height: auto;
515
- // $f-dropdown-max-height: none;
516
-
517
- // Used for bottom position
518
- $f-dropdown-margin-top: 0;
519
-
520
- // Used for right position
521
- // $f-dropdown-margin-left: $f-dropdown-margin-top;
522
-
523
- // Used for left position
524
- // $f-dropdown-margin-right: $f-dropdown-margin-top;
525
-
526
- // Used for top position
527
- // $f-dropdown-margin-bottom: $f-dropdown-margin-top;
528
-
529
- // We use this to control the background color
530
- // $f-dropdown-bg: $white;
531
-
532
- // We use this to set the border styles for dropdowns.
533
- $f-dropdown-border-style: solid;
534
- $f-dropdown-border-width: 2px;
535
- $f-dropdown-border-color: scale-color($white, $lightness: -20%);
536
-
537
- // We use these to style the triangle pip.
538
- $f-dropdown-triangle-size: 0;
539
- // $f-dropdown-triangle-color: $white;
540
- // $f-dropdown-triangle-side-offset: 10px;
541
-
542
- // We use these to control styles for the list elements.
543
- // $f-dropdown-list-style: none;
544
- // $f-dropdown-font-color: $charcoal;
545
- // $f-dropdown-font-size: rem-calc(14);
546
- // $f-dropdown-list-padding: rem-calc(5, 10);
547
- // $f-dropdown-line-height: rem-calc(18);
548
- // $f-dropdown-list-hover-bg: $smoke ;
549
- // $dropdown-mobile-default-float: 0;
550
-
551
- // We use this to control the styles for when the dropdown has custom content.
552
- // $f-dropdown-content-padding: rem-calc(20);
553
-
554
- // Default radius for dropdown.
555
- // $f-dropdown-radius: $global-radius;
556
-
557
-
558
- // 09. Dropdown Buttons
559
- // - - - - - - - - - - - - - - - - - - - - - - - - -
560
-
561
- // $include-html-button-classes: $include-html-classes;
562
-
563
- // We use these to set the color of the pip in dropdown buttons
564
- // $dropdown-button-pip-color: $white;
565
- // $dropdown-button-pip-color-alt: $oil;
566
-
567
- // $button-pip-tny: rem-calc(6);
568
- // $button-pip-sml: rem-calc(7);
569
- // $button-pip-med: rem-calc(9);
570
- // $button-pip-lrg: rem-calc(11);
571
-
572
- // We use these to style tiny dropdown buttons
573
- // $dropdown-button-padding-tny: $button-pip-tny * 7;
574
- // $dropdown-button-pip-size-tny: $button-pip-tny;
575
- // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
576
- // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
577
-
578
- // We use these to style small dropdown buttons
579
- // $dropdown-button-padding-sml: $button-pip-sml * 7;
580
- // $dropdown-button-pip-size-sml: $button-pip-sml;
581
- // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
582
- // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
583
-
584
- // We use these to style medium dropdown buttons
585
- // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
586
- // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
587
- // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
588
- // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
589
-
590
- // We use these to style large dropdown buttons
591
- // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
592
- // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
593
- // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
594
- // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
595
-
596
- // 10. Flex Video
597
- // - - - - - - - - - - - - - - - - - - - - - - - - -
598
-
599
- // $include-html-media-classes: $include-html-classes;
600
-
601
- // We use these to control video container padding and margins
602
- // $flex-video-padding-top: rem-calc(25);
603
- // $flex-video-padding-bottom: 67.5%;
604
- // $flex-video-margin-bottom: rem-calc(16);
605
-
606
- // We use this to control widescreen bottom padding
607
- // $flex-video-widescreen-padding-bottom: 56.34%;
608
-
609
- // 11. Forms
610
- // - - - - - - - - - - - - - - - - - - - - - - - - -
611
-
612
- // $include-html-form-classes: $include-html-classes;
613
-
614
- // We use this to set the base for lots of form spacing and positioning styles
615
- // $form-spacing: rem-calc(16);
616
-
617
- // We use these to style the labels in different ways
618
- // $form-label-pointer: pointer;
619
- $form-label-font-size: rem-calc(14);
620
- $form-label-font-weight: bold;
621
- // $form-label-line-height: 1.5;
622
- // $form-label-font-color: scale-color($black, $lightness: 30%);
623
- // $form-label-small-transform: capitalize;
624
- // $form-label-bottom-margin: 0;
625
- // $input-font-family: inherit;
626
- // $input-font-color: rgba(0,0,0,0.75);
627
- // $input-font-size: rem-calc(14);
628
- // $input-bg-color: $white;
629
- // $input-focus-bg-color: scale-color($white, $lightness: -2%);
630
- $input-border-color: #AAA;
631
- // $input-focus-border-color: scale-color($white, $lightness: -40%);
632
- // $input-border-style: solid;
633
- $input-border-width: 1px;
634
- $input-border-radius: $global-radius;
635
- // $input-disabled-bg: $gainsboro;
636
- // $input-disabled-cursor: $cursor-default-value;
637
- $input-box-shadow: none;
638
-
639
- // We use these to style the fieldset border and spacing.
640
- $fieldset-border-style: dashed;
641
- $fieldset-border-width: 2px;
642
- $fieldset-border-color: $gainsboro;
643
- // $fieldset-padding: rem-calc(20);
644
- // $fieldset-margin: rem-calc(18 0);
645
-
646
- // We use these to style the legends when you use them
647
- // $legend-bg: $white;
648
- // $legend-font-weight: $font-weight-bold;
649
- // $legend-padding: rem-calc(0 3);
650
-
651
- // We use these to style the prefix and postfix input elements
652
- $input-prefix-bg: $smoke;
653
- $input-prefix-border-color: #AAA;
654
- // $input-prefix-border-size: 1px;
655
- // $input-prefix-border-type: solid;
656
- // $input-prefix-overflow: hidden;
657
- // $input-prefix-font-color: $oil;
658
- // $input-prefix-font-color-alt: $white;
659
-
660
- // We use this setting to turn on/off HTML5 number spinners (the up/down arrows)
661
- // $input-number-spinners: true;
662
-
663
- // We use these to style the error states for inputs and labels
664
- // $input-error-message-padding: rem-calc(6 9 9);
665
- // $input-error-message-top: -1px;
666
- // $input-error-message-font-size: rem-calc(12);
667
- // $input-error-message-font-weight: $font-weight-normal;
668
- // $input-error-message-font-style: italic;
669
- // $input-error-message-font-color: $white;
670
- // $input-error-message-font-color-alt: $oil;
671
-
672
- // We use this to style the glowing effect of inputs when focused
673
- // $input-include-glowing-effect: true;
674
- // $glowing-effect-fade-time: 0.45s;
675
- // $glowing-effect-color: $input-focus-border-color;
676
-
677
- // Select variables
678
- // $select-bg-color: $ghost;
679
- // $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
680
-
681
- // 12. Icon Bar
682
- // - - - - - - - - - - - - - - - - - - - - - - - - -
683
-
684
- // We use these to style the icon-bar and items
685
- // $include-html-icon-bar-classes: $include-html-classes;
686
- // $icon-bar-bg: $oil;
687
- // $icon-bar-font-color: $white;
688
- // $icon-bar-font-size: 1rem;
689
- // $icon-bar-hover-color: $primary-color;
690
- // $icon-bar-icon-color: $white;
691
- // $icon-bar-icon-size: 1.875rem;
692
- // $icon-bar-image-width: 1.875rem;
693
- // $icon-bar-image-height: 1.875rem;
694
- // $icon-bar-active-color: $primary-color;
695
- // $icon-bar-item-padding: 1.25rem;
696
-
697
- // 13. Inline Lists
698
- // - - - - - - - - - - - - - - - - - - - - - - - - -
699
-
700
- // $include-html-inline-list-classes: $include-html-classes;
701
-
702
- // We use this to control the margins and padding of the inline list.
703
- // $inline-list-top-margin: 0;
704
- // $inline-list-opposite-margin: 0;
705
- // $inline-list-bottom-margin: rem-calc(17);
706
- // $inline-list-default-float-margin: rem-calc(-22);
707
- // $inline-list-default-float-list-margin: rem-calc(22);
708
-
709
- // $inline-list-padding: 0;
710
-
711
- // We use this to control the overflow of the inline list.
712
- // $inline-list-overflow: hidden;
713
-
714
- // We use this to control the list items
715
- // $inline-list-display: block;
716
-
717
- // We use this to control any elements within list items
718
- // $inline-list-children-display: block;
719
-
720
- // 14. Joyride
721
- // - - - - - - - - - - - - - - - - - - - - - - - - -
722
-
723
- // $include-html-joyride-classes: $include-html-classes;
724
-
725
- // Controlling default Joyride styles
726
- // $joyride-tip-bg: $oil;
727
- // $joyride-tip-default-width: 300px;
728
- // $joyride-tip-padding: rem-calc(18 20 24);
729
- // $joyride-tip-border: solid 1px $charcoal;
730
- // $joyride-tip-radius: 4px;
731
- // $joyride-tip-position-offset: 22px;
732
-
733
- // Here, we're setting the tip font styles
734
- // $joyride-tip-font-color: $white;
735
- // $joyride-tip-font-size: rem-calc(14);
736
- // $joyride-tip-header-weight: $font-weight-bold;
737
-
738
- // This changes the nub size
739
- // $joyride-tip-nub-size: 10px;
740
-
741
- // This adjusts the styles for the timer when its enabled
742
- // $joyride-tip-timer-width: 50px;
743
- // $joyride-tip-timer-height: 3px;
744
- // $joyride-tip-timer-color: $steel;
745
-
746
- // This changes up the styles for the close button
747
- // $joyride-tip-close-color: $monsoon;
748
- // $joyride-tip-close-size: 24px;
749
- // $joyride-tip-close-weight: $font-weight-normal;
750
-
751
- // When Joyride is filling the screen, we use this style for the bg
752
- // $joyride-screenfill: rgba(0,0,0,0.5);
753
-
754
- // 15. Keystrokes
755
- // - - - - - - - - - - - - - - - - - - - - - - - - -
756
-
757
- // $include-html-keystroke-classes: $include-html-classes;
758
-
759
- // We use these to control text styles.
760
- // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
761
- // $keystroke-font-size: inherit;
762
- // $keystroke-font-color: $jet;
763
- // $keystroke-font-color-alt: $white;
764
- // $keystroke-function-factor: -7%;
765
-
766
- // We use this to control keystroke padding.
767
- // $keystroke-padding: rem-calc(2 4 0);
768
-
769
- // We use these to control background and border styles.
770
- // $keystroke-bg: scale-color($white, $lightness: $keystroke-function-factor);
771
- // $keystroke-border-style: solid;
772
- // $keystroke-border-width: 1px;
773
- // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
774
- // $keystroke-radius: $global-radius;
775
-
776
- // 16. Labels
777
- // - - - - - - - - - - - - - - - - - - - - - - - - -
778
-
779
- // $include-html-label-classes: $include-html-classes;
780
-
781
- // We use these to style the labels
782
- $label-padding: rem-calc(6 10);
783
- // $label-radius: $global-radius;
784
-
785
- // We use these to style the label text
786
- $label-font-sizing: rem-calc(14);
787
- // $label-font-weight: $font-weight-normal;
788
- // $label-font-color: $oil;
789
- // $label-font-color-alt: $white;
790
- // $label-font-family: $body-font-family;
791
-
792
- // 17. Magellan
793
- // - - - - - - - - - - - - - - - - - - - - - - - - -
794
-
795
- // $include-html-magellan-classes: $include-html-classes;
796
-
797
- // $magellan-bg: $white;
798
- // $magellan-padding: 0 !important;
799
-
800
- // 18. Off-canvas
801
- // - - - - - - - - - - - - - - - - - - - - - - - - -
802
-
803
- // $include-html-off-canvas-classes: $include-html-classes;
804
-
805
- // $tabbar-bg: $oil;
806
- // $tabbar-height: rem-calc(45);
807
- // $tabbar-icon-width: $tabbar-height;
808
- // $tabbar-line-height: $tabbar-height;
809
- // $tabbar-color: $white;
810
- // $tabbar-middle-padding: 0 rem-calc(10);
811
-
812
- // Off Canvas Divider Styles
813
- // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
814
- // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
815
-
816
- // Off Canvas Tab Bar Headers
817
- // $tabbar-header-color: $white;
818
- // $tabbar-header-weight: $font-weight-bold;
819
- // $tabbar-header-line-height: $tabbar-height;
820
- // $tabbar-header-margin: 0;
821
-
822
- // Off Canvas Menu Variables
823
- // $off-canvas-width: rem-calc(250);
824
- // $off-canvas-bg: $oil;
825
- // $off-canvas-bg-hover: scale-color($tabbar-bg, $lightness: -30%);
826
-
827
- // Off Canvas Menu List Variables
828
- // $off-canvas-label-padding: 0.3rem rem-calc(15);
829
- // $off-canvas-label-color: $aluminum;
830
- // $off-canvas-label-text-transform: uppercase;
831
- // $off-canvas-label-font-size: rem-calc(12);
832
- // $off-canvas-label-font-weight: $font-weight-bold;
833
- // $off-canvas-label-bg: $tuatara;
834
- // $off-canvas-label-border-top: 1px solid scale-color($tuatara, $lightness: 14%);
835
- // $off-canvas-label-border-bottom: none;
836
- // $off-canvas-label-margin:0;
837
- // $off-canvas-link-padding: rem-calc(10, 15);
838
- // $off-canvas-link-color: rgba($white, 0.7);
839
- // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
840
- // $off-canvas-back-bg: $tuatara;
841
- // $off-canvas-back-border-top: $off-canvas-label-border-top;
842
- // $off-canvas-back-border-bottom: $off-canvas-label-border-bottom;
843
- // $off-canvas-back-hover-bg: scale-color($off-canvas-back-bg, $lightness: -30%);
844
- // $off-canvas-back-hover-border-top: 1px solid scale-color($off-canvas-label-bg, $lightness: 14%);
845
- // $off-canvas-back-hover-border-bottom: none;
846
-
847
- // Off Canvas Menu Icon Variables
848
- // $tabbar-menu-icon-color: $white;
849
- // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
850
-
851
- // $tabbar-menu-icon-text-indent: rem-calc(35);
852
- // $tabbar-menu-icon-width: $tabbar-height;
853
- // $tabbar-menu-icon-height: $tabbar-height;
854
- // $tabbar-menu-icon-padding: 0;
855
-
856
- // $tabbar-hamburger-icon-width: rem-calc(16);
857
- // $tabbar-hamburger-icon-left: false;
858
- // $tabbar-hamburger-icon-top: false;
859
- // $tabbar-hamburger-icon-thickness: 1px;
860
- // $tabbar-hamburger-icon-gap: 6px;
861
-
862
- // Off Canvas Back-Link Overlay
863
- // $off-canvas-overlay-transition: background 300ms ease;
864
- // $off-canvas-overlay-cursor: pointer;
865
- // $off-canvas-overlay-box-shadow: -4px 0 4px rgba($black, 0.5), 4px 0 4px rgba($black, 0.5);
866
- // $off-canvas-overlay-background: rgba($white, 0.2);
867
- // $off-canvas-overlay-background-hover: rgba($white, 0.05);
868
-
869
- // Transition Variables
870
- // $menu-slide: "transform 500ms ease";
871
-
872
- // 19. Orbit
873
- // - - - - - - - - - - - - - - - - - - - - - - - - -
874
-
875
- // $include-html-orbit-classes: $include-html-classes;
876
-
877
- // We use these to control the caption styles
878
- // $orbit-container-bg: none;
879
- // $orbit-caption-bg: rgba(51,51,51, 0.8);
880
- // $orbit-caption-font-color: $white;
881
- // $orbit-caption-font-size: rem-calc(14);
882
- // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
883
- // $orbit-caption-padding: rem-calc(10 14);
884
- // $orbit-caption-height: auto;
885
-
886
- // We use these to control the left/right nav styles
887
- // $orbit-nav-bg: transparent;
888
- // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
889
- // $orbit-nav-arrow-color: $white;
890
- // $orbit-nav-arrow-color-hover: $white;
891
-
892
- // We use these to control the timer styles
893
- // $orbit-timer-bg: rgba(255,255,255,0.3);
894
- // $orbit-timer-show-progress-bar: true;
895
-
896
- // We use these to control the bullet nav styles
897
- // $orbit-bullet-nav-color: $iron;
898
- // $orbit-bullet-nav-color-active: $aluminum;
899
- // $orbit-bullet-radius: rem-calc(9);
900
-
901
- // We use these to controls the style of slide numbers
902
- // $orbit-slide-number-bg: rgba(0,0,0,0);
903
- // $orbit-slide-number-font-color: $white;
904
- // $orbit-slide-number-padding: rem-calc(5);
905
-
906
- // Hide controls on small
907
- // $orbit-nav-hide-for-small: true;
908
- // $orbit-bullet-hide-for-small: true;
909
- // $orbit-timer-hide-for-small: true;
910
-
911
- // Graceful Loading Wrapper and preloader
912
- // $wrapper-class: "slideshow-wrapper";
913
- // $preloader-class: "preloader";
914
-
915
- // 20. Pagination
916
- // - - - - - - - - - - - - - - - - - - - - - - - - -
917
-
918
- // $include-pagination-classes: $include-html-classes;
919
-
920
- // We use these to control the pagination container
921
- // $pagination-height: rem-calc(24);
922
- // $pagination-margin: rem-calc(-5);
923
-
924
- // We use these to set the list-item properties
925
- // $pagination-li-float: $default-float;
926
- // $pagination-li-height: rem-calc(24);
927
- // $pagination-li-font-color: $jet;
928
- // $pagination-li-font-size: rem-calc(14);
929
- // $pagination-li-margin: rem-calc(5);
930
-
931
- // We use these for the pagination anchor links
932
- // $pagination-link-pad: rem-calc(1 10 1);
933
- // $pagination-link-font-color: $aluminum;
934
- // $pagination-link-active-bg: scale-color($white, $lightness: -10%);
935
-
936
- // We use these for disabled anchor links
937
- // $pagination-link-unavailable-cursor: default;
938
- // $pagination-link-unavailable-font-color: $aluminum;
939
- // $pagination-link-unavailable-bg-active: transparent;
940
-
941
- // We use these for currently selected anchor links
942
- // $pagination-link-current-background: $primary-color;
943
- // $pagination-link-current-font-color: $white;
944
- // $pagination-link-current-font-weight: $font-weight-bold;
945
- // $pagination-link-current-cursor: default;
946
- // $pagination-link-current-active-bg: $primary-color;
947
-
948
- // 21. Panels
949
- // - - - - - - - - - - - - - - - - - - - - - - - - -
950
-
951
- // $include-html-panel-classes: $include-html-classes;
952
-
953
- // We use these to control the background and border styles
954
- // $panel-bg: scale-color($white, $lightness: -5%);
955
- $panel-border-style: solid;
956
- $panel-border-size: 0;
957
-
958
- // We use this % to control how much we darken things on hover
959
- // $panel-function-factor: -11%;
960
- // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
961
-
962
- // We use these to set default inner padding and bottom margin
963
- // $panel-margin-bottom: rem-calc(20);
964
- // $panel-padding: rem-calc(20);
965
-
966
- // We use these to set default font colors
967
- // $panel-font-color: $oil;
968
- // $panel-font-color-alt: $white;
969
-
970
- // $panel-header-adjust: true;
971
- // $callout-panel-link-color: $primary-color;
972
-
973
- // 22. Pricing Tables
974
- // - - - - - - - - - - - - - - - - - - - - - - - - -
975
-
976
- // $include-html-pricing-classes: $include-html-classes;
977
-
978
- // We use this to control the border color
979
- // $price-table-border: solid 1px $gainsboro;
980
-
981
- // We use this to control the bottom margin of the pricing table
982
- // $price-table-margin-bottom: rem-calc(20);
983
-
984
- // We use these to control the title styles
985
- // $price-title-bg: $oil;
986
- // $price-title-padding: rem-calc(15 20);
987
- // $price-title-align: center;
988
- // $price-title-color: $smoke;
989
- // $price-title-weight: $font-weight-normal;
990
- // $price-title-size: rem-calc(16);
991
- // $price-title-font-family: $body-font-family;
992
-
993
- // We use these to control the price styles
994
- // $price-money-bg: $vapor ;
995
- // $price-money-padding: rem-calc(15 20);
996
- // $price-money-align: center;
997
- // $price-money-color: $oil;
998
- // $price-money-weight: $font-weight-normal;
999
- // $price-money-size: rem-calc(32);
1000
- // $price-money-font-family: $body-font-family;
1001
-
1002
- // We use these to control the description styles
1003
- // $price-bg: $white;
1004
- // $price-desc-color: $monsoon;
1005
- // $price-desc-padding: rem-calc(15);
1006
- // $price-desc-align: center;
1007
- // $price-desc-font-size: rem-calc(12);
1008
- // $price-desc-weight: $font-weight-normal;
1009
- // $price-desc-line-height: 1.4;
1010
- // $price-desc-bottom-border: dotted 1px $gainsboro;
1011
-
1012
- // We use these to control the list item styles
1013
- // $price-item-color: $oil;
1014
- // $price-item-padding: rem-calc(15);
1015
- // $price-item-align: center;
1016
- // $price-item-font-size: rem-calc(14);
1017
- // $price-item-weight: $font-weight-normal;
1018
- // $price-item-bottom-border: dotted 1px $gainsboro;
1019
-
1020
- // We use these to control the CTA area styles
1021
- // $price-cta-bg: $white;
1022
- // $price-cta-align: center;
1023
- // $price-cta-padding: rem-calc(20 20 0);
1024
-
1025
- // 23. Progress Bar
1026
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1027
-
1028
- // $include-html-media-classes: $include-html-classes;
1029
-
1030
- // We use this to set the progress bar height
1031
- // $progress-bar-height: rem-calc(25);
1032
- // $progress-bar-color: $vapor ;
1033
-
1034
- // We use these to control the border styles
1035
- // $progress-bar-border-color: scale-color($white, $lightness: 20%);
1036
- // $progress-bar-border-size: 1px;
1037
- // $progress-bar-border-style: solid;
1038
- // $progress-bar-border-radius: $global-radius;
1039
-
1040
- // We use these to control the margin & padding
1041
- // $progress-bar-pad: rem-calc(2);
1042
- // $progress-bar-margin-bottom: rem-calc(10);
1043
-
1044
- // We use these to set the meter colors
1045
- // $progress-meter-color: $primary-color;
1046
- // $progress-meter-secondary-color: $secondary-color;
1047
- // $progress-meter-success-color: $success-color;
1048
- // $progress-meter-alert-color: $alert-color;
1049
-
1050
- // 24. Range Slider
1051
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1052
-
1053
- // $include-html-range-slider-classes: $include-html-classes;
1054
-
1055
- // These variables define the slider bar styles
1056
- // $range-slider-bar-width: 100%;
1057
- // $range-slider-bar-height: rem-calc(16);
1058
-
1059
- // $range-slider-bar-border-width: 1px;
1060
- // $range-slider-bar-border-style: solid;
1061
- // $range-slider-bar-border-color: $gainsboro;
1062
- // $range-slider-radius: $global-radius;
1063
- // $range-slider-round: $global-rounded;
1064
- // $range-slider-bar-bg-color: $ghost;
1065
-
1066
- // Vertical bar styles
1067
- // $range-slider-vertical-bar-width: rem-calc(16);
1068
- // $range-slider-vertical-bar-height: rem-calc(200);
1069
-
1070
- // These variables define the slider handle styles
1071
- // $range-slider-handle-width: rem-calc(32);
1072
- // $range-slider-handle-height: rem-calc(22);
1073
- // $range-slider-handle-position-top: rem-calc(-5);
1074
- // $range-slider-handle-bg-color: $primary-color;
1075
- // $range-slider-handle-border-width: 1px;
1076
- // $range-slider-handle-border-style: solid;
1077
- // $range-slider-handle-border-color: none;
1078
- // $range-slider-handle-radius: $global-radius;
1079
- // $range-slider-handle-round: $global-rounded;
1080
- // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1081
- // $range-slider-handle-cursor: pointer;
1082
-
1083
- // 25. Reveal
1084
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1085
-
1086
- // $include-html-reveal-classes: $include-html-classes;
1087
-
1088
- // We use these to control the style of the reveal overlay.
1089
- // $reveal-overlay-bg: rgba($black, .45);
1090
- // $reveal-overlay-bg-old: $black;
1091
-
1092
- // We use these to control the style of the modal itself.
1093
- // $reveal-modal-bg: $white;
1094
- // $reveal-position-top: rem-calc(100);
1095
- // $reveal-default-width: 80%;
1096
- // $reveal-max-width: $row-width;
1097
- // $reveal-modal-padding: rem-calc(20);
1098
- // $reveal-box-shadow: 0 0 10px rgba($black,.4);
1099
-
1100
- // We use these to style the reveal close button
1101
- // $reveal-close-font-size: rem-calc(40);
1102
- // $reveal-close-top: rem-calc(8);
1103
- // $reveal-close-side: rem-calc(11);
1104
- // $reveal-close-color: $base;
1105
- // $reveal-close-weight: $font-weight-bold;
1106
-
1107
- // We use this to set the default radius used throughout the core.
1108
- // $reveal-radius: $global-radius;
1109
- // $reveal-round: $global-rounded;
1110
-
1111
- // We use these to control the modal border
1112
- // $reveal-border-style: solid;
1113
- // $reveal-border-width: 1px;
1114
- // $reveal-border-color: $steel;
1115
-
1116
- // $reveal-modal-class: "reveal-modal";
1117
- // $close-reveal-modal-class: "close-reveal-modal";
1118
-
1119
- // 26. Side Nav
1120
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1121
-
1122
- // $include-html-nav-classes: $include-html-classes;
1123
-
1124
- // We use this to control padding.
1125
- // $side-nav-padding: rem-calc(14 0);
1126
-
1127
- // We use these to control list styles.
1128
- // $side-nav-list-type: none;
1129
- // $side-nav-list-position: inside;
1130
- // $side-nav-list-margin: rem-calc(0 0 7 0);
1131
-
1132
- // We use these to control link styles.
1133
- // $side-nav-link-color: $primary-color;
1134
- // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
1135
- // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
1136
- // $side-nav-link-bg-hover: hsla(0, 0, 0, 0.025);
1137
- // $side-nav-link-margin: 0;
1138
- // $side-nav-link-padding: rem-calc(7 14);
1139
- // $side-nav-font-size: rem-calc(14);
1140
- // $side-nav-font-weight: $font-weight-normal;
1141
- // $side-nav-font-weight-active: $side-nav-font-weight;
1142
- // $side-nav-font-family: $body-font-family;
1143
- // $side-nav-font-family-active: $side-nav-font-family;
1144
-
1145
- // We use these to control heading styles.
1146
- // $side-nav-heading-color: $side-nav-link-color;
1147
- // $side-nav-heading-font-size: $side-nav-font-size;
1148
- // $side-nav-heading-font-weight: bold;
1149
- // $side-nav-heading-text-transform: uppercase;
1150
-
1151
- // We use these to control border styles
1152
- // $side-nav-divider-size: 1px;
1153
- // $side-nav-divider-style: solid;
1154
- // $side-nav-divider-color: scale-color($white, $lightness: 10%);
1155
-
1156
- // 27. Split Buttons
1157
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1158
-
1159
- // $include-html-button-classes: $include-html-classes;
1160
-
1161
- // We use these to control different shared styles for Split Buttons
1162
- // $split-button-function-factor: 10%;
1163
- // $split-button-pip-color: $white;
1164
- // $split-button-pip-color-alt: $oil;
1165
- // $split-button-active-bg-tint: rgba(0,0,0,0.1);
1166
-
1167
- // We use these to control tiny split buttons
1168
- // $split-button-padding-tny: $button-pip-tny * 10;
1169
- // $split-button-span-width-tny: $button-pip-tny * 6;
1170
- // $split-button-pip-size-tny: $button-pip-tny;
1171
- // $split-button-pip-top-tny: $button-pip-tny * 2;
1172
- // $split-button-pip-default-float-tny: rem-calc(-6);
1173
-
1174
- // We use these to control small split buttons
1175
- // $split-button-padding-sml: $button-pip-sml * 10;
1176
- // $split-button-span-width-sml: $button-pip-sml * 6;
1177
- // $split-button-pip-size-sml: $button-pip-sml;
1178
- // $split-button-pip-top-sml: $button-pip-sml * 1.5;
1179
- // $split-button-pip-default-float-sml: rem-calc(-6);
1180
-
1181
- // We use these to control medium split buttons
1182
- // $split-button-padding-med: $button-pip-med * 9;
1183
- // $split-button-span-width-med: $button-pip-med * 5.5;
1184
- // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
1185
- // $split-button-pip-top-med: $button-pip-med * 1.5;
1186
- // $split-button-pip-default-float-med: rem-calc(-6);
1187
-
1188
- // We use these to control large split buttons
1189
- // $split-button-padding-lrg: $button-pip-lrg * 8;
1190
- // $split-button-span-width-lrg: $button-pip-lrg * 5;
1191
- // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
1192
- // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
1193
- // $split-button-pip-default-float-lrg: rem-calc(-6);
1194
-
1195
- // 28. Sub Nav
1196
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1197
-
1198
- // $include-html-nav-classes: $include-html-classes;
1199
-
1200
- // We use these to control margin and padding
1201
- // $sub-nav-list-margin: rem-calc(-4 0 18);
1202
- // $sub-nav-list-padding-top: rem-calc(4);
1203
-
1204
- // We use this to control the definition
1205
- // $sub-nav-font-family: $body-font-family;
1206
- // $sub-nav-font-size: rem-calc(14);
1207
- // $sub-nav-font-color: $aluminum;
1208
- // $sub-nav-font-weight: $font-weight-normal;
1209
- // $sub-nav-text-decoration: none;
1210
- // $sub-nav-padding: rem-calc(3 16);
1211
- // $sub-nav-border-radius: 3px;
1212
- // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
1213
-
1214
- // We use these to control the active item styles
1215
- // $sub-nav-active-font-weight: $font-weight-normal;
1216
- // $sub-nav-active-bg: $primary-color;
1217
- // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
1218
- // $sub-nav-active-color: $white;
1219
- // $sub-nav-active-padding: $sub-nav-padding;
1220
- // $sub-nav-active-cursor: default;
1221
-
1222
- // $sub-nav-item-divider: "";
1223
- // $sub-nav-item-divider-margin: rem-calc(12);
1224
-
1225
- // 29. Switch
1226
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1227
-
1228
- // $include-html-form-classes: $include-html-classes;
1229
-
1230
- // Controlling border styles and background colors for the switch container
1231
- // $switch-border-color: scale-color($white, $lightness: -20%);
1232
- // $switch-border-style: solid;
1233
- // $switch-border-width: 1px;
1234
- // $switch-bg: $white;
1235
-
1236
- // We use these to control the switch heights for our default classes
1237
- // $switch-height-tny: rem-calc(22);
1238
- // $switch-height-sml: rem-calc(28);
1239
- // $switch-height-med: rem-calc(36);
1240
- // $switch-height-lrg: rem-calc(44);
1241
- // $switch-bottom-margin: rem-calc(20);
1242
-
1243
- // We use these to control default font sizes for our classes.
1244
- // $switch-font-size-tny: 11px;
1245
- // $switch-font-size-sml: 12px;
1246
- // $switch-font-size-med: 14px;
1247
- // $switch-font-size-lrg: 17px;
1248
- // $switch-label-side-padding: 6px;
1249
-
1250
- // We use these to style the switch-paddle
1251
- // $switch-paddle-bg: $white;
1252
- // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1253
- // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1254
- // $switch-paddle-border-width: 1px;
1255
- // $switch-paddle-border-style: solid;
1256
- // $switch-paddle-transition-speed: .1s;
1257
- // $switch-paddle-transition-ease: ease-out;
1258
- // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1259
- // $switch-negative-color: $white-smoke;
1260
-
1261
- // Outline Style for tabbing through switches
1262
- // $switch-label-outline: 1px dotted $jumbo;
1263
-
1264
- // 30. Tables
1265
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1266
-
1267
- // $include-html-table-classes: $include-html-classes;
1268
-
1269
- // These control the background color for the table and even rows
1270
- $table-bg: $white;
1271
- $table-even-row-bg: $white;
1272
-
1273
- // These control the table cell border style
1274
- $table-border-style: none;
1275
- $table-border-size: 0;
1276
- // $table-border-color: $gainsboro;
1277
-
1278
- // These control the table head styles
1279
- $table-head-bg: $smoke;
1280
- // $table-head-font-size: rem-calc(14);
1281
- $table-head-font-color: $charcoal;
1282
- $table-head-font-weight: bold;
1283
- $table-head-padding: rem-calc(14);
1284
-
1285
- // These control the row padding and font styles
1286
- $table-row-padding: rem-calc(14);
1287
- // $table-row-font-size: rem-calc(14);
1288
- // $table-row-font-color: $jet;
1289
- $table-line-height: rem-calc(14);
1290
-
1291
- // These are for controlling the layout, display and margin of tables
1292
- // $table-layout: auto;
1293
- // $table-display: table-cell;
1294
- // $table-margin-bottom: rem-calc(20);
1295
-
1296
- // 31. Tabs
1297
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1298
-
1299
- // $include-html-tabs-classes: $include-html-classes;
1300
-
1301
- // $tabs-navigation-padding: rem-calc(16);
1302
- $tabs-navigation-bg-color: $white;
1303
- // $tabs-navigation-active-bg-color: $white;
1304
- $tabs-navigation-hover-bg-color: $white;
1305
- // $tabs-navigation-font-color: $jet;
1306
- $tabs-navigation-active-font-color: $primary-color;
1307
- // $tabs-navigation-font-size: rem-calc(16);
1308
- // $tabs-navigation-font-family: $body-font-family;
1309
-
1310
- // $tabs-content-margin-bottom: rem-calc(24);
1311
- // $tabs-content-padding: $column-gutter/2;
1312
-
1313
- // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1314
-
1315
- // 32. Thumbnails
1316
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1317
-
1318
- // $include-html-media-classes: $include-html-classes;
1319
-
1320
- // We use these to control border styles
1321
- // $thumb-border-style: solid;
1322
- // $thumb-border-width: 4px;
1323
- // $thumb-border-color: $white;
1324
- // $thumb-box-shadow: 0 0 0 1px rgba($black,.2);
1325
- // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1326
-
1327
- // Radius and transition speed for thumbs
1328
- // $thumb-radius: $global-radius;
1329
- // $thumb-transition-speed: 200ms;
1330
-
1331
- // 33. Tooltips
1332
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1333
-
1334
- // $include-html-tooltip-classes: $include-html-classes;
1335
-
1336
- // $has-tip-border-bottom: dotted 1px $iron;
1337
- // $has-tip-font-weight: $font-weight-bold;
1338
- // $has-tip-font-color: $oil;
1339
- // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1340
- // $has-tip-font-color-hover: $primary-color;
1341
- // $has-tip-cursor-type: help;
1342
-
1343
- // $tooltip-padding: rem-calc(12);
1344
- // $tooltip-bg: $oil;
1345
- // $tooltip-font-size: rem-calc(14);
1346
- // $tooltip-font-weight: $font-weight-normal;
1347
- // $tooltip-font-color: $white;
1348
- // $tooltip-line-height: 1.3;
1349
- // $tooltip-close-font-size: rem-calc(10);
1350
- // $tooltip-close-font-weight: $font-weight-normal;
1351
- // $tooltip-close-font-color: $monsoon;
1352
- // $tooltip-font-size-sml: rem-calc(14);
1353
- // $tooltip-radius: $global-radius;
1354
- // $tooltip-rounded: $global-rounded;
1355
- // $tooltip-pip-size: 5px;
1356
- // $tooltip-max-width: 300px;
1357
-
1358
- // 34. Top Bar
1359
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1360
-
1361
- // $include-html-top-bar-classes: $include-html-classes;
1362
-
1363
- // Background color for the top bar
1364
- $topbar-bg-color: #333;
1365
- // $topbar-bg: $topbar-bg-color;
1366
-
1367
- // Height and margin
1368
- $topbar-height: rem-calc(55);
1369
- // $topbar-margin-bottom: 0;
1370
-
1371
- // Controlling the styles for the title in the top bar
1372
- // $topbar-title-weight: $font-weight-normal;
1373
- // $topbar-title-font-size: rem-calc(17);
1374
-
1375
- // Style the top bar dropdown elements
1376
- // $topbar-dropdown-bg: $oil;
1377
- // $topbar-dropdown-link-color: $white;
1378
- // $topbar-dropdown-link-bg: $oil;
1379
- // $topbar-dropdown-link-weight: $font-weight-normal;
1380
- // $topbar-dropdown-toggle-size: 5px;
1381
- // $topbar-dropdown-toggle-color: $white;
1382
- // $topbar-dropdown-toggle-alpha: 0.4;
1383
-
1384
- // Set the link colors and styles for top-level nav
1385
- // $topbar-link-color: $white;
1386
- // $topbar-link-color-hover: $white;
1387
- // $topbar-link-color-active: $white;
1388
- // $topbar-link-color-active-hover: $white;
1389
- // $topbar-link-weight: $font-weight-normal;
1390
- // $topbar-link-font-size: rem-calc(13);
1391
- // $topbar-link-hover-lightness: -10%; // Darken by 10%
1392
- // $topbar-link-bg: $topbar-bg;
1393
- // $topbar-link-bg-color-hover: $charcoal;
1394
- // $topbar-link-bg-hover: #272727;
1395
- // $topbar-link-bg-active: $primary-color;
1396
- // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1397
- // $topbar-link-font-family: $body-font-family;
1398
- // $topbar-link-text-transform: none;
1399
- // $topbar-link-padding: $topbar-height / 3;
1400
- // $topbar-back-link-size: $h5-font-size;
1401
- // $topbar-link-dropdown-padding: 20px;
1402
-
1403
- // $topbar-button-font-size: 0.75rem;
1404
- // $topbar-button-top: 7px;
1405
-
1406
- // $topbar-dropdown-label-color: $monsoon;
1407
- // $topbar-dropdown-label-text-transform: uppercase;
1408
- // $topbar-dropdown-label-font-weight: $font-weight-bold;
1409
- // $topbar-dropdown-label-font-size: rem-calc(10);
1410
- // $topbar-dropdown-label-bg: $oil;
1411
-
1412
- // Top menu icon styles
1413
- // $topbar-menu-link-transform: uppercase;
1414
- // $topbar-menu-link-font-size: rem-calc(13);
1415
- // $topbar-menu-link-weight: $font-weight-bold;
1416
- // $topbar-menu-link-color: $white;
1417
- // $topbar-menu-icon-color: $white;
1418
- // $topbar-menu-link-color-toggled: $jumbo;
1419
- // $topbar-menu-icon-color-toggled: $jumbo;
1420
-
1421
- // Transitions and breakpoint styles
1422
- // $topbar-transition-speed: 300ms;
1423
- // Using rem-calc for the below breakpoint causes issues with top bar
1424
- // $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
1425
- // $topbar-media-query: $medium-up;
1426
-
1427
- // Divider Styles
1428
- // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1429
- // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1430
-
1431
- // Sticky Class
1432
- // $topbar-sticky-class: ".sticky";
1433
- // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1434
-
1435
- // 36. Visibility Classes
1436
- // - - - - - - - - - - - - - - - - - - - - - - - - -
1437
-
1438
- // $include-html-visibility-classes: $include-html-classes;
1439
- // $include-table-visibility-classes: true;
1440
- // $include-legacy-visibility-classes: true;
1441
- // $include-accessibility-classes: true;
1442
-
1443
- @import 'foundation';