rmails 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +24 -0
  4. data/Gemfile.lock +167 -0
  5. data/LICENSE.txt +20 -0
  6. data/README.markdown +9 -0
  7. data/Rakefile +31 -0
  8. data/Rakefile1 +9 -0
  9. data/Vagrantfile +51 -0
  10. data/app/assets/images/arrow_bottom.gif +0 -0
  11. data/app/assets/images/arrow_right.gif +0 -0
  12. data/app/assets/images/at-sign.png +0 -0
  13. data/app/assets/images/checkerboard.gif +0 -0
  14. data/app/assets/images/glyphicons-halflings-white.png +0 -0
  15. data/app/assets/images/glyphicons-halflings.png +0 -0
  16. data/app/assets/images/icon_draft.gif +0 -0
  17. data/app/assets/images/icon_layout.gif +0 -0
  18. data/app/assets/images/icon_move.gif +0 -0
  19. data/app/assets/images/icon_regular.gif +0 -0
  20. data/app/assets/images/icon_snippet.gif +0 -0
  21. data/app/assets/images/nav_arrow.png +0 -0
  22. data/app/assets/images/x.png +0 -0
  23. data/app/assets/javascripts/application.coffee.erb +27 -0
  24. data/app/assets/javascripts/canjs/can.construct.proxy.js +60 -0
  25. data/app/assets/javascripts/canjs/can.construct.super.js +44 -0
  26. data/app/assets/javascripts/canjs/can.control.plugin.js +245 -0
  27. data/app/assets/javascripts/canjs/can.control.view.js +88 -0
  28. data/app/assets/javascripts/canjs/can.dojo.js +3669 -0
  29. data/app/assets/javascripts/canjs/can.dojo.min.js +66 -0
  30. data/app/assets/javascripts/canjs/can.fixture.js +1020 -0
  31. data/app/assets/javascripts/canjs/can.jquery.js +2995 -0
  32. data/app/assets/javascripts/canjs/can.jquery.min.js +52 -0
  33. data/app/assets/javascripts/canjs/can.mootools.js +3462 -0
  34. data/app/assets/javascripts/canjs/can.mootools.min.js +63 -0
  35. data/app/assets/javascripts/canjs/can.observe.attributes.js +293 -0
  36. data/app/assets/javascripts/canjs/can.observe.backup.js +368 -0
  37. data/app/assets/javascripts/canjs/can.observe.delegate.js +359 -0
  38. data/app/assets/javascripts/canjs/can.observe.setter.js +58 -0
  39. data/app/assets/javascripts/canjs/can.observe.validations.js +374 -0
  40. data/app/assets/javascripts/canjs/can.view.modifiers.js +292 -0
  41. data/app/assets/javascripts/canjs/can.yui.js +3530 -0
  42. data/app/assets/javascripts/canjs/can.yui.min.js +65 -0
  43. data/app/assets/javascripts/canjs/can.zepto.js +3426 -0
  44. data/app/assets/javascripts/canjs/can.zepto.min.js +62 -0
  45. data/app/assets/javascripts/controls/admins.coffee.erb +105 -0
  46. data/app/assets/javascripts/controls/aliases.coffee.erb +91 -0
  47. data/app/assets/javascripts/controls/domains.coffee.erb +115 -0
  48. data/app/assets/javascripts/controls/settings.coffee.erb +47 -0
  49. data/app/assets/javascripts/controls/users.coffee.erb +94 -0
  50. data/app/assets/javascripts/lib/facebox.js +311 -0
  51. data/app/assets/javascripts/lib/html5.js +2 -0
  52. data/app/assets/javascripts/lib/jquery.js +9301 -0
  53. data/app/assets/javascripts/lib/jquery_formparams.js +108 -0
  54. data/app/assets/javascripts/lib/jquery_input_hint.js +20 -0
  55. data/app/assets/javascripts/lib/jquery_paginate.js +120 -0
  56. data/app/assets/javascripts/lib/jquery_ui_custom.js +6 -0
  57. data/app/assets/javascripts/lib/json2.js +487 -0
  58. data/app/assets/javascripts/lib/utils.coffee.erb +48 -0
  59. data/app/assets/javascripts/models/admin.coffee.erb +42 -0
  60. data/app/assets/javascripts/models/alias.coffee.erb +28 -0
  61. data/app/assets/javascripts/models/domain.coffee.erb +39 -0
  62. data/app/assets/javascripts/models/property.coffee.erb +18 -0
  63. data/app/assets/javascripts/models/user.coffee.erb +29 -0
  64. data/app/assets/stylesheets/application.sass +156 -0
  65. data/app/assets/stylesheets/base.css.sass +243 -0
  66. data/app/assets/stylesheets/facebox.css +80 -0
  67. data/app/assets/stylesheets/lib/bootstrap.css +9 -0
  68. data/app/assets/stylesheets/twitter/bootstrap-responsive.scss +1 -0
  69. data/app/assets/stylesheets/twitter/bootstrap.scss +63 -0
  70. data/app/assets/stylesheets/twitter/bootstrap/_accordion.scss +34 -0
  71. data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +79 -0
  72. data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +24 -0
  73. data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +229 -0
  74. data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +228 -0
  75. data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +158 -0
  76. data/app/assets/stylesheets/twitter/bootstrap/_close.scss +32 -0
  77. data/app/assets/stylesheets/twitter/bootstrap/_code.scss +61 -0
  78. data/app/assets/stylesheets/twitter/bootstrap/_component-animations.scss +22 -0
  79. data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +237 -0
  80. data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +689 -0
  81. data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +21 -0
  82. data/app/assets/stylesheets/twitter/bootstrap/_hero-unit.scss +25 -0
  83. data/app/assets/stylesheets/twitter/bootstrap/_labels-badges.scss +83 -0
  84. data/app/assets/stylesheets/twitter/bootstrap/_layouts.scss +16 -0
  85. data/app/assets/stylesheets/twitter/bootstrap/_media.scss +55 -0
  86. data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +690 -0
  87. data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +95 -0
  88. data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +497 -0
  89. data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +409 -0
  90. data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +43 -0
  91. data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +123 -0
  92. data/app/assets/stylesheets/twitter/bootstrap/_popovers.scss +133 -0
  93. data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +122 -0
  94. data/app/assets/stylesheets/twitter/bootstrap/_reset.scss +216 -0
  95. data/app/assets/stylesheets/twitter/bootstrap/_responsive-1200px-min.scss +28 -0
  96. data/app/assets/stylesheets/twitter/bootstrap/_responsive-767px-max.scss +193 -0
  97. data/app/assets/stylesheets/twitter/bootstrap/_responsive-768px-979px.scss +19 -0
  98. data/app/assets/stylesheets/twitter/bootstrap/_responsive-navbar.scss +189 -0
  99. data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +74 -0
  100. data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +53 -0
  101. data/app/assets/stylesheets/twitter/bootstrap/_sprites.scss +197 -0
  102. data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +235 -0
  103. data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +53 -0
  104. data/app/assets/stylesheets/twitter/bootstrap/_tooltip.scss +70 -0
  105. data/app/assets/stylesheets/twitter/bootstrap/_type.scss +247 -0
  106. data/app/assets/stylesheets/twitter/bootstrap/_utilities.scss +45 -0
  107. data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +301 -0
  108. data/app/assets/stylesheets/twitter/bootstrap/_wells.scss +29 -0
  109. data/app/assets/stylesheets/twitter/bootstrap/responsive.scss +48 -0
  110. data/app/controllers/admin_users_controller.rb +62 -0
  111. data/app/controllers/aliases_controller.rb +35 -0
  112. data/app/controllers/application_controller.rb +20 -0
  113. data/app/controllers/domains_controller.rb +48 -0
  114. data/app/controllers/server_controller.rb +28 -0
  115. data/app/controllers/users_controller.rb +35 -0
  116. data/app/helpers/admin_users_helper.rb +11 -0
  117. data/app/helpers/application_helper.rb +2 -0
  118. data/app/helpers/domains_helper.rb +25 -0
  119. data/app/helpers/server_helper.rb +30 -0
  120. data/app/mailers/.gitkeep +0 -0
  121. data/app/models/.gitkeep +0 -0
  122. data/app/models/admin_user.rb +54 -0
  123. data/app/models/certificate_manager.rb +46 -0
  124. data/app/models/property.rb +103 -0
  125. data/app/models/property/awstats.rb +15 -0
  126. data/app/models/property/dovecot.rb +61 -0
  127. data/app/models/property/dspam.rb +45 -0
  128. data/app/models/property/nginx.rb +47 -0
  129. data/app/models/property/postfix.rb +64 -0
  130. data/app/models/property_value_validator.rb +41 -0
  131. data/app/models/system_manager.rb +88 -0
  132. data/app/models/virtual_alias.rb +13 -0
  133. data/app/models/virtual_domain.rb +15 -0
  134. data/app/models/virtual_user.rb +51 -0
  135. data/app/views/admin_users/_form.html.haml +21 -0
  136. data/app/views/admin_users/first.html.haml +12 -0
  137. data/app/views/admin_users/index.html.haml +61 -0
  138. data/app/views/aliases/_form.html.haml +11 -0
  139. data/app/views/aliases/_list.html.haml +0 -0
  140. data/app/views/devise/confirmations/new.html.haml +9 -0
  141. data/app/views/devise/mailer/confirmation_instructions.html.haml +4 -0
  142. data/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
  143. data/app/views/devise/mailer/unlock_instructions.html.haml +5 -0
  144. data/app/views/devise/passwords/edit.html.haml +14 -0
  145. data/app/views/devise/passwords/new.html.haml +12 -0
  146. data/app/views/devise/registrations/edit.html.haml +18 -0
  147. data/app/views/devise/registrations/new.html.haml +10 -0
  148. data/app/views/devise/sessions/new.html.haml +16 -0
  149. data/app/views/devise/shared/_links.haml +17 -0
  150. data/app/views/devise/unlocks/new.html.haml +11 -0
  151. data/app/views/domains/_fields.html.haml +0 -0
  152. data/app/views/domains/_form.html.haml +7 -0
  153. data/app/views/domains/index.html.haml +133 -0
  154. data/app/views/domains/show.html.haml +1 -0
  155. data/app/views/layouts/_nav.html.haml +3 -0
  156. data/app/views/layouts/application.html.haml +29 -0
  157. data/app/views/server/_certificates.html.haml +10 -0
  158. data/app/views/server/_dovecot.html.haml +27 -0
  159. data/app/views/server/_dspam.html.haml +9 -0
  160. data/app/views/server/_postfix_info.html.haml +5 -0
  161. data/app/views/server/_postfix_test.html.haml +5 -0
  162. data/app/views/server/_status.html.haml +11 -0
  163. data/app/views/server/index.html.haml +36 -0
  164. data/app/views/users/_form.html.haml +11 -0
  165. data/app/views/users/_list.html.haml +0 -0
  166. data/bin/rmails +43 -0
  167. data/config.ru +4 -0
  168. data/config/application.rb +62 -0
  169. data/config/boot.rb +6 -0
  170. data/config/environment.rb +5 -0
  171. data/config/environments/development.rb +37 -0
  172. data/config/environments/production.rb +67 -0
  173. data/config/environments/test.rb +37 -0
  174. data/config/initializers/backtrace_silencers.rb +7 -0
  175. data/config/initializers/devise.rb +240 -0
  176. data/config/initializers/devise_encryptable.rb +37 -0
  177. data/config/initializers/devise_models.rb +86 -0
  178. data/config/initializers/inflections.rb +15 -0
  179. data/config/initializers/mime_types.rb +5 -0
  180. data/config/initializers/secret_token.rb +7 -0
  181. data/config/initializers/session_store.rb +8 -0
  182. data/config/initializers/simple_form.rb +142 -0
  183. data/config/initializers/simple_form_bootstrap.rb +45 -0
  184. data/config/initializers/wrap_parameters.rb +14 -0
  185. data/config/locales/cz.yml +45 -0
  186. data/config/locales/devise.cz.yml +47 -0
  187. data/config/locales/devise.en.yml +60 -0
  188. data/config/locales/en.yml +5 -0
  189. data/config/locales/server/cz.yml +14 -0
  190. data/config/locales/server/en.yml +7 -0
  191. data/config/locales/server/help/dovecot/cz.yml +21 -0
  192. data/config/locales/server/help/dovecot/en.yml +18 -0
  193. data/config/locales/server/help/dspam/cz.yml +10 -0
  194. data/config/locales/server/help/dspam/en.yml +4 -0
  195. data/config/locales/server/key/dovecot/cz.yml +23 -0
  196. data/config/locales/server/key/dovecot/en.yml +20 -0
  197. data/config/locales/server/key/dspam/cz.yml +10 -0
  198. data/config/locales/server/key/dspam/en.yml +4 -0
  199. data/config/locales/simple_form.en.yml +26 -0
  200. data/config/locales/views/admin_users/cz.yml +25 -0
  201. data/config/locales/views/admin_users/en.yml +5 -0
  202. data/config/locales/views/aliases/cz.yml +17 -0
  203. data/config/locales/views/aliases/en.yml +1 -0
  204. data/config/locales/views/devise/cz.yml +26 -0
  205. data/config/locales/views/devise/en.yml +13 -0
  206. data/config/locales/views/domains/cz.yml +15 -0
  207. data/config/locales/views/domains/en.yml +15 -0
  208. data/config/locales/views/server/cz.yml +19 -0
  209. data/config/locales/views/server/en.yml +3 -0
  210. data/config/locales/views/users/cz.yml +18 -0
  211. data/config/locales/views/users/en.yml +1 -0
  212. data/config/routes.rb +80 -0
  213. data/db/migrate/20121112201233_virtual_domain.rb +11 -0
  214. data/db/migrate/20121112201247_virtual_alias.rb +10 -0
  215. data/db/migrate/20121112201341_virtual_user.rb +34 -0
  216. data/db/migrate/20121112201359_create_admin_user.rb +30 -0
  217. data/db/migrate/20121112201411_server_configuration.rb +13 -0
  218. data/db/migrate/20130304083938_join_domains_users.rb +12 -0
  219. data/db/migrate/20130311214040_create_versions.rb +18 -0
  220. data/db/seeds.rb +45 -0
  221. data/lib/devise-encryptable.rb +1 -0
  222. data/lib/rmails.rb +5 -0
  223. data/lib/rmails/installer.rb +37 -0
  224. data/lib/rmails/version.rb +3 -0
  225. data/lib/tasks/.gitkeep +0 -0
  226. data/lib/templates/haml/scaffold/_form.html.haml +10 -0
  227. data/locals +0 -0
  228. data/log/.gitkeep +0 -0
  229. data/public/404.html +26 -0
  230. data/public/422.html +26 -0
  231. data/public/500.html +25 -0
  232. data/public/favicon.ico +0 -0
  233. data/public/fonts/London.eot +0 -0
  234. data/public/fonts/London.otf +0 -0
  235. data/public/fonts/London.woff +0 -0
  236. data/public/fonts/LondonBold.otf +0 -0
  237. data/public/robots.txt +5 -0
  238. data/rmails.gemspec +35 -0
  239. data/script/prepflog.pl +576 -0
  240. data/script/rails +6 -0
  241. data/system/config/automateit_env.rb +16 -0
  242. data/system/config/fields.yml +48 -0
  243. data/system/config/tags.yml +39 -0
  244. data/system/dist/README_AutomateIt_dist.txt +20 -0
  245. data/system/dist/amavis/spamassassin.cf.erb +85 -0
  246. data/system/dist/amavis/user.erb +33 -0
  247. data/system/dist/awstats/awstats.mail.conf.erb +41 -0
  248. data/system/dist/awstats/prepflog.pl +576 -0
  249. data/system/dist/dovecot/dovecot-sql.conf.ext.erb +14 -0
  250. data/system/dist/dovecot/dovecot.conf.erb +297 -0
  251. data/system/dist/dovecot/old_dovecot.conf.erb +63 -0
  252. data/system/dist/dspam/conf.erb +96 -0
  253. data/system/dist/dspam/pgsql.conf +33 -0
  254. data/system/dist/nginx/awstats.erb +17 -0
  255. data/system/dist/nginx/rmails.erb +40 -0
  256. data/system/dist/postfix/email2email.cf.erb +5 -0
  257. data/system/dist/postfix/main.cf.erb +118 -0
  258. data/system/dist/postfix/master.cf.erb +74 -0
  259. data/system/dist/postfix/sasl.conf.erb +3 -0
  260. data/system/dist/postfix/sender_login_maps.cf.erb +5 -0
  261. data/system/dist/postfix/virtual_alias_maps.cf.erb +5 -0
  262. data/system/dist/postfix/virtual_mailbox_domains.cf.erb +5 -0
  263. data/system/dist/postfix/virtual_mailbox_maps.cf.erb +5 -0
  264. data/system/dist/postgresql/postgresql.conf.erb +54 -0
  265. data/system/dist/rmails/Gemfile.1 +8 -0
  266. data/system/dist/rmails/Gemfile.2 +24 -0
  267. data/system/dist/rmails/database.yml.erb +15 -0
  268. data/system/dist/sudoers +37 -0
  269. data/system/lib/README_AutomateIt_lib.txt +22 -0
  270. data/system/lib/dkim_key.rb +9 -0
  271. data/system/lib/smtpd_key.rb +39 -0
  272. data/system/lib/ssl.rb +23 -0
  273. data/system/recipes/01_prepare_server.rb +84 -0
  274. data/system/recipes/02_setup_database.rb +65 -0
  275. data/system/recipes/03_setup_postfix.rb +124 -0
  276. data/system/recipes/04_setup_dovecot.rb +78 -0
  277. data/system/recipes/05_setup_nginx.rb +29 -0
  278. data/system/recipes/06_setup_dspam.rb +24 -0
  279. data/system/recipes/07_setup_amavis.rb +16 -0
  280. data/system/recipes/08_setup_spamassassin.rb +22 -0
  281. data/system/recipes/09_setup_awstats.rb +49 -0
  282. data/system/recipes/XX_start_services.rb +5 -0
  283. data/test/fixtures/.gitkeep +0 -0
  284. data/test/functional/.gitkeep +0 -0
  285. data/test/functional/aliases_controller_test.rb +7 -0
  286. data/test/functional/domains_controller_test.rb +7 -0
  287. data/test/functional/users_controller_test.rb +7 -0
  288. data/test/integration/.gitkeep +0 -0
  289. data/test/performance/browsing_test.rb +12 -0
  290. data/test/test_helper.rb +13 -0
  291. data/test/unit/.gitkeep +0 -0
  292. data/test/unit/helpers/aliases_helper_test.rb +4 -0
  293. data/test/unit/helpers/domains_helper_test.rb +4 -0
  294. data/test/unit/helpers/users_helper_test.rb +4 -0
  295. data/vendor/assets/javascripts/.gitkeep +0 -0
  296. data/vendor/assets/javascripts/canjs/can.construct.proxy.js +60 -0
  297. data/vendor/assets/javascripts/canjs/can.construct.super.js +44 -0
  298. data/vendor/assets/javascripts/canjs/can.control.plugin.js +245 -0
  299. data/vendor/assets/javascripts/canjs/can.control.view.js +88 -0
  300. data/vendor/assets/javascripts/canjs/can.dojo.js +3669 -0
  301. data/vendor/assets/javascripts/canjs/can.dojo.min.js +66 -0
  302. data/vendor/assets/javascripts/canjs/can.fixture.js +1020 -0
  303. data/vendor/assets/javascripts/canjs/can.jquery.js +2995 -0
  304. data/vendor/assets/javascripts/canjs/can.jquery.min.js +52 -0
  305. data/vendor/assets/javascripts/canjs/can.mootools.js +3462 -0
  306. data/vendor/assets/javascripts/canjs/can.mootools.min.js +63 -0
  307. data/vendor/assets/javascripts/canjs/can.observe.attributes.js +293 -0
  308. data/vendor/assets/javascripts/canjs/can.observe.backup.js +368 -0
  309. data/vendor/assets/javascripts/canjs/can.observe.delegate.js +359 -0
  310. data/vendor/assets/javascripts/canjs/can.observe.setter.js +58 -0
  311. data/vendor/assets/javascripts/canjs/can.observe.validations.js +374 -0
  312. data/vendor/assets/javascripts/canjs/can.view.modifiers.js +292 -0
  313. data/vendor/assets/javascripts/canjs/can.yui.js +3530 -0
  314. data/vendor/assets/javascripts/canjs/can.yui.min.js +65 -0
  315. data/vendor/assets/javascripts/canjs/can.zepto.js +3426 -0
  316. data/vendor/assets/javascripts/canjs/can.zepto.min.js +62 -0
  317. data/vendor/assets/javascripts/twitter/bootstrap-affix.js +104 -0
  318. data/vendor/assets/javascripts/twitter/bootstrap-alert.js +90 -0
  319. data/vendor/assets/javascripts/twitter/bootstrap-button.js +96 -0
  320. data/vendor/assets/javascripts/twitter/bootstrap-carousel.js +176 -0
  321. data/vendor/assets/javascripts/twitter/bootstrap-collapse.js +158 -0
  322. data/vendor/assets/javascripts/twitter/bootstrap-dropdown.js +150 -0
  323. data/vendor/assets/javascripts/twitter/bootstrap-modal.js +239 -0
  324. data/vendor/assets/javascripts/twitter/bootstrap-popover.js +103 -0
  325. data/vendor/assets/javascripts/twitter/bootstrap-scrollspy.js +151 -0
  326. data/vendor/assets/javascripts/twitter/bootstrap-tab.js +135 -0
  327. data/vendor/assets/javascripts/twitter/bootstrap-tooltip.js +275 -0
  328. data/vendor/assets/javascripts/twitter/bootstrap-transition.js +60 -0
  329. data/vendor/assets/javascripts/twitter/bootstrap-typeahead.js +300 -0
  330. data/vendor/assets/javascripts/twitter/my/bootstrap-typeahead.js +311 -0
  331. data/vendor/assets/stylesheets/.gitkeep +0 -0
  332. metadata +470 -0
@@ -0,0 +1,53 @@
1
+ //
2
+ // Scaffolding
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Body reset
7
+ // -------------------------
8
+
9
+ body {
10
+ margin: 0;
11
+ font-family: $baseFontFamily;
12
+ font-size: $baseFontSize;
13
+ line-height: $baseLineHeight;
14
+ color: $textColor;
15
+ background-color: $bodyBackground;
16
+ }
17
+
18
+
19
+ // Links
20
+ // -------------------------
21
+
22
+ a {
23
+ color: $linkColor;
24
+ text-decoration: none;
25
+ }
26
+ a:hover,
27
+ a:focus {
28
+ color: $linkColorHover;
29
+ text-decoration: underline;
30
+ }
31
+
32
+
33
+ // Images
34
+ // -------------------------
35
+
36
+ // Rounded corners
37
+ .img-rounded {
38
+ @include border-radius(6px);
39
+ }
40
+
41
+ // Add polaroid-esque trim
42
+ .img-polaroid {
43
+ padding: 4px;
44
+ background-color: #fff;
45
+ border: 1px solid #ccc;
46
+ border: 1px solid rgba(0,0,0,.2);
47
+ @include box-shadow(0 1px 3px rgba(0,0,0,.1));
48
+ }
49
+
50
+ // Perfect circle
51
+ .img-circle {
52
+ @include border-radius(500px); // crank the border-radius so it works with most reasonably sized images
53
+ }
@@ -0,0 +1,197 @@
1
+ //
2
+ // Sprites
3
+ // --------------------------------------------------
4
+
5
+
6
+ // ICONS
7
+ // -----
8
+
9
+ // All icons receive the styles of the <i> tag with a base class
10
+ // of .i and are then given a unique class to add width, height,
11
+ // and background-position. Your resulting HTML will look like
12
+ // <i class="icon-inbox"></i>.
13
+
14
+ // For the white version of the icons, just add the .icon-white class:
15
+ // <i class="icon-inbox icon-white"></i>
16
+
17
+ [class^="icon-"],
18
+ [class*=" icon-"] {
19
+ display: inline-block;
20
+ width: 14px;
21
+ height: 14px;
22
+ @include ie7-restore-right-whitespace();
23
+ line-height: 14px;
24
+ vertical-align: text-top;
25
+ background-image: url($iconSpritePath);
26
+ background-position: 14px 14px;
27
+ background-repeat: no-repeat;
28
+ margin-top: 1px;
29
+ }
30
+
31
+ /* White icons with optional class, or on hover/focus/active states of certain elements */
32
+ .icon-white,
33
+ .nav-pills > .active > a > [class^="icon-"],
34
+ .nav-pills > .active > a > [class*=" icon-"],
35
+ .nav-list > .active > a > [class^="icon-"],
36
+ .nav-list > .active > a > [class*=" icon-"],
37
+ .navbar-inverse .nav > .active > a > [class^="icon-"],
38
+ .navbar-inverse .nav > .active > a > [class*=" icon-"],
39
+ .dropdown-menu > li > a:hover > [class^="icon-"],
40
+ .dropdown-menu > li > a:focus > [class^="icon-"],
41
+ .dropdown-menu > li > a:hover > [class*=" icon-"],
42
+ .dropdown-menu > li > a:focus > [class*=" icon-"],
43
+ .dropdown-menu > .active > a > [class^="icon-"],
44
+ .dropdown-menu > .active > a > [class*=" icon-"],
45
+ .dropdown-submenu:hover > a > [class^="icon-"],
46
+ .dropdown-submenu:focus > a > [class^="icon-"],
47
+ .dropdown-submenu:hover > a > [class*=" icon-"],
48
+ .dropdown-submenu:focus > a > [class*=" icon-"] {
49
+ background-image: url($iconWhiteSpritePath);
50
+ }
51
+
52
+ .icon-glass { background-position: 0 0; }
53
+ .icon-music { background-position: -24px 0; }
54
+ .icon-search { background-position: -48px 0; }
55
+ .icon-envelope { background-position: -72px 0; }
56
+ .icon-heart { background-position: -96px 0; }
57
+ .icon-star { background-position: -120px 0; }
58
+ .icon-star-empty { background-position: -144px 0; }
59
+ .icon-user { background-position: -168px 0; }
60
+ .icon-film { background-position: -192px 0; }
61
+ .icon-th-large { background-position: -216px 0; }
62
+ .icon-th { background-position: -240px 0; }
63
+ .icon-th-list { background-position: -264px 0; }
64
+ .icon-ok { background-position: -288px 0; }
65
+ .icon-remove { background-position: -312px 0; }
66
+ .icon-zoom-in { background-position: -336px 0; }
67
+ .icon-zoom-out { background-position: -360px 0; }
68
+ .icon-off { background-position: -384px 0; }
69
+ .icon-signal { background-position: -408px 0; }
70
+ .icon-cog { background-position: -432px 0; }
71
+ .icon-trash { background-position: -456px 0; }
72
+
73
+ .icon-home { background-position: 0 -24px; }
74
+ .icon-file { background-position: -24px -24px; }
75
+ .icon-time { background-position: -48px -24px; }
76
+ .icon-road { background-position: -72px -24px; }
77
+ .icon-download-alt { background-position: -96px -24px; }
78
+ .icon-download { background-position: -120px -24px; }
79
+ .icon-upload { background-position: -144px -24px; }
80
+ .icon-inbox { background-position: -168px -24px; }
81
+ .icon-play-circle { background-position: -192px -24px; }
82
+ .icon-repeat { background-position: -216px -24px; }
83
+ .icon-refresh { background-position: -240px -24px; }
84
+ .icon-list-alt { background-position: -264px -24px; }
85
+ .icon-lock { background-position: -287px -24px; } // 1px off
86
+ .icon-flag { background-position: -312px -24px; }
87
+ .icon-headphones { background-position: -336px -24px; }
88
+ .icon-volume-off { background-position: -360px -24px; }
89
+ .icon-volume-down { background-position: -384px -24px; }
90
+ .icon-volume-up { background-position: -408px -24px; }
91
+ .icon-qrcode { background-position: -432px -24px; }
92
+ .icon-barcode { background-position: -456px -24px; }
93
+
94
+ .icon-tag { background-position: 0 -48px; }
95
+ .icon-tags { background-position: -25px -48px; } // 1px off
96
+ .icon-book { background-position: -48px -48px; }
97
+ .icon-bookmark { background-position: -72px -48px; }
98
+ .icon-print { background-position: -96px -48px; }
99
+ .icon-camera { background-position: -120px -48px; }
100
+ .icon-font { background-position: -144px -48px; }
101
+ .icon-bold { background-position: -167px -48px; } // 1px off
102
+ .icon-italic { background-position: -192px -48px; }
103
+ .icon-text-height { background-position: -216px -48px; }
104
+ .icon-text-width { background-position: -240px -48px; }
105
+ .icon-align-left { background-position: -264px -48px; }
106
+ .icon-align-center { background-position: -288px -48px; }
107
+ .icon-align-right { background-position: -312px -48px; }
108
+ .icon-align-justify { background-position: -336px -48px; }
109
+ .icon-list { background-position: -360px -48px; }
110
+ .icon-indent-left { background-position: -384px -48px; }
111
+ .icon-indent-right { background-position: -408px -48px; }
112
+ .icon-facetime-video { background-position: -432px -48px; }
113
+ .icon-picture { background-position: -456px -48px; }
114
+
115
+ .icon-pencil { background-position: 0 -72px; }
116
+ .icon-map-marker { background-position: -24px -72px; }
117
+ .icon-adjust { background-position: -48px -72px; }
118
+ .icon-tint { background-position: -72px -72px; }
119
+ .icon-edit { background-position: -96px -72px; }
120
+ .icon-share { background-position: -120px -72px; }
121
+ .icon-check { background-position: -144px -72px; }
122
+ .icon-move { background-position: -168px -72px; }
123
+ .icon-step-backward { background-position: -192px -72px; }
124
+ .icon-fast-backward { background-position: -216px -72px; }
125
+ .icon-backward { background-position: -240px -72px; }
126
+ .icon-play { background-position: -264px -72px; }
127
+ .icon-pause { background-position: -288px -72px; }
128
+ .icon-stop { background-position: -312px -72px; }
129
+ .icon-forward { background-position: -336px -72px; }
130
+ .icon-fast-forward { background-position: -360px -72px; }
131
+ .icon-step-forward { background-position: -384px -72px; }
132
+ .icon-eject { background-position: -408px -72px; }
133
+ .icon-chevron-left { background-position: -432px -72px; }
134
+ .icon-chevron-right { background-position: -456px -72px; }
135
+
136
+ .icon-plus-sign { background-position: 0 -96px; }
137
+ .icon-minus-sign { background-position: -24px -96px; }
138
+ .icon-remove-sign { background-position: -48px -96px; }
139
+ .icon-ok-sign { background-position: -72px -96px; }
140
+ .icon-question-sign { background-position: -96px -96px; }
141
+ .icon-info-sign { background-position: -120px -96px; }
142
+ .icon-screenshot { background-position: -144px -96px; }
143
+ .icon-remove-circle { background-position: -168px -96px; }
144
+ .icon-ok-circle { background-position: -192px -96px; }
145
+ .icon-ban-circle { background-position: -216px -96px; }
146
+ .icon-arrow-left { background-position: -240px -96px; }
147
+ .icon-arrow-right { background-position: -264px -96px; }
148
+ .icon-arrow-up { background-position: -289px -96px; } // 1px off
149
+ .icon-arrow-down { background-position: -312px -96px; }
150
+ .icon-share-alt { background-position: -336px -96px; }
151
+ .icon-resize-full { background-position: -360px -96px; }
152
+ .icon-resize-small { background-position: -384px -96px; }
153
+ .icon-plus { background-position: -408px -96px; }
154
+ .icon-minus { background-position: -433px -96px; }
155
+ .icon-asterisk { background-position: -456px -96px; }
156
+
157
+ .icon-exclamation-sign { background-position: 0 -120px; }
158
+ .icon-gift { background-position: -24px -120px; }
159
+ .icon-leaf { background-position: -48px -120px; }
160
+ .icon-fire { background-position: -72px -120px; }
161
+ .icon-eye-open { background-position: -96px -120px; }
162
+ .icon-eye-close { background-position: -120px -120px; }
163
+ .icon-warning-sign { background-position: -144px -120px; }
164
+ .icon-plane { background-position: -168px -120px; }
165
+ .icon-calendar { background-position: -192px -120px; }
166
+ .icon-random { background-position: -216px -120px; width: 16px; }
167
+ .icon-comment { background-position: -240px -120px; }
168
+ .icon-magnet { background-position: -264px -120px; }
169
+ .icon-chevron-up { background-position: -288px -120px; }
170
+ .icon-chevron-down { background-position: -313px -119px; } // 1px, 1px off
171
+ .icon-retweet { background-position: -336px -120px; }
172
+ .icon-shopping-cart { background-position: -360px -120px; }
173
+ .icon-folder-close { background-position: -384px -120px; width: 16px; }
174
+ .icon-folder-open { background-position: -408px -120px; width: 16px; }
175
+ .icon-resize-vertical { background-position: -432px -119px; } // 1px, 1px off
176
+ .icon-resize-horizontal { background-position: -456px -118px; } // 1px, 2px off
177
+
178
+ .icon-hdd { background-position: 0 -144px; }
179
+ .icon-bullhorn { background-position: -24px -144px; }
180
+ .icon-bell { background-position: -48px -144px; }
181
+ .icon-certificate { background-position: -72px -144px; }
182
+ .icon-thumbs-up { background-position: -96px -144px; }
183
+ .icon-thumbs-down { background-position: -120px -144px; }
184
+ .icon-hand-right { background-position: -144px -144px; }
185
+ .icon-hand-left { background-position: -168px -144px; }
186
+ .icon-hand-up { background-position: -192px -144px; }
187
+ .icon-hand-down { background-position: -216px -144px; }
188
+ .icon-circle-arrow-right { background-position: -240px -144px; }
189
+ .icon-circle-arrow-left { background-position: -264px -144px; }
190
+ .icon-circle-arrow-up { background-position: -288px -144px; }
191
+ .icon-circle-arrow-down { background-position: -312px -144px; }
192
+ .icon-globe { background-position: -336px -144px; }
193
+ .icon-wrench { background-position: -360px -144px; }
194
+ .icon-tasks { background-position: -384px -144px; }
195
+ .icon-filter { background-position: -408px -144px; }
196
+ .icon-briefcase { background-position: -432px -144px; }
197
+ .icon-fullscreen { background-position: -456px -144px; }
@@ -0,0 +1,235 @@
1
+ //
2
+ // Tables
3
+ // --------------------------------------------------
4
+
5
+
6
+ // BASE TABLES
7
+ // -----------------
8
+
9
+ table {
10
+ max-width: 100%;
11
+ background-color: $tableBackground;
12
+ border-collapse: collapse;
13
+ border-spacing: 0;
14
+ }
15
+
16
+ // BASELINE STYLES
17
+ // ---------------
18
+
19
+ .table {
20
+ width: 100%;
21
+ margin-bottom: $baseLineHeight;
22
+ // Cells
23
+ th,
24
+ td {
25
+ padding: 8px;
26
+ line-height: $baseLineHeight;
27
+ text-align: left;
28
+ vertical-align: top;
29
+ border-top: 1px solid $tableBorder;
30
+ }
31
+ th {
32
+ font-weight: bold;
33
+ }
34
+ // Bottom align for column headings
35
+ thead th {
36
+ vertical-align: bottom;
37
+ }
38
+ // Remove top border from thead by default
39
+ caption + thead tr:first-child th,
40
+ caption + thead tr:first-child td,
41
+ colgroup + thead tr:first-child th,
42
+ colgroup + thead tr:first-child td,
43
+ thead:first-child tr:first-child th,
44
+ thead:first-child tr:first-child td {
45
+ border-top: 0;
46
+ }
47
+ // Account for multiple tbody instances
48
+ tbody + tbody {
49
+ border-top: 2px solid $tableBorder;
50
+ }
51
+
52
+ // Nesting
53
+ .table {
54
+ background-color: $bodyBackground;
55
+ }
56
+ }
57
+
58
+
59
+
60
+ // CONDENSED TABLE W/ HALF PADDING
61
+ // -------------------------------
62
+
63
+ .table-condensed {
64
+ th,
65
+ td {
66
+ padding: 4px 5px;
67
+ }
68
+ }
69
+
70
+
71
+ // BORDERED VERSION
72
+ // ----------------
73
+
74
+ .table-bordered {
75
+ border: 1px solid $tableBorder;
76
+ border-collapse: separate; // Done so we can round those corners!
77
+ *border-collapse: collapse; // IE7 can't round corners anyway
78
+ border-left: 0;
79
+ @include border-radius($baseBorderRadius);
80
+ th,
81
+ td {
82
+ border-left: 1px solid $tableBorder;
83
+ }
84
+ // Prevent a double border
85
+ caption + thead tr:first-child th,
86
+ caption + tbody tr:first-child th,
87
+ caption + tbody tr:first-child td,
88
+ colgroup + thead tr:first-child th,
89
+ colgroup + tbody tr:first-child th,
90
+ colgroup + tbody tr:first-child td,
91
+ thead:first-child tr:first-child th,
92
+ tbody:first-child tr:first-child th,
93
+ tbody:first-child tr:first-child td {
94
+ border-top: 0;
95
+ }
96
+ // For first th/td in the first row in the first thead or tbody
97
+ thead:first-child tr:first-child > th:first-child,
98
+ tbody:first-child tr:first-child > td:first-child,
99
+ tbody:first-child tr:first-child > th:first-child {
100
+ @include border-top-left-radius($baseBorderRadius);
101
+ }
102
+ // For last th/td in the first row in the first thead or tbody
103
+ thead:first-child tr:first-child > th:last-child,
104
+ tbody:first-child tr:first-child > td:last-child,
105
+ tbody:first-child tr:first-child > th:last-child {
106
+ @include border-top-right-radius($baseBorderRadius);
107
+ }
108
+ // For first th/td (can be either) in the last row in the last thead, tbody, and tfoot
109
+ thead:last-child tr:last-child > th:first-child,
110
+ tbody:last-child tr:last-child > td:first-child,
111
+ tbody:last-child tr:last-child > th:first-child,
112
+ tfoot:last-child tr:last-child > td:first-child,
113
+ tfoot:last-child tr:last-child > th:first-child {
114
+ @include border-bottom-left-radius($baseBorderRadius);
115
+ }
116
+ // For last th/td (can be either) in the last row in the last thead, tbody, and tfoot
117
+ thead:last-child tr:last-child > th:last-child,
118
+ tbody:last-child tr:last-child > td:last-child,
119
+ tbody:last-child tr:last-child > th:last-child,
120
+ tfoot:last-child tr:last-child > td:last-child,
121
+ tfoot:last-child tr:last-child > th:last-child {
122
+ @include border-bottom-right-radius($baseBorderRadius);
123
+ }
124
+
125
+ // Clear border-radius for first and last td in the last row in the last tbody for table with tfoot
126
+ tfoot + tbody:last-child tr:last-child td:first-child {
127
+ @include border-bottom-left-radius(0);
128
+ }
129
+ tfoot + tbody:last-child tr:last-child td:last-child {
130
+ @include border-bottom-right-radius(0);
131
+ }
132
+
133
+ // Special fixes to round the left border on the first td/th
134
+ caption + thead tr:first-child th:first-child,
135
+ caption + tbody tr:first-child td:first-child,
136
+ colgroup + thead tr:first-child th:first-child,
137
+ colgroup + tbody tr:first-child td:first-child {
138
+ @include border-top-left-radius($baseBorderRadius);
139
+ }
140
+ caption + thead tr:first-child th:last-child,
141
+ caption + tbody tr:first-child td:last-child,
142
+ colgroup + thead tr:first-child th:last-child,
143
+ colgroup + tbody tr:first-child td:last-child {
144
+ @include border-top-right-radius($baseBorderRadius);
145
+ }
146
+
147
+ }
148
+
149
+
150
+
151
+
152
+ // ZEBRA-STRIPING
153
+ // --------------
154
+
155
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
156
+ .table-striped {
157
+ tbody {
158
+ > tr:nth-child(odd) > td,
159
+ > tr:nth-child(odd) > th {
160
+ background-color: $tableBackgroundAccent;
161
+ }
162
+ }
163
+ }
164
+
165
+
166
+ // HOVER EFFECT
167
+ // ------------
168
+ // Placed here since it has to come after the potential zebra striping
169
+ .table-hover {
170
+ tbody {
171
+ tr:hover > td,
172
+ tr:hover > th {
173
+ background-color: $tableBackgroundHover;
174
+ }
175
+ }
176
+ }
177
+
178
+
179
+ // TABLE CELL SIZING
180
+ // -----------------
181
+
182
+ // Reset default grid behavior
183
+ table td[class*="span"],
184
+ table th[class*="span"],
185
+ .row-fluid table td[class*="span"],
186
+ .row-fluid table th[class*="span"] {
187
+ display: table-cell;
188
+ float: none; // undo default grid column styles
189
+ margin-left: 0; // undo default grid column styles
190
+ }
191
+
192
+ // Change the column widths to account for td/th padding
193
+ .table td,
194
+ .table th {
195
+ @for $i from 1 through 12 {
196
+ &.span#{$i} { @include tableColumns($i); }
197
+ }
198
+ }
199
+
200
+
201
+
202
+ // TABLE BACKGROUNDS
203
+ // -----------------
204
+ // Exact selectors below required to override .table-striped
205
+
206
+ .table tbody tr {
207
+ &.success > td {
208
+ background-color: $successBackground;
209
+ }
210
+ &.error > td {
211
+ background-color: $errorBackground;
212
+ }
213
+ &.warning > td {
214
+ background-color: $warningBackground;
215
+ }
216
+ &.info > td {
217
+ background-color: $infoBackground;
218
+ }
219
+ }
220
+
221
+ // Hover states for .table-hover
222
+ .table-hover tbody tr {
223
+ &.success:hover > td {
224
+ background-color: darken($successBackground, 5%);
225
+ }
226
+ &.error:hover > td {
227
+ background-color: darken($errorBackground, 5%);
228
+ }
229
+ &.warning:hover > td {
230
+ background-color: darken($warningBackground, 5%);
231
+ }
232
+ &.info:hover > td {
233
+ background-color: darken($infoBackground, 5%);
234
+ }
235
+ }