roda-component 0.0.10 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (692) hide show
  1. checksums.yaml +4 -4
  2. data/.gems +3 -0
  3. data/.gitignore +2 -1
  4. data/.ruby-version +1 -1
  5. data/Gemfile +13 -0
  6. data/Makefile +18 -23
  7. data/Rakefile +0 -1
  8. data/lib/roda/component.rb +98 -44
  9. data/lib/roda/component/dom.rb +27 -17
  10. data/lib/roda/component/events.rb +58 -19
  11. data/lib/roda/component/faye.rb +131 -34
  12. data/lib/roda/component/form.rb +64 -0
  13. data/lib/roda/component/form/validations.rb +204 -0
  14. data/lib/roda/component/version.rb +1 -1
  15. data/lib/roda/plugins/component.rb +54 -24
  16. data/roda-component.gemspec +17 -7
  17. data/test/component_test.rb +20 -5
  18. data/test/dummy/.bowerrc +3 -0
  19. data/test/dummy/.sass-cache/00f9c07200bf85fc7effbdcbe3ee44551cdb2ce5/login.scssc +0 -0
  20. data/test/dummy/app.rb +99 -9
  21. data/test/dummy/bower.json +21 -0
  22. data/test/dummy/components/chat.rb +50 -0
  23. data/test/dummy/components/forms/login.rb +20 -0
  24. data/test/dummy/components/layout.rb +22 -2
  25. data/test/dummy/components/login.rb +123 -0
  26. data/test/dummy/components/theme.rb +89 -0
  27. data/test/dummy/config.ru +18 -0
  28. data/test/dummy/constants.rb +3 -0
  29. data/test/dummy/dummy.db +0 -0
  30. data/test/dummy/models/user.rb +20 -0
  31. data/test/dummy/public/AdminLTE-master/.gitignore +2 -0
  32. data/test/dummy/public/AdminLTE-master/LICENSE +20 -0
  33. data/test/dummy/public/AdminLTE-master/README.md +104 -0
  34. data/test/dummy/public/AdminLTE-master/ajax/dashboard-boxrefresh-demo.php +64 -0
  35. data/test/dummy/public/AdminLTE-master/composer.json +24 -0
  36. data/test/dummy/public/AdminLTE-master/css/AdminLTE.css +3539 -0
  37. data/test/dummy/public/AdminLTE-master/css/bootstrap-slider/slider.css +169 -0
  38. data/test/dummy/public/AdminLTE-master/css/bootstrap-wysihtml5/bootstrap3-wysihtml5.css +102 -0
  39. data/test/dummy/public/AdminLTE-master/css/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css +3 -0
  40. data/test/dummy/public/AdminLTE-master/css/colorpicker/bootstrap-colorpicker.css +214 -0
  41. data/test/dummy/public/AdminLTE-master/css/colorpicker/bootstrap-colorpicker.min.css +9 -0
  42. data/test/dummy/public/AdminLTE-master/css/datatables/dataTables.bootstrap.css +223 -0
  43. data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_asc.png +0 -0
  44. data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_asc_disabled.png +0 -0
  45. data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_both.png +0 -0
  46. data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_desc.png +0 -0
  47. data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_desc_disabled.png +0 -0
  48. data/test/dummy/public/AdminLTE-master/css/datepicker/datepicker3.css +790 -0
  49. data/test/dummy/public/AdminLTE-master/css/daterangepicker/daterangepicker-bs3.css +245 -0
  50. data/test/dummy/public/AdminLTE-master/css/iCheck/all.css +61 -0
  51. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/_all.css +560 -0
  52. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero.css +56 -0
  53. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero.png +0 -0
  54. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero@2x.png +0 -0
  55. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue.css +56 -0
  56. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue.png +0 -0
  57. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue@2x.png +0 -0
  58. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat.css +56 -0
  59. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat.png +0 -0
  60. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat@2x.png +0 -0
  61. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green.css +56 -0
  62. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green.png +0 -0
  63. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green@2x.png +0 -0
  64. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey.css +56 -0
  65. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey.png +0 -0
  66. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey@2x.png +0 -0
  67. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange.css +56 -0
  68. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange.png +0 -0
  69. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange@2x.png +0 -0
  70. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink.css +56 -0
  71. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink.png +0 -0
  72. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink@2x.png +0 -0
  73. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple.css +56 -0
  74. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple.png +0 -0
  75. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple@2x.png +0 -0
  76. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red.css +56 -0
  77. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red.png +0 -0
  78. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red@2x.png +0 -0
  79. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow.css +56 -0
  80. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow.png +0 -0
  81. data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow@2x.png +0 -0
  82. data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico.css +56 -0
  83. data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico.png +0 -0
  84. data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico@2x.png +0 -0
  85. data/test/dummy/public/AdminLTE-master/css/iCheck/line/_all.css +740 -0
  86. data/test/dummy/public/AdminLTE-master/css/iCheck/line/aero.css +74 -0
  87. data/test/dummy/public/AdminLTE-master/css/iCheck/line/blue.css +74 -0
  88. data/test/dummy/public/AdminLTE-master/css/iCheck/line/green.css +74 -0
  89. data/test/dummy/public/AdminLTE-master/css/iCheck/line/grey.css +74 -0
  90. data/test/dummy/public/AdminLTE-master/css/iCheck/line/line.css +74 -0
  91. data/test/dummy/public/AdminLTE-master/css/iCheck/line/line.png +0 -0
  92. data/test/dummy/public/AdminLTE-master/css/iCheck/line/line@2x.png +0 -0
  93. data/test/dummy/public/AdminLTE-master/css/iCheck/line/orange.css +74 -0
  94. data/test/dummy/public/AdminLTE-master/css/iCheck/line/pink.css +74 -0
  95. data/test/dummy/public/AdminLTE-master/css/iCheck/line/purple.css +74 -0
  96. data/test/dummy/public/AdminLTE-master/css/iCheck/line/red.css +74 -0
  97. data/test/dummy/public/AdminLTE-master/css/iCheck/line/yellow.css +74 -0
  98. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/_all.css +557 -0
  99. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero.css +62 -0
  100. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero.png +0 -0
  101. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero@2x.png +0 -0
  102. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue.css +62 -0
  103. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue.png +0 -0
  104. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue@2x.png +0 -0
  105. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green.css +62 -0
  106. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green.png +0 -0
  107. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green@2x.png +0 -0
  108. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey.css +62 -0
  109. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey.png +0 -0
  110. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey@2x.png +0 -0
  111. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal.css +62 -0
  112. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal.png +0 -0
  113. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal@2x.png +0 -0
  114. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange.css +62 -0
  115. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange.png +0 -0
  116. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange@2x.png +0 -0
  117. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink.css +62 -0
  118. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink.png +0 -0
  119. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink@2x.png +0 -0
  120. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple.css +62 -0
  121. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple.png +0 -0
  122. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple@2x.png +0 -0
  123. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red.css +62 -0
  124. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red.png +0 -0
  125. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red@2x.png +0 -0
  126. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow.css +62 -0
  127. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow.png +0 -0
  128. data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow@2x.png +0 -0
  129. data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris.css +62 -0
  130. data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris.png +0 -0
  131. data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris@2x.png +0 -0
  132. data/test/dummy/public/AdminLTE-master/css/iCheck/square/_all.css +620 -0
  133. data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero.css +62 -0
  134. data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero.png +0 -0
  135. data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero@2x.png +0 -0
  136. data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue.css +62 -0
  137. data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue.png +0 -0
  138. data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue@2x.png +0 -0
  139. data/test/dummy/public/AdminLTE-master/css/iCheck/square/green.css +62 -0
  140. data/test/dummy/public/AdminLTE-master/css/iCheck/square/green.png +0 -0
  141. data/test/dummy/public/AdminLTE-master/css/iCheck/square/green@2x.png +0 -0
  142. data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey.css +62 -0
  143. data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey.png +0 -0
  144. data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey@2x.png +0 -0
  145. data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange.css +62 -0
  146. data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange.png +0 -0
  147. data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange@2x.png +0 -0
  148. data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink.css +62 -0
  149. data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink.png +0 -0
  150. data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink@2x.png +0 -0
  151. data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple.css +62 -0
  152. data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple.png +0 -0
  153. data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple@2x.png +0 -0
  154. data/test/dummy/public/AdminLTE-master/css/iCheck/square/red.css +62 -0
  155. data/test/dummy/public/AdminLTE-master/css/iCheck/square/red.png +0 -0
  156. data/test/dummy/public/AdminLTE-master/css/iCheck/square/red@2x.png +0 -0
  157. data/test/dummy/public/AdminLTE-master/css/iCheck/square/square.css +62 -0
  158. data/test/dummy/public/AdminLTE-master/css/iCheck/square/square.png +0 -0
  159. data/test/dummy/public/AdminLTE-master/css/iCheck/square/square@2x.png +0 -0
  160. data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow.css +62 -0
  161. data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow.png +0 -0
  162. data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow@2x.png +0 -0
  163. data/test/dummy/public/AdminLTE-master/css/images/animated-overlay.gif +0 -0
  164. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  165. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  166. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  167. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  168. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  169. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  170. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  171. data/test/dummy/public/AdminLTE-master/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  172. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_217bc0_256x240.png +0 -0
  173. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_2e83ff_256x240.png +0 -0
  174. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_469bdd_256x240.png +0 -0
  175. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_6da8d5_256x240.png +0 -0
  176. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_cd0a0a_256x240.png +0 -0
  177. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_d8e7f3_256x240.png +0 -0
  178. data/test/dummy/public/AdminLTE-master/css/images/ui-icons_f9bd01_256x240.png +0 -0
  179. data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.css +126 -0
  180. data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.skinFlat.css +89 -0
  181. data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.skinNice.css +85 -0
  182. data/test/dummy/public/AdminLTE-master/css/jvectormap/jquery-jvectormap-1.2.2.css +36 -0
  183. data/test/dummy/public/AdminLTE-master/css/morris/morris.css +2 -0
  184. data/test/dummy/public/AdminLTE-master/css/timepicker/bootstrap-timepicker.css +121 -0
  185. data/test/dummy/public/AdminLTE-master/css/timepicker/bootstrap-timepicker.min.css +10 -0
  186. data/test/dummy/public/AdminLTE-master/empty.html +417 -0
  187. data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.eot +0 -0
  188. data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.svg +229 -0
  189. data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.ttf +0 -0
  190. data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.woff +0 -0
  191. data/test/dummy/public/AdminLTE-master/img/ajax-loader.gif +0 -0
  192. data/test/dummy/public/AdminLTE-master/img/ajax-loader1.gif +0 -0
  193. data/test/dummy/public/AdminLTE-master/img/avatar.png +0 -0
  194. data/test/dummy/public/AdminLTE-master/img/avatar04.png +0 -0
  195. data/test/dummy/public/AdminLTE-master/img/avatar2.png +0 -0
  196. data/test/dummy/public/AdminLTE-master/img/avatar3.png +0 -0
  197. data/test/dummy/public/AdminLTE-master/img/avatar5.png +0 -0
  198. data/test/dummy/public/AdminLTE-master/img/blur-background04.jpg +0 -0
  199. data/test/dummy/public/AdminLTE-master/img/blur-background08.jpg +0 -0
  200. data/test/dummy/public/AdminLTE-master/img/blur-background09.jpg +0 -0
  201. data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/alpha-horizontal.png +0 -0
  202. data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/alpha.png +0 -0
  203. data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/hue-horizontal.png +0 -0
  204. data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/hue.png +0 -0
  205. data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/saturation.png +0 -0
  206. data/test/dummy/public/AdminLTE-master/img/credit/american-express.png +0 -0
  207. data/test/dummy/public/AdminLTE-master/img/credit/cirrus.png +0 -0
  208. data/test/dummy/public/AdminLTE-master/img/credit/mastercard.png +0 -0
  209. data/test/dummy/public/AdminLTE-master/img/credit/mestro.png +0 -0
  210. data/test/dummy/public/AdminLTE-master/img/credit/paypal.png +0 -0
  211. data/test/dummy/public/AdminLTE-master/img/credit/paypal2.png +0 -0
  212. data/test/dummy/public/AdminLTE-master/img/credit/visa.png +0 -0
  213. data/test/dummy/public/AdminLTE-master/img/icons.png +0 -0
  214. data/test/dummy/public/AdminLTE-master/img/sprite-skin-flat.png +0 -0
  215. data/test/dummy/public/AdminLTE-master/img/sprite-skin-nice.png +0 -0
  216. data/test/dummy/public/AdminLTE-master/img/user-bg.png +0 -0
  217. data/test/dummy/public/AdminLTE-master/img/user.jpg +0 -0
  218. data/test/dummy/public/AdminLTE-master/img/user2.jpg +0 -0
  219. data/test/dummy/public/AdminLTE-master/index.html +900 -0
  220. data/test/dummy/public/AdminLTE-master/js/AdminLTE/app.js +1054 -0
  221. data/test/dummy/public/AdminLTE-master/js/AdminLTE/dashboard.js +252 -0
  222. data/test/dummy/public/AdminLTE-master/js/AdminLTE/demo.js +81 -0
  223. data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-slider/bootstrap-slider.js +1167 -0
  224. data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js +6 -0
  225. data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.js +350 -0
  226. data/test/dummy/public/AdminLTE-master/js/plugins/colorpicker/bootstrap-colorpicker.js +949 -0
  227. data/test/dummy/public/AdminLTE-master/js/plugins/colorpicker/bootstrap-colorpicker.min.js +1 -0
  228. data/test/dummy/public/AdminLTE-master/js/plugins/datatables/dataTables.bootstrap.js +250 -0
  229. data/test/dummy/public/AdminLTE-master/js/plugins/datatables/jquery.dataTables.js +12099 -0
  230. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/bootstrap-datepicker.js +1671 -0
  231. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ar.js +15 -0
  232. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.az.js +12 -0
  233. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.bg.js +14 -0
  234. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ca.js +14 -0
  235. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.cs.js +15 -0
  236. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.cy.js +14 -0
  237. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.da.js +15 -0
  238. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.de.js +17 -0
  239. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.el.js +13 -0
  240. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.es.js +14 -0
  241. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.et.js +18 -0
  242. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fa.js +17 -0
  243. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fi.js +16 -0
  244. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fr.js +17 -0
  245. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.gl.js +11 -0
  246. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.he.js +15 -0
  247. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.hr.js +13 -0
  248. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.hu.js +16 -0
  249. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.id.js +15 -0
  250. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.is.js +14 -0
  251. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.it.js +17 -0
  252. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ja.js +15 -0
  253. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ka.js +17 -0
  254. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.kk.js +15 -0
  255. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.kr.js +13 -0
  256. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.lt.js +16 -0
  257. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.lv.js +16 -0
  258. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.mk.js +15 -0
  259. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ms.js +14 -0
  260. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nb.js +14 -0
  261. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js +17 -0
  262. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nl.js +14 -0
  263. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.no.js +16 -0
  264. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pl.js +15 -0
  265. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js +15 -0
  266. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pt.js +16 -0
  267. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ro.js +16 -0
  268. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js +14 -0
  269. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.rs.js +14 -0
  270. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ru.js +15 -0
  271. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sk.js +15 -0
  272. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sl.js +14 -0
  273. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sq.js +15 -0
  274. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sv.js +16 -0
  275. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sw.js +15 -0
  276. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.th.js +14 -0
  277. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.tr.js +16 -0
  278. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ua.js +15 -0
  279. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.vi.js +16 -0
  280. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js +16 -0
  281. data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js +17 -0
  282. data/test/dummy/public/AdminLTE-master/js/plugins/daterangepicker/daterangepicker.js +883 -0
  283. data/test/dummy/public/AdminLTE-master/js/plugins/flot/excanvas.js +1428 -0
  284. data/test/dummy/public/AdminLTE-master/js/plugins/flot/excanvas.min.js +1 -0
  285. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.colorhelpers.js +180 -0
  286. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.colorhelpers.min.js +1 -0
  287. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.canvas.js +345 -0
  288. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.canvas.min.js +1 -0
  289. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.categories.js +190 -0
  290. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.categories.min.js +1 -0
  291. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.crosshair.js +176 -0
  292. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.crosshair.min.js +1 -0
  293. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.errorbars.js +353 -0
  294. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.errorbars.min.js +1 -0
  295. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.fillbetween.js +226 -0
  296. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.fillbetween.min.js +1 -0
  297. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.image.js +241 -0
  298. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.image.min.js +1 -0
  299. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.js +3137 -0
  300. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.min.js +2 -0
  301. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.navigate.js +346 -0
  302. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.navigate.min.js +1 -0
  303. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.pie.js +817 -0
  304. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.pie.min.js +1 -0
  305. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.resize.js +60 -0
  306. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.resize.min.js +1 -0
  307. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.selection.js +360 -0
  308. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.selection.min.js +1 -0
  309. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.stack.js +188 -0
  310. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.stack.min.js +1 -0
  311. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.symbol.js +71 -0
  312. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.symbol.min.js +1 -0
  313. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.threshold.js +142 -0
  314. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.threshold.min.js +1 -0
  315. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.time.js +431 -0
  316. data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.time.min.js +1 -0
  317. data/test/dummy/public/AdminLTE-master/js/plugins/iCheck/icheck.js +506 -0
  318. data/test/dummy/public/AdminLTE-master/js/plugins/iCheck/icheck.min.js +10 -0
  319. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.date.extensions.js +488 -0
  320. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.extensions.js +122 -0
  321. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.js +1632 -0
  322. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.numeric.extensions.js +177 -0
  323. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.phone.extensions.js +50 -0
  324. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.regex.extensions.js +170 -0
  325. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/phone-be.json +45 -0
  326. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/phone-codes.json +294 -0
  327. data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/readme.txt +1 -0
  328. data/test/dummy/public/AdminLTE-master/js/plugins/ionslider/ion.rangeSlider.min.js +22 -0
  329. data/test/dummy/public/AdminLTE-master/js/plugins/jqueryKnob/jquery.knob.js +764 -0
  330. data/test/dummy/public/AdminLTE-master/js/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js +8 -0
  331. data/test/dummy/public/AdminLTE-master/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js +1 -0
  332. data/test/dummy/public/AdminLTE-master/js/plugins/misc/html5shiv.js +8 -0
  333. data/test/dummy/public/AdminLTE-master/js/plugins/misc/jquery.ba-resize.min.js +9 -0
  334. data/test/dummy/public/AdminLTE-master/js/plugins/misc/jquery.placeholder.js +187 -0
  335. data/test/dummy/public/AdminLTE-master/js/plugins/misc/modernizr.min.js +4 -0
  336. data/test/dummy/public/AdminLTE-master/js/plugins/misc/respond.min.js +1 -0
  337. data/test/dummy/public/AdminLTE-master/js/plugins/morris/morris.js +1888 -0
  338. data/test/dummy/public/AdminLTE-master/js/plugins/morris/morris.min.js +2 -0
  339. data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/jquery.slimscroll.js +464 -0
  340. data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/jquery.slimscroll.min.js +16 -0
  341. data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/slimScroll.jquery.json +30 -0
  342. data/test/dummy/public/AdminLTE-master/js/plugins/sparkline/jquery.sparkline.js +3054 -0
  343. data/test/dummy/public/AdminLTE-master/js/plugins/sparkline/jquery.sparkline.min.js +5 -0
  344. data/test/dummy/public/AdminLTE-master/js/plugins/timepicker/bootstrap-timepicker.js +903 -0
  345. data/test/dummy/public/AdminLTE-master/js/plugins/timepicker/bootstrap-timepicker.min.js +5 -0
  346. data/test/dummy/public/AdminLTE-master/less/404_500_errors.less +38 -0
  347. data/test/dummy/public/AdminLTE-master/less/AdminLTE.less +49 -0
  348. data/test/dummy/public/AdminLTE-master/less/alerts.less +25 -0
  349. data/test/dummy/public/AdminLTE-master/less/bootstrap-social.less +167 -0
  350. data/test/dummy/public/AdminLTE-master/less/boxes.less +396 -0
  351. data/test/dummy/public/AdminLTE-master/less/buttons.less +179 -0
  352. data/test/dummy/public/AdminLTE-master/less/callout.less +49 -0
  353. data/test/dummy/public/AdminLTE-master/less/core.less +422 -0
  354. data/test/dummy/public/AdminLTE-master/less/dropdown.less +392 -0
  355. data/test/dummy/public/AdminLTE-master/less/forms.less +73 -0
  356. data/test/dummy/public/AdminLTE-master/less/header.less +191 -0
  357. data/test/dummy/public/AdminLTE-master/less/iCheck.less +70 -0
  358. data/test/dummy/public/AdminLTE-master/less/invoice.less +38 -0
  359. data/test/dummy/public/AdminLTE-master/less/lockscreen.less +86 -0
  360. data/test/dummy/public/AdminLTE-master/less/login_and_register.less +42 -0
  361. data/test/dummy/public/AdminLTE-master/less/mailbox.less +64 -0
  362. data/test/dummy/public/AdminLTE-master/less/mixins.less +166 -0
  363. data/test/dummy/public/AdminLTE-master/less/navs.less +161 -0
  364. data/test/dummy/public/AdminLTE-master/less/pace.less +17 -0
  365. data/test/dummy/public/AdminLTE-master/less/progress-bars.less +62 -0
  366. data/test/dummy/public/AdminLTE-master/less/sidebar.less +135 -0
  367. data/test/dummy/public/AdminLTE-master/less/skins.less +232 -0
  368. data/test/dummy/public/AdminLTE-master/less/small-box.less +122 -0
  369. data/test/dummy/public/AdminLTE-master/less/timeline.less +101 -0
  370. data/test/dummy/public/AdminLTE-master/less/vars.less +64 -0
  371. data/test/dummy/public/AdminLTE-master/pages/UI/buttons.html +1270 -0
  372. data/test/dummy/public/AdminLTE-master/pages/UI/empty.html +415 -0
  373. data/test/dummy/public/AdminLTE-master/pages/UI/general.html +985 -0
  374. data/test/dummy/public/AdminLTE-master/pages/UI/icons.html +2176 -0
  375. data/test/dummy/public/AdminLTE-master/pages/UI/jquery-ui.html +539 -0
  376. data/test/dummy/public/AdminLTE-master/pages/UI/sliders.html +562 -0
  377. data/test/dummy/public/AdminLTE-master/pages/UI/timeline.html +564 -0
  378. data/test/dummy/public/AdminLTE-master/pages/calendar.html +643 -0
  379. data/test/dummy/public/AdminLTE-master/pages/charts/empty.html +415 -0
  380. data/test/dummy/public/AdminLTE-master/pages/charts/flot.html +763 -0
  381. data/test/dummy/public/AdminLTE-master/pages/charts/inline.html +888 -0
  382. data/test/dummy/public/AdminLTE-master/pages/charts/morris.html +554 -0
  383. data/test/dummy/public/AdminLTE-master/pages/empty.html +445 -0
  384. data/test/dummy/public/AdminLTE-master/pages/examples/404.html +433 -0
  385. data/test/dummy/public/AdminLTE-master/pages/examples/500.html +433 -0
  386. data/test/dummy/public/AdminLTE-master/pages/examples/blank.html +416 -0
  387. data/test/dummy/public/AdminLTE-master/pages/examples/invoice.html +553 -0
  388. data/test/dummy/public/AdminLTE-master/pages/examples/lockscreen.html +114 -0
  389. data/test/dummy/public/AdminLTE-master/pages/examples/login.html +58 -0
  390. data/test/dummy/public/AdminLTE-master/pages/examples/register.html +60 -0
  391. data/test/dummy/public/AdminLTE-master/pages/forms/advanced.html +742 -0
  392. data/test/dummy/public/AdminLTE-master/pages/forms/editors.html +472 -0
  393. data/test/dummy/public/AdminLTE-master/pages/forms/empty.html +415 -0
  394. data/test/dummy/public/AdminLTE-master/pages/forms/general.html +714 -0
  395. data/test/dummy/public/AdminLTE-master/pages/mailbox.html +671 -0
  396. data/test/dummy/public/AdminLTE-master/pages/tables/data.html +1304 -0
  397. data/test/dummy/public/AdminLTE-master/pages/tables/empty.html +414 -0
  398. data/test/dummy/public/AdminLTE-master/pages/tables/simple.html +716 -0
  399. data/test/dummy/public/AdminLTE-master/pages/widgets.html +1028 -0
  400. data/test/dummy/public/chat/bower/font-awesome/.bower.json +37 -0
  401. data/test/dummy/public/chat/bower/font-awesome/.gitignore +32 -0
  402. data/test/dummy/public/chat/bower/font-awesome/.npmignore +42 -0
  403. data/test/dummy/public/chat/bower/font-awesome/bower.json +23 -0
  404. data/test/dummy/public/chat/bower/font-awesome/css/font-awesome.css +1672 -0
  405. data/test/dummy/public/chat/bower/font-awesome/css/font-awesome.min.css +4 -0
  406. data/test/dummy/public/chat/bower/font-awesome/fonts/FontAwesome.otf +0 -0
  407. data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  408. data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.svg +520 -0
  409. data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  410. data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  411. data/test/dummy/public/chat/bower/font-awesome/less/bordered-pulled.less +16 -0
  412. data/test/dummy/public/chat/bower/font-awesome/less/core.less +11 -0
  413. data/test/dummy/public/chat/bower/font-awesome/less/extras.less +2 -0
  414. data/test/dummy/public/chat/bower/font-awesome/less/fixed-width.less +6 -0
  415. data/test/dummy/public/chat/bower/font-awesome/less/font-awesome.less +17 -0
  416. data/test/dummy/public/chat/bower/font-awesome/less/icons.less +552 -0
  417. data/test/dummy/public/chat/bower/font-awesome/less/larger.less +13 -0
  418. data/test/dummy/public/chat/bower/font-awesome/less/list.less +19 -0
  419. data/test/dummy/public/chat/bower/font-awesome/less/mixins.less +25 -0
  420. data/test/dummy/public/chat/bower/font-awesome/less/path.less +14 -0
  421. data/test/dummy/public/chat/bower/font-awesome/less/rotated-flipped.less +20 -0
  422. data/test/dummy/public/chat/bower/font-awesome/less/spinning.less +29 -0
  423. data/test/dummy/public/chat/bower/font-awesome/less/stacked.less +20 -0
  424. data/test/dummy/public/chat/bower/font-awesome/less/variables.less +561 -0
  425. data/test/dummy/public/chat/bower/font-awesome/scss/_bordered-pulled.scss +16 -0
  426. data/test/dummy/public/chat/bower/font-awesome/scss/_core.scss +11 -0
  427. data/test/dummy/public/chat/bower/font-awesome/scss/_extras.scss +44 -0
  428. data/test/dummy/public/chat/bower/font-awesome/scss/_fixed-width.scss +6 -0
  429. data/test/dummy/public/chat/bower/font-awesome/scss/_icons.scss +552 -0
  430. data/test/dummy/public/chat/bower/font-awesome/scss/_larger.scss +13 -0
  431. data/test/dummy/public/chat/bower/font-awesome/scss/_list.scss +19 -0
  432. data/test/dummy/public/chat/bower/font-awesome/scss/_mixins.scss +25 -0
  433. data/test/dummy/public/chat/bower/font-awesome/scss/_path.scss +14 -0
  434. data/test/dummy/public/chat/bower/font-awesome/scss/_rotated-flipped.scss +20 -0
  435. data/test/dummy/public/chat/bower/font-awesome/scss/_spinning.scss +29 -0
  436. data/test/dummy/public/chat/bower/font-awesome/scss/_stacked.scss +20 -0
  437. data/test/dummy/public/chat/bower/font-awesome/scss/_variables.scss +561 -0
  438. data/test/dummy/public/chat/bower/font-awesome/scss/font-awesome.scss +17 -0
  439. data/test/dummy/public/chat/bower/jScrollPane/.bower.json +33 -0
  440. data/test/dummy/public/chat/bower/jScrollPane/.gitignore +2 -0
  441. data/test/dummy/public/chat/bower/jScrollPane/.gitmodules +3 -0
  442. data/test/dummy/public/chat/bower/jScrollPane/GPL-LICENSE.txt +278 -0
  443. data/test/dummy/public/chat/bower/jScrollPane/MIT-LICENSE.txt +19 -0
  444. data/test/dummy/public/chat/bower/jScrollPane/README.md +23 -0
  445. data/test/dummy/public/chat/bower/jScrollPane/ajax.html +151 -0
  446. data/test/dummy/public/chat/bower/jScrollPane/ajax_content.html +73 -0
  447. data/test/dummy/public/chat/bower/jScrollPane/anchors.html +140 -0
  448. data/test/dummy/public/chat/bower/jScrollPane/api.html +190 -0
  449. data/test/dummy/public/chat/bower/jScrollPane/arrow_hover.html +208 -0
  450. data/test/dummy/public/chat/bower/jScrollPane/arrow_positions.html +634 -0
  451. data/test/dummy/public/chat/bower/jScrollPane/arrows.html +203 -0
  452. data/test/dummy/public/chat/bower/jScrollPane/auto_reinitialise.html +98 -0
  453. data/test/dummy/public/chat/bower/jScrollPane/basic.html +204 -0
  454. data/test/dummy/public/chat/bower/jScrollPane/bower.json +22 -0
  455. data/test/dummy/public/chat/bower/jScrollPane/build/.gitignore +1 -0
  456. data/test/dummy/public/chat/bower/jScrollPane/build/Gruntfile.js +49 -0
  457. data/test/dummy/public/chat/bower/jScrollPane/build/package.json +30 -0
  458. data/test/dummy/public/chat/bower/jScrollPane/caps.html +236 -0
  459. data/test/dummy/public/chat/bower/jScrollPane/changelog.html +66 -0
  460. data/test/dummy/public/chat/bower/jScrollPane/destroy.html +237 -0
  461. data/test/dummy/public/chat/bower/jScrollPane/drag_size.html +206 -0
  462. data/test/dummy/public/chat/bower/jScrollPane/dynamic_content.html +95 -0
  463. data/test/dummy/public/chat/bower/jScrollPane/dynamic_height.html +207 -0
  464. data/test/dummy/public/chat/bower/jScrollPane/dynamic_width.html +368 -0
  465. data/test/dummy/public/chat/bower/jScrollPane/events.html +264 -0
  466. data/test/dummy/public/chat/bower/jScrollPane/faqs.html +52 -0
  467. data/test/dummy/public/chat/bower/jScrollPane/fixed_width.html +230 -0
  468. data/test/dummy/public/chat/bower/jScrollPane/focus.html +207 -0
  469. data/test/dummy/public/chat/bower/jScrollPane/fullpage_scroll.html +259 -0
  470. data/test/dummy/public/chat/bower/jScrollPane/iframe.html +79 -0
  471. data/test/dummy/public/chat/bower/jScrollPane/iframe2.html +121 -0
  472. data/test/dummy/public/chat/bower/jScrollPane/iframe_content1.html +143 -0
  473. data/test/dummy/public/chat/bower/jScrollPane/iframe_content2.html +143 -0
  474. data/test/dummy/public/chat/bower/jScrollPane/iframe_content3.html +76 -0
  475. data/test/dummy/public/chat/bower/jScrollPane/iframe_content4.html +76 -0
  476. data/test/dummy/public/chat/bower/jScrollPane/image.html +96 -0
  477. data/test/dummy/public/chat/bower/jScrollPane/image/logo.png +0 -0
  478. data/test/dummy/public/chat/bower/jScrollPane/image2.html +98 -0
  479. data/test/dummy/public/chat/bower/jScrollPane/index.html +319 -0
  480. data/test/dummy/public/chat/bower/jScrollPane/invisibles.html +523 -0
  481. data/test/dummy/public/chat/bower/jScrollPane/issues/11/after.html +45 -0
  482. data/test/dummy/public/chat/bower/jScrollPane/issues/11/before.html +45 -0
  483. data/test/dummy/public/chat/bower/jScrollPane/issues/11/brs_main.css +301 -0
  484. data/test/dummy/public/chat/bower/jScrollPane/issues/11/index.html +53 -0
  485. data/test/dummy/public/chat/bower/jScrollPane/issues/11/jquery.mousewheel.js +79 -0
  486. data/test/dummy/public/chat/bower/jScrollPane/issues/11/jscrollpane-2b3.css +143 -0
  487. data/test/dummy/public/chat/bower/jScrollPane/issues/11/jscrollpane-2b3.js +1063 -0
  488. data/test/dummy/public/chat/bower/jScrollPane/issues/11/native.html +42 -0
  489. data/test/dummy/public/chat/bower/jScrollPane/issues/12/after.html +80 -0
  490. data/test/dummy/public/chat/bower/jScrollPane/issues/12/after_reinit.html +73 -0
  491. data/test/dummy/public/chat/bower/jScrollPane/issues/12/before.html +72 -0
  492. data/test/dummy/public/chat/bower/jScrollPane/issues/12/before_reinit.html +73 -0
  493. data/test/dummy/public/chat/bower/jScrollPane/issues/12/brs_main.css +301 -0
  494. data/test/dummy/public/chat/bower/jScrollPane/issues/12/index.html +53 -0
  495. data/test/dummy/public/chat/bower/jScrollPane/issues/12/jquery.mousewheel.js +79 -0
  496. data/test/dummy/public/chat/bower/jScrollPane/issues/12/jscrollpane-2b3.css +143 -0
  497. data/test/dummy/public/chat/bower/jScrollPane/issues/12/jscrollpane-2b3.js +1063 -0
  498. data/test/dummy/public/chat/bower/jScrollPane/issues/12/native.html +69 -0
  499. data/test/dummy/public/chat/bower/jScrollPane/issues/12/wrapped.html +87 -0
  500. data/test/dummy/public/chat/bower/jScrollPane/issues/7/after.html +190 -0
  501. data/test/dummy/public/chat/bower/jScrollPane/issues/7/before.html +190 -0
  502. data/test/dummy/public/chat/bower/jScrollPane/issues/7/index.html +53 -0
  503. data/test/dummy/public/chat/bower/jScrollPane/issues/7/jscrollpane-2b1.css +120 -0
  504. data/test/dummy/public/chat/bower/jScrollPane/issues/7/jscrollpane-2b2.js +947 -0
  505. data/test/dummy/public/chat/bower/jScrollPane/issues/7/native.html +171 -0
  506. data/test/dummy/public/chat/bower/jScrollPane/known_issues.html +62 -0
  507. data/test/dummy/public/chat/bower/jScrollPane/less_basic.html +164 -0
  508. data/test/dummy/public/chat/bower/jScrollPane/mwheel_intent.html +209 -0
  509. data/test/dummy/public/chat/bower/jScrollPane/override_animate.html +215 -0
  510. data/test/dummy/public/chat/bower/jScrollPane/runeimp.html +314 -0
  511. data/test/dummy/public/chat/bower/jScrollPane/runeimp2.html +320 -0
  512. data/test/dummy/public/chat/bower/jScrollPane/script/demo.js +49 -0
  513. data/test/dummy/public/chat/bower/jScrollPane/script/jquery.jscrollpane.js +1467 -0
  514. data/test/dummy/public/chat/bower/jScrollPane/script/jquery.jscrollpane.min.js +11 -0
  515. data/test/dummy/public/chat/bower/jScrollPane/script/jquery.mousewheel.js +202 -0
  516. data/test/dummy/public/chat/bower/jScrollPane/script/mwheelIntent.js +76 -0
  517. data/test/dummy/public/chat/bower/jScrollPane/scroll_on_left.html +132 -0
  518. data/test/dummy/public/chat/bower/jScrollPane/scroll_to.html +188 -0
  519. data/test/dummy/public/chat/bower/jScrollPane/scroll_to_animate.html +197 -0
  520. data/test/dummy/public/chat/bower/jScrollPane/settings.html +202 -0
  521. data/test/dummy/public/chat/bower/jScrollPane/short.html +82 -0
  522. data/test/dummy/public/chat/bower/jScrollPane/style/demo.css +227 -0
  523. data/test/dummy/public/chat/bower/jScrollPane/style/jquery.jscrollpane.css +115 -0
  524. data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_222222_256x240.png +0 -0
  525. data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_888888_256x240.png +0 -0
  526. data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_cd0a0a_256x240.png +0 -0
  527. data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/index.html +337 -0
  528. data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/style/jquery.jscrollpane.lozenge.css +78 -0
  529. data/test/dummy/public/chat/bower/jScrollPane/v1.html +49 -0
  530. data/test/dummy/public/chat/bower/jquery/.bower.json +37 -0
  531. data/test/dummy/public/chat/bower/jquery/MIT-LICENSE.txt +21 -0
  532. data/test/dummy/public/chat/bower/jquery/bower.json +27 -0
  533. data/test/dummy/public/chat/bower/jquery/dist/jquery.js +9205 -0
  534. data/test/dummy/public/chat/bower/jquery/dist/jquery.min.js +5 -0
  535. data/test/dummy/public/chat/bower/jquery/dist/jquery.min.map +1 -0
  536. data/test/dummy/public/chat/bower/jquery/src/ajax.js +786 -0
  537. data/test/dummy/public/chat/bower/jquery/src/ajax/jsonp.js +89 -0
  538. data/test/dummy/public/chat/bower/jquery/src/ajax/load.js +75 -0
  539. data/test/dummy/public/chat/bower/jquery/src/ajax/parseJSON.js +13 -0
  540. data/test/dummy/public/chat/bower/jquery/src/ajax/parseXML.js +28 -0
  541. data/test/dummy/public/chat/bower/jquery/src/ajax/script.js +64 -0
  542. data/test/dummy/public/chat/bower/jquery/src/ajax/var/nonce.js +5 -0
  543. data/test/dummy/public/chat/bower/jquery/src/ajax/var/rquery.js +3 -0
  544. data/test/dummy/public/chat/bower/jquery/src/ajax/xhr.js +136 -0
  545. data/test/dummy/public/chat/bower/jquery/src/attributes.js +11 -0
  546. data/test/dummy/public/chat/bower/jquery/src/attributes/attr.js +141 -0
  547. data/test/dummy/public/chat/bower/jquery/src/attributes/classes.js +158 -0
  548. data/test/dummy/public/chat/bower/jquery/src/attributes/prop.js +94 -0
  549. data/test/dummy/public/chat/bower/jquery/src/attributes/support.js +35 -0
  550. data/test/dummy/public/chat/bower/jquery/src/attributes/val.js +161 -0
  551. data/test/dummy/public/chat/bower/jquery/src/callbacks.js +205 -0
  552. data/test/dummy/public/chat/bower/jquery/src/core.js +497 -0
  553. data/test/dummy/public/chat/bower/jquery/src/core/access.js +60 -0
  554. data/test/dummy/public/chat/bower/jquery/src/core/init.js +123 -0
  555. data/test/dummy/public/chat/bower/jquery/src/core/parseHTML.js +39 -0
  556. data/test/dummy/public/chat/bower/jquery/src/core/ready.js +97 -0
  557. data/test/dummy/public/chat/bower/jquery/src/core/var/rsingleTag.js +4 -0
  558. data/test/dummy/public/chat/bower/jquery/src/css.js +450 -0
  559. data/test/dummy/public/chat/bower/jquery/src/css/addGetHookIf.js +22 -0
  560. data/test/dummy/public/chat/bower/jquery/src/css/curCSS.js +57 -0
  561. data/test/dummy/public/chat/bower/jquery/src/css/defaultDisplay.js +70 -0
  562. data/test/dummy/public/chat/bower/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  563. data/test/dummy/public/chat/bower/jquery/src/css/support.js +96 -0
  564. data/test/dummy/public/chat/bower/jquery/src/css/swap.js +28 -0
  565. data/test/dummy/public/chat/bower/jquery/src/css/var/cssExpand.js +3 -0
  566. data/test/dummy/public/chat/bower/jquery/src/css/var/getStyles.js +12 -0
  567. data/test/dummy/public/chat/bower/jquery/src/css/var/isHidden.js +13 -0
  568. data/test/dummy/public/chat/bower/jquery/src/css/var/rmargin.js +3 -0
  569. data/test/dummy/public/chat/bower/jquery/src/css/var/rnumnonpx.js +5 -0
  570. data/test/dummy/public/chat/bower/jquery/src/data.js +178 -0
  571. data/test/dummy/public/chat/bower/jquery/src/data/Data.js +181 -0
  572. data/test/dummy/public/chat/bower/jquery/src/data/accepts.js +20 -0
  573. data/test/dummy/public/chat/bower/jquery/src/data/var/data_priv.js +5 -0
  574. data/test/dummy/public/chat/bower/jquery/src/data/var/data_user.js +5 -0
  575. data/test/dummy/public/chat/bower/jquery/src/deferred.js +149 -0
  576. data/test/dummy/public/chat/bower/jquery/src/deprecated.js +13 -0
  577. data/test/dummy/public/chat/bower/jquery/src/dimensions.js +50 -0
  578. data/test/dummy/public/chat/bower/jquery/src/effects.js +648 -0
  579. data/test/dummy/public/chat/bower/jquery/src/effects/Tween.js +114 -0
  580. data/test/dummy/public/chat/bower/jquery/src/effects/animatedSelector.js +13 -0
  581. data/test/dummy/public/chat/bower/jquery/src/event.js +868 -0
  582. data/test/dummy/public/chat/bower/jquery/src/event/ajax.js +13 -0
  583. data/test/dummy/public/chat/bower/jquery/src/event/alias.js +39 -0
  584. data/test/dummy/public/chat/bower/jquery/src/event/support.js +9 -0
  585. data/test/dummy/public/chat/bower/jquery/src/exports/amd.js +24 -0
  586. data/test/dummy/public/chat/bower/jquery/src/exports/global.js +32 -0
  587. data/test/dummy/public/chat/bower/jquery/src/intro.js +44 -0
  588. data/test/dummy/public/chat/bower/jquery/src/jquery.js +37 -0
  589. data/test/dummy/public/chat/bower/jquery/src/manipulation.js +580 -0
  590. data/test/dummy/public/chat/bower/jquery/src/manipulation/_evalUrl.js +18 -0
  591. data/test/dummy/public/chat/bower/jquery/src/manipulation/support.js +32 -0
  592. data/test/dummy/public/chat/bower/jquery/src/manipulation/var/rcheckableType.js +3 -0
  593. data/test/dummy/public/chat/bower/jquery/src/offset.js +207 -0
  594. data/test/dummy/public/chat/bower/jquery/src/outro.js +1 -0
  595. data/test/dummy/public/chat/bower/jquery/src/queue.js +142 -0
  596. data/test/dummy/public/chat/bower/jquery/src/queue/delay.js +22 -0
  597. data/test/dummy/public/chat/bower/jquery/src/selector-native.js +172 -0
  598. data/test/dummy/public/chat/bower/jquery/src/selector-sizzle.js +14 -0
  599. data/test/dummy/public/chat/bower/jquery/src/selector.js +1 -0
  600. data/test/dummy/public/chat/bower/jquery/src/serialize.js +111 -0
  601. data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.js +2067 -0
  602. data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  603. data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  604. data/test/dummy/public/chat/bower/jquery/src/traversing.js +199 -0
  605. data/test/dummy/public/chat/bower/jquery/src/traversing/findFilter.js +100 -0
  606. data/test/dummy/public/chat/bower/jquery/src/traversing/var/rneedsContext.js +6 -0
  607. data/test/dummy/public/chat/bower/jquery/src/var/arr.js +3 -0
  608. data/test/dummy/public/chat/bower/jquery/src/var/class2type.js +4 -0
  609. data/test/dummy/public/chat/bower/jquery/src/var/concat.js +5 -0
  610. data/test/dummy/public/chat/bower/jquery/src/var/hasOwn.js +5 -0
  611. data/test/dummy/public/chat/bower/jquery/src/var/indexOf.js +5 -0
  612. data/test/dummy/public/chat/bower/jquery/src/var/pnum.js +3 -0
  613. data/test/dummy/public/chat/bower/jquery/src/var/push.js +5 -0
  614. data/test/dummy/public/chat/bower/jquery/src/var/rnotwhite.js +3 -0
  615. data/test/dummy/public/chat/bower/jquery/src/var/slice.js +5 -0
  616. data/test/dummy/public/chat/bower/jquery/src/var/strundefined.js +3 -0
  617. data/test/dummy/public/chat/bower/jquery/src/var/support.js +4 -0
  618. data/test/dummy/public/chat/bower/jquery/src/var/toString.js +5 -0
  619. data/test/dummy/public/chat/bower/jquery/src/wrap.js +79 -0
  620. data/test/dummy/public/chat/bower/open-sans-fontface/.bower.json +32 -0
  621. data/test/dummy/public/chat/bower/open-sans-fontface/README.md +17 -0
  622. data/test/dummy/public/chat/bower/open-sans-fontface/bower.json +22 -0
  623. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot +0 -0
  624. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.svg +958 -0
  625. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.ttf +0 -0
  626. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.woff +0 -0
  627. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot +0 -0
  628. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.svg +958 -0
  629. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.ttf +0 -0
  630. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.woff +0 -0
  631. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot +0 -0
  632. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.svg +958 -0
  633. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.ttf +0 -0
  634. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.woff +0 -0
  635. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot +0 -0
  636. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.svg +958 -0
  637. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.ttf +0 -0
  638. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.woff +0 -0
  639. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot +0 -0
  640. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.svg +958 -0
  641. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.ttf +0 -0
  642. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.woff +0 -0
  643. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.eot +0 -0
  644. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.svg +958 -0
  645. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.ttf +0 -0
  646. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.woff +0 -0
  647. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot +0 -0
  648. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.svg +958 -0
  649. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.ttf +0 -0
  650. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.woff +0 -0
  651. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot +0 -0
  652. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.svg +958 -0
  653. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.ttf +0 -0
  654. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.woff +0 -0
  655. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot +0 -0
  656. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.svg +958 -0
  657. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.ttf +0 -0
  658. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.woff +0 -0
  659. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot +0 -0
  660. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.svg +958 -0
  661. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.ttf +0 -0
  662. data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.woff +0 -0
  663. data/test/dummy/public/chat/bower/open-sans-fontface/index.html +85 -0
  664. data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.css +90 -0
  665. data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.less +133 -0
  666. data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.scss +12 -0
  667. data/test/dummy/public/chat/bower/open-sans-fontface/package.json +22 -0
  668. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Bold.scss +8 -0
  669. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_BoldItalic.scss +8 -0
  670. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_ExtraBold.scss +8 -0
  671. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_ExtraBoldItalic.scss +8 -0
  672. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Italic.scss +8 -0
  673. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Light.scss +8 -0
  674. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_LightItalic.scss +8 -0
  675. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Regular.scss +8 -0
  676. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Semibold.scss +8 -0
  677. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_SemiboldItalic.scss +8 -0
  678. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_mixins.scss +7 -0
  679. data/test/dummy/public/chat/bower/open-sans-fontface/sass/_variables.scss +2 -0
  680. data/test/dummy/public/chat/bower/open-sans-fontface/sass/open-sans.scss +12 -0
  681. data/test/dummy/public/chat/css/login.css +140 -0
  682. data/test/dummy/public/chat/css/login.scss +147 -0
  683. data/test/dummy/public/chat/css/style.css +397 -0
  684. data/test/dummy/public/chat/index.html +211 -0
  685. data/test/dummy/public/chat/js/index.js +6 -0
  686. data/test/dummy/public/chat/login.html +36 -0
  687. data/test/helper.rb +11 -53
  688. metadata +1501 -31
  689. data/lib/roda/component/models/channel.rb +0 -11
  690. data/lib/roda/component/models/user.rb +0 -12
  691. data/lib/roda/component/ohm.rb +0 -8
  692. data/test/dummy/public/index.html +0 -8
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "almasaeed2010/adminlte",
3
+ "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3",
4
+ "homepage": "http://almsaeedstudio.com/",
5
+ "keywords": [
6
+ "css",
7
+ "js",
8
+ "less",
9
+ "responsive",
10
+ "back-end",
11
+ "template",
12
+ "web"
13
+ ],
14
+ "authors": [
15
+ {
16
+ "name": "Abdullah Almsaeed",
17
+ "email": "support@almsaeedstudio.com"
18
+ }
19
+ ],
20
+ "license": "MIT",
21
+ "support": {
22
+ "issues": "https://github.com/almasaeed2010/AdminLTE/issues"
23
+ }
24
+ }
@@ -0,0 +1,3539 @@
1
+ @import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic);
2
+ @import url(//fonts.googleapis.com/css?family=Kaushan+Script);
3
+ /*!
4
+ * AdminLTE v1.2
5
+ * Author: AlmsaeedStudio.com
6
+ * License: Open source - MIT
7
+ * Please visit http://opensource.org/licenses/MIT for more information
8
+ !*/
9
+ /*
10
+ Core: General style
11
+ ----------------------------
12
+ */
13
+ html,
14
+ body {
15
+ overflow-x: hidden!important;
16
+ font-family: 'Source Sans Pro', sans-serif;
17
+ -webkit-font-smoothing: antialiased;
18
+ min-height: 100%;
19
+ background: #f9f9f9;
20
+ }
21
+ a {
22
+ color: #3c8dbc;
23
+ }
24
+ a:hover,
25
+ a:active,
26
+ a:focus {
27
+ outline: none;
28
+ text-decoration: none;
29
+ color: #72afd2;
30
+ }
31
+ /* Layouts */
32
+ .wrapper {
33
+ min-height: 100%;
34
+ }
35
+ .wrapper:before,
36
+ .wrapper:after {
37
+ display: table;
38
+ content: " ";
39
+ }
40
+ .wrapper:after {
41
+ clear: both;
42
+ }
43
+ /* Header */
44
+ body > .header {
45
+ position: absolute;
46
+ top: 0;
47
+ left: 0;
48
+ right: 0;
49
+ z-index: 1030;
50
+ }
51
+ /* Define 2 column template */
52
+ .right-side,
53
+ .left-side {
54
+ min-height: 100%;
55
+ display: block;
56
+ }
57
+ /*right side - contins main content*/
58
+ .right-side {
59
+ background-color: #f9f9f9;
60
+ margin-left: 220px;
61
+ }
62
+ /*left side - contains sidebar*/
63
+ .left-side {
64
+ position: absolute;
65
+ width: 220px;
66
+ top: 0;
67
+ }
68
+ @media screen and (min-width: 992px) {
69
+ .left-side {
70
+ top: 50px;
71
+ }
72
+ /*Right side strech mode*/
73
+ .right-side.strech {
74
+ margin-left: 0;
75
+ }
76
+ .right-side.strech > .content-header {
77
+ margin-top: 0px;
78
+ }
79
+ /* Left side collapse */
80
+ .left-side.collapse-left {
81
+ left: -220px;
82
+ }
83
+ }
84
+ /*Give content full width on xs screens*/
85
+ @media screen and (max-width: 992px) {
86
+ .right-side {
87
+ margin-left: 0;
88
+ }
89
+ }
90
+ /*
91
+ By default the layout is not fixed but if you add the class .fixed to the body element
92
+ the sidebar and the navbar will automatically become poisitioned fixed
93
+ */
94
+ body.fixed > .header,
95
+ body.fixed .left-side,
96
+ body.fixed .navbar {
97
+ position: fixed;
98
+ }
99
+ body.fixed > .header {
100
+ top: 0;
101
+ right: 0;
102
+ left: 0;
103
+ }
104
+ body.fixed .navbar {
105
+ left: 0;
106
+ right: 0;
107
+ }
108
+ body.fixed .wrapper {
109
+ margin-top: 50px;
110
+ }
111
+ /* Content */
112
+ .content {
113
+ padding: 20px 15px;
114
+ background: #f9f9f9;
115
+ overflow: auto;
116
+ }
117
+ /* Utility */
118
+ /* H1 - H6 font */
119
+ h1,
120
+ h2,
121
+ h3,
122
+ h4,
123
+ h5,
124
+ h6,
125
+ .h1,
126
+ .h2,
127
+ .h3,
128
+ .h4,
129
+ .h5,
130
+ .h6 {
131
+ font-family: 'Source Sans Pro', sans-serif;
132
+ }
133
+ /* Page Header */
134
+ .page-header {
135
+ margin: 10px 0 20px 0;
136
+ font-size: 22px;
137
+ }
138
+ .page-header > small {
139
+ color: #666;
140
+ display: block;
141
+ margin-top: 5px;
142
+ }
143
+ /* All images should be responsive */
144
+ img {
145
+ max-width: 100% !important;
146
+ }
147
+ .sort-highlight {
148
+ background: #f4f4f4;
149
+ border: 1px dashed #ddd;
150
+ margin-bottom: 10px;
151
+ }
152
+ /* 10px padding and margins */
153
+ .pad {
154
+ padding: 10px;
155
+ }
156
+ .margin {
157
+ margin: 10px;
158
+ }
159
+ /* Display inline */
160
+ .inline {
161
+ display: inline;
162
+ width: auto;
163
+ }
164
+ /* Background colors */
165
+ .bg-red,
166
+ .bg-yellow,
167
+ .bg-aqua,
168
+ .bg-blue,
169
+ .bg-light-blue,
170
+ .bg-green,
171
+ .bg-navy,
172
+ .bg-teal,
173
+ .bg-olive,
174
+ .bg-lime,
175
+ .bg-orange,
176
+ .bg-fuchsia,
177
+ .bg-purple,
178
+ .bg-maroon,
179
+ .bg-black {
180
+ color: #f9f9f9 !important;
181
+ }
182
+ .bg-gray {
183
+ background-color: #eaeaec !important;
184
+ }
185
+ .bg-black {
186
+ background-color: #222222 !important;
187
+ }
188
+ .bg-red {
189
+ background-color: #f56954 !important;
190
+ }
191
+ .bg-yellow {
192
+ background-color: #f39c12 !important;
193
+ }
194
+ .bg-aqua {
195
+ background-color: #00c0ef !important;
196
+ }
197
+ .bg-blue {
198
+ background-color: #0073b7 !important;
199
+ }
200
+ .bg-light-blue {
201
+ background-color: #3c8dbc !important;
202
+ }
203
+ .bg-green {
204
+ background-color: #00a65a !important;
205
+ }
206
+ .bg-navy {
207
+ background-color: #001f3f !important;
208
+ }
209
+ .bg-teal {
210
+ background-color: #39cccc !important;
211
+ }
212
+ .bg-olive {
213
+ background-color: #3d9970 !important;
214
+ }
215
+ .bg-lime {
216
+ background-color: #01ff70 !important;
217
+ }
218
+ .bg-orange {
219
+ background-color: #ff851b !important;
220
+ }
221
+ .bg-fuchsia {
222
+ background-color: #f012be !important;
223
+ }
224
+ .bg-purple {
225
+ background-color: #932ab6 !important;
226
+ }
227
+ .bg-maroon {
228
+ background-color: #85144b !important;
229
+ }
230
+ /* Text colors */
231
+ .text-red {
232
+ color: #f56954 !important;
233
+ }
234
+ .text-yellow {
235
+ color: #f39c12 !important;
236
+ }
237
+ .text-aqua {
238
+ color: #00c0ef !important;
239
+ }
240
+ .text-blue {
241
+ color: #0073b7 !important;
242
+ }
243
+ .text-black {
244
+ color: #222222 !important;
245
+ }
246
+ .text-light-blue {
247
+ color: #3c8dbc !important;
248
+ }
249
+ .text-green {
250
+ color: #00a65a !important;
251
+ }
252
+ .text-navy {
253
+ color: #001f3f !important;
254
+ }
255
+ .text-teal {
256
+ color: #39cccc !important;
257
+ }
258
+ .text-olive {
259
+ color: #3d9970 !important;
260
+ }
261
+ .text-lime {
262
+ color: #01ff70 !important;
263
+ }
264
+ .text-orange {
265
+ color: #ff851b !important;
266
+ }
267
+ .text-fuchsia {
268
+ color: #f012be !important;
269
+ }
270
+ .text-purple {
271
+ color: #932ab6 !important;
272
+ }
273
+ .text-maroon {
274
+ color: #85144b !important;
275
+ }
276
+ /*Hide elements by display none only*/
277
+ .hide {
278
+ display: none !important;
279
+ }
280
+ /* Remove borders */
281
+ .no-border {
282
+ border: 0px !important;
283
+ }
284
+ /* Remove padding */
285
+ .no-padding {
286
+ padding: 0px !important;
287
+ }
288
+ /* Remove margins */
289
+ .no-margin {
290
+ margin: 0px !important;
291
+ }
292
+ /* Remove box shadow */
293
+ .no-shadow {
294
+ box-shadow: none!important;
295
+ }
296
+ /* Don't display when printing */
297
+ @media print {
298
+ .no-print {
299
+ display: none;
300
+ }
301
+ .left-side,
302
+ .header,
303
+ .content-header {
304
+ display: none;
305
+ }
306
+ .right-side {
307
+ margin: 0;
308
+ }
309
+ }
310
+ /* Remove border radius */
311
+ .flat {
312
+ -webkit-border-radius: 0 !important;
313
+ -moz-border-radius: 0 !important;
314
+ border-radius: 0 !important;
315
+ }
316
+ /* Change the color of the striped tables */
317
+ .table-striped > tbody > tr:nth-child(odd) > td,
318
+ .table-striped > tbody > tr:nth-child(odd) > th {
319
+ background-color: #f3f4f5;
320
+ }
321
+ .table.no-border,
322
+ .table.no-border td,
323
+ .table.no-border th {
324
+ border: 0;
325
+ }
326
+ /* .text-center in tables */
327
+ table.text-center,
328
+ table.text-center td,
329
+ table.text-center th {
330
+ text-align: center;
331
+ }
332
+ .table.align th {
333
+ text-align: left;
334
+ }
335
+ .table.align td {
336
+ text-align: right;
337
+ }
338
+ .text-bold,
339
+ .text-bold.table td,
340
+ .text-bold.table th {
341
+ font-weight: 700;
342
+ }
343
+ .border-radius-none {
344
+ -webkit-border-radius: 0 !important;
345
+ -moz-border-radius: 0 !important;
346
+ border-radius: 0 !important;
347
+ }
348
+ /* _fix for sparkline tooltip */
349
+ .jqstooltip {
350
+ padding: 5px!important;
351
+ width: auto!important;
352
+ height: auto!important;
353
+ }
354
+ /*
355
+ Gradient Background colors
356
+ */
357
+ .bg-teal-gradient {
358
+ background: #39cccc !important;
359
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
360
+ background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
361
+ background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
362
+ background: -o-linear-gradient(#7adddd, #39cccc) !important;
363
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
364
+ color: #fff;
365
+ }
366
+ .bg-light-blue-gradient {
367
+ background: #3c8dbc !important;
368
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
369
+ background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
370
+ background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
371
+ background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
372
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
373
+ color: #fff;
374
+ }
375
+ .bg-blue-gradient {
376
+ background: #0073b7 !important;
377
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
378
+ background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
379
+ background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
380
+ background: -o-linear-gradient(#0089db, #0073b7) !important;
381
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
382
+ color: #fff;
383
+ }
384
+ .bg-aqua-gradient {
385
+ background: #00c0ef !important;
386
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
387
+ background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
388
+ background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
389
+ background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
390
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
391
+ color: #fff;
392
+ }
393
+ .bg-yellow-gradient {
394
+ background: #f39c12 !important;
395
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
396
+ background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
397
+ background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
398
+ background: -o-linear-gradient(#f7bc60, #f39c12) !important;
399
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
400
+ color: #fff;
401
+ }
402
+ .bg-purple-gradient {
403
+ background: #932ab6 !important;
404
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #932ab6), color-stop(1, #b959d9)) !important;
405
+ background: -ms-linear-gradient(bottom, #932ab6, #b959d9) !important;
406
+ background: -moz-linear-gradient(center bottom, #932ab6 0%, #b959d9 100%) !important;
407
+ background: -o-linear-gradient(#b959d9, #932ab6) !important;
408
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b959d9', endColorstr='#932ab6', GradientType=0) !important;
409
+ color: #fff;
410
+ }
411
+ .bg-green-gradient {
412
+ background: #00a65a !important;
413
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
414
+ background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
415
+ background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
416
+ background: -o-linear-gradient(#00ca6d, #00a65a) !important;
417
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
418
+ color: #fff;
419
+ }
420
+ .bg-red-gradient {
421
+ background: #f56954 !important;
422
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f56954), color-stop(1, #f89384)) !important;
423
+ background: -ms-linear-gradient(bottom, #f56954, #f89384) !important;
424
+ background: -moz-linear-gradient(center bottom, #f56954 0%, #f89384 100%) !important;
425
+ background: -o-linear-gradient(#f89384, #f56954) !important;
426
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89384', endColorstr='#f56954', GradientType=0) !important;
427
+ color: #fff;
428
+ }
429
+ .bg-black-gradient {
430
+ background: #222222 !important;
431
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #222222), color-stop(1, #3c3c3c)) !important;
432
+ background: -ms-linear-gradient(bottom, #222222, #3c3c3c) !important;
433
+ background: -moz-linear-gradient(center bottom, #222222 0%, #3c3c3c 100%) !important;
434
+ background: -o-linear-gradient(#3c3c3c, #222222) !important;
435
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c3c3c', endColorstr='#222222', GradientType=0) !important;
436
+ color: #fff;
437
+ }
438
+ .bg-maroon-gradient {
439
+ background: #85144b !important;
440
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #85144b), color-stop(1, #b11b64)) !important;
441
+ background: -ms-linear-gradient(bottom, #85144b, #b11b64) !important;
442
+ background: -moz-linear-gradient(center bottom, #85144b 0%, #b11b64 100%) !important;
443
+ background: -o-linear-gradient(#b11b64, #85144b) !important;
444
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b11b64', endColorstr='#85144b', GradientType=0) !important;
445
+ color: #fff;
446
+ }
447
+ .connectedSortable {
448
+ min-height: 100px;
449
+ }
450
+ /*---------------------------------------------------
451
+ LESS Elements 0.9
452
+ ---------------------------------------------------
453
+ A set of useful LESS mixins
454
+ More info at: http://lesselements.com
455
+ ---------------------------------------------------*/
456
+ /*
457
+ Components: navbar, logo and content header
458
+ -------------------------------------------------
459
+ */
460
+ body > .header {
461
+ position: relative;
462
+ max-height: 100px;
463
+ z-index: 1030;
464
+ }
465
+ body > .header .navbar {
466
+ height: 50px;
467
+ margin-bottom: 0;
468
+ margin-left: 220px;
469
+ }
470
+ body > .header .navbar .sidebar-toggle {
471
+ float: left;
472
+ padding: 9px 5px;
473
+ margin-top: 8px;
474
+ margin-right: 0;
475
+ margin-bottom: 8px;
476
+ margin-left: 5px;
477
+ background-color: transparent;
478
+ background-image: none;
479
+ border: 1px solid transparent;
480
+ -webkit-border-radius: 0 !important;
481
+ -moz-border-radius: 0 !important;
482
+ border-radius: 0 !important;
483
+ }
484
+ body > .header .navbar .sidebar-toggle:hover .icon-bar {
485
+ background: #f6f6f6;
486
+ }
487
+ body > .header .navbar .sidebar-toggle .icon-bar {
488
+ display: block;
489
+ width: 22px;
490
+ height: 2px;
491
+ -webkit-border-radius: 4px;
492
+ -moz-border-radius: 4px;
493
+ border-radius: 4px;
494
+ }
495
+ body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar {
496
+ margin-top: 4px;
497
+ }
498
+ body > .header .navbar .nav > li.user > a {
499
+ font-weight: bold;
500
+ }
501
+ body > .header .navbar .nav > li.user > a > .fa,
502
+ body > .header .navbar .nav > li.user > a > .glyphicon,
503
+ body > .header .navbar .nav > li.user > a > .ion {
504
+ margin-right: 5px;
505
+ }
506
+ body > .header .navbar .nav > li > a > .label {
507
+ -webkit-border-radius: 50%;
508
+ -moz-border-radius: 50%;
509
+ border-radius: 50%;
510
+ position: absolute;
511
+ top: 7px;
512
+ right: 2px;
513
+ font-size: 10px;
514
+ font-weight: normal;
515
+ width: 15px;
516
+ height: 15px;
517
+ line-height: 1.0em;
518
+ text-align: center;
519
+ padding: 2px;
520
+ }
521
+ body > .header .navbar .nav > li > a:hover > .label {
522
+ top: 3px;
523
+ }
524
+ body > .header .logo {
525
+ float: left;
526
+ font-size: 20px;
527
+ line-height: 50px;
528
+ text-align: center;
529
+ padding: 0 10px;
530
+ width: 220px;
531
+ font-family: 'Kaushan Script', cursive;
532
+ font-weight: 500;
533
+ height: 50px;
534
+ display: block;
535
+ }
536
+ body > .header .logo .icon {
537
+ margin-right: 10px;
538
+ }
539
+ .right-side > .content-header {
540
+ position: relative;
541
+ padding: 15px 15px 10px 20px;
542
+ }
543
+ .right-side > .content-header > h1 {
544
+ margin: 0;
545
+ font-size: 24px;
546
+ }
547
+ .right-side > .content-header > h1 > small {
548
+ font-size: 15px;
549
+ display: inline-block;
550
+ padding-left: 4px;
551
+ font-weight: 300;
552
+ }
553
+ .right-side > .content-header > .breadcrumb {
554
+ float: right;
555
+ background: transparent;
556
+ margin-top: 0px;
557
+ margin-bottom: 0;
558
+ font-size: 12px;
559
+ padding: 7px 5px;
560
+ position: absolute;
561
+ top: 15px;
562
+ right: 10px;
563
+ -webkit-border-radius: 2px;
564
+ -moz-border-radius: 2px;
565
+ border-radius: 2px;
566
+ }
567
+ .right-side > .content-header > .breadcrumb > li > a {
568
+ color: #444;
569
+ text-decoration: none;
570
+ }
571
+ .right-side > .content-header > .breadcrumb > li > a > .fa,
572
+ .right-side > .content-header > .breadcrumb > li > a > .glyphicon,
573
+ .right-side > .content-header > .breadcrumb > li > a > .ion {
574
+ margin-right: 5px;
575
+ }
576
+ .right-side > .content-header > .breadcrumb > li + li:before {
577
+ content: '>\00a0';
578
+ }
579
+ @media screen and (max-width: 767px) {
580
+ .right-side > .content-header > .breadcrumb {
581
+ position: relative;
582
+ margin-top: 5px;
583
+ top: 0;
584
+ right: 0;
585
+ float: none;
586
+ background: #efefef;
587
+ }
588
+ }
589
+ @media (max-width: 767px) {
590
+ .navbar .navbar-nav > li {
591
+ float: left;
592
+ }
593
+ .navbar-nav {
594
+ margin: 0;
595
+ float: left;
596
+ }
597
+ .navbar-nav > li > a {
598
+ padding-top: 15px;
599
+ padding-bottom: 15px;
600
+ line-height: 20px;
601
+ }
602
+ .navbar .navbar-right {
603
+ float: right;
604
+ }
605
+ }
606
+ @media screen and (max-width: 560px) {
607
+ body > .header {
608
+ position: relative;
609
+ }
610
+ body > .header .logo,
611
+ body > .header .navbar {
612
+ width: 100%;
613
+ float: none;
614
+ position: relative!important;
615
+ }
616
+ body > .header .navbar {
617
+ margin: 0;
618
+ }
619
+ body.fixed > .header {
620
+ position: fixed;
621
+ }
622
+ body.fixed > .wrapper,
623
+ body.fixed .sidebar-offcanvas {
624
+ margin-top: 100px!important;
625
+ }
626
+ }
627
+ /*
628
+ Component: Sidebar
629
+ --------------------------
630
+ */
631
+ .sidebar {
632
+ margin-bottom: 5px;
633
+ }
634
+ .sidebar .sidebar-form input:focus {
635
+ -webkit-box-shadow: none;
636
+ -moz-box-shadow: none;
637
+ box-shadow: none;
638
+ border-color: transparent!important;
639
+ }
640
+ .sidebar .sidebar-menu {
641
+ list-style: none;
642
+ margin: 0;
643
+ padding: 0;
644
+ }
645
+ .sidebar .sidebar-menu > li {
646
+ margin: 0;
647
+ padding: 0;
648
+ }
649
+ .sidebar .sidebar-menu > li > a {
650
+ padding: 12px 5px 12px 15px;
651
+ display: block;
652
+ }
653
+ .sidebar .sidebar-menu > li > a > .fa,
654
+ .sidebar .sidebar-menu > li > a > .glyphicon,
655
+ .sidebar .sidebar-menu > li > a > .ion {
656
+ width: 20px;
657
+ }
658
+ .sidebar .sidebar-menu .treeview-menu {
659
+ display: none;
660
+ list-style: none;
661
+ padding: 0;
662
+ margin: 0;
663
+ }
664
+ .sidebar .sidebar-menu .treeview-menu > li {
665
+ margin: 0;
666
+ }
667
+ .sidebar .sidebar-menu .treeview-menu > li > a {
668
+ padding: 5px 5px 5px 15px;
669
+ display: block;
670
+ font-size: 14px;
671
+ margin: 0px 0px;
672
+ }
673
+ .sidebar .sidebar-menu .treeview-menu > li > a > .fa,
674
+ .sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,
675
+ .sidebar .sidebar-menu .treeview-menu > li > a > .ion {
676
+ width: 20px;
677
+ }
678
+ .user-panel {
679
+ padding: 10px;
680
+ }
681
+ .user-panel:before,
682
+ .user-panel:after {
683
+ display: table;
684
+ content: " ";
685
+ }
686
+ .user-panel:after {
687
+ clear: both;
688
+ }
689
+ .user-panel > .image > img {
690
+ width: 45px;
691
+ height: 45px;
692
+ }
693
+ .user-panel > .info {
694
+ font-weight: 600;
695
+ padding: 5px 5px 5px 15px;
696
+ font-size: 14px;
697
+ line-height: 1;
698
+ }
699
+ .user-panel > .info > p {
700
+ margin-bottom: 9px;
701
+ }
702
+ .user-panel > .info > a {
703
+ text-decoration: none;
704
+ padding-right: 5px;
705
+ margin-top: 3px;
706
+ font-size: 11px;
707
+ font-weight: normal;
708
+ }
709
+ .user-panel > .info > a > .fa,
710
+ .user-panel > .info > a > .ion,
711
+ .user-panel > .info > a > .glyphicon {
712
+ margin-right: 3px;
713
+ }
714
+ /*
715
+ * Off Canvas
716
+ * --------------------------------------------------
717
+ * Gives us the push menu effect
718
+ */
719
+ @media screen and (max-width: 992px) {
720
+ .relative {
721
+ position: relative;
722
+ }
723
+ .row-offcanvas-right .sidebar-offcanvas {
724
+ right: -220px;
725
+ }
726
+ .row-offcanvas-left .sidebar-offcanvas {
727
+ left: -220px;
728
+ }
729
+ .row-offcanvas-right.active {
730
+ right: 220px;
731
+ }
732
+ .row-offcanvas-left.active {
733
+ left: 220px;
734
+ }
735
+ .sidebar-offcanvas {
736
+ left: 0;
737
+ }
738
+ body.fixed .sidebar-offcanvas {
739
+ margin-top: 50px;
740
+ left: -220px;
741
+ }
742
+ body.fixed .row-offcanvas-left.active .navbar {
743
+ left: 220px !important;
744
+ right: 0;
745
+ }
746
+ body.fixed .row-offcanvas-left.active .sidebar-offcanvas {
747
+ left: 0px;
748
+ }
749
+ }
750
+ /*
751
+ Dropdown menus
752
+ ----------------------------
753
+ */
754
+ /*Dropdowns in general*/
755
+ .dropdown-menu {
756
+ -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
757
+ -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
758
+ box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
759
+ z-index: 2300;
760
+ }
761
+ .dropdown-menu > li > a > .glyphicon,
762
+ .dropdown-menu > li > a > .fa,
763
+ .dropdown-menu > li > a > .ion {
764
+ margin-right: 10px;
765
+ }
766
+ .dropdown-menu > li > a:hover {
767
+ background-color: #3c8dbc;
768
+ color: #f9f9f9;
769
+ }
770
+ /*Drodown in navbars*/
771
+ .skin-blue .navbar .dropdown-menu > li > a {
772
+ color: #444444;
773
+ }
774
+ /*
775
+ Navbar custom dropdown menu
776
+ ------------------------------------
777
+ */
778
+ .navbar-nav > .notifications-menu > .dropdown-menu,
779
+ .navbar-nav > .messages-menu > .dropdown-menu,
780
+ .navbar-nav > .tasks-menu > .dropdown-menu {
781
+ width: 280px;
782
+ padding: 0 0 0 0!important;
783
+ margin: 0!important;
784
+ top: 100%;
785
+ border: 1px solid #dfdfdf;
786
+ -webkit-border-radius: 4px !important;
787
+ -moz-border-radius: 4px !important;
788
+ border-radius: 4px !important;
789
+ }
790
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
791
+ .navbar-nav > .messages-menu > .dropdown-menu > li.header,
792
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
793
+ -webkit-border-top-left-radius: 4px;
794
+ -webkit-border-top-right-radius: 4px;
795
+ -webkit-border-bottom-right-radius: 0;
796
+ -webkit-border-bottom-left-radius: 0;
797
+ -moz-border-radius-topleft: 4px;
798
+ -moz-border-radius-topright: 4px;
799
+ -moz-border-radius-bottomright: 0;
800
+ -moz-border-radius-bottomleft: 0;
801
+ border-top-left-radius: 4px;
802
+ border-top-right-radius: 4px;
803
+ border-bottom-right-radius: 0;
804
+ border-bottom-left-radius: 0;
805
+ background-color: #ffffff;
806
+ padding: 7px 10px;
807
+ border-bottom: 1px solid #f4f4f4;
808
+ color: #444444;
809
+ font-size: 14px;
810
+ }
811
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
812
+ .navbar-nav > .messages-menu > .dropdown-menu > li.header:after,
813
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after {
814
+ bottom: 100%;
815
+ left: 92%;
816
+ border: solid transparent;
817
+ content: " ";
818
+ height: 0;
819
+ width: 0;
820
+ position: absolute;
821
+ pointer-events: none;
822
+ border-color: rgba(255, 255, 255, 0);
823
+ border-bottom-color: #ffffff;
824
+ border-width: 7px;
825
+ margin-left: -7px;
826
+ }
827
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
828
+ .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
829
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
830
+ -webkit-border-top-left-radius: 0px;
831
+ -webkit-border-top-right-radius: 0px;
832
+ -webkit-border-bottom-right-radius: 4px;
833
+ -webkit-border-bottom-left-radius: 4px;
834
+ -moz-border-radius-topleft: 0px;
835
+ -moz-border-radius-topright: 0px;
836
+ -moz-border-radius-bottomright: 4px;
837
+ -moz-border-radius-bottomleft: 4px;
838
+ border-top-left-radius: 0px;
839
+ border-top-right-radius: 0px;
840
+ border-bottom-right-radius: 4px;
841
+ border-bottom-left-radius: 4px;
842
+ font-size: 12px;
843
+ background-color: #f4f4f4;
844
+ padding: 7px 10px;
845
+ border-bottom: 1px solid #eeeeee;
846
+ color: #444444;
847
+ text-align: center;
848
+ }
849
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
850
+ .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
851
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
852
+ background: #f4f4f4;
853
+ text-decoration: none;
854
+ font-weight: normal;
855
+ }
856
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
857
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
858
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
859
+ margin: 0;
860
+ padding: 0;
861
+ list-style: none;
862
+ overflow-x: hidden;
863
+ }
864
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
865
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
866
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
867
+ display: block;
868
+ white-space: nowrap;
869
+ /* Prevent text from breaking */
870
+ border-bottom: 1px solid #f4f4f4;
871
+ }
872
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
873
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
874
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
875
+ background: #f6f6f6;
876
+ text-decoration: none;
877
+ }
878
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
879
+ font-size: 12px;
880
+ color: #444444;
881
+ }
882
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
883
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
884
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
885
+ font-size: 20px;
886
+ width: 50px;
887
+ text-align: center;
888
+ padding: 15px 0px;
889
+ margin-right: 5px;
890
+ /* Default background and font colors */
891
+ background: #00c0ef;
892
+ color: #f9f9f9;
893
+ /* Fallback for browsers that doesn't support rgba */
894
+ color: rgba(255, 255, 255, 0.7);
895
+ }
896
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger,
897
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger,
898
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger {
899
+ background: #f56954;
900
+ }
901
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning,
902
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning,
903
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning {
904
+ background: #f39c12;
905
+ }
906
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success,
907
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success,
908
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success {
909
+ background: #00a65a;
910
+ }
911
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info,
912
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info,
913
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info {
914
+ background: #00c0ef;
915
+ }
916
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
917
+ margin: 0px;
918
+ line-height: 20px;
919
+ padding: 10px 5px 10px 5px;
920
+ -webkit-border-radius: 4px;
921
+ -moz-border-radius: 4px;
922
+ border-radius: 4px;
923
+ }
924
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
925
+ margin: auto 10px auto auto;
926
+ width: 40px;
927
+ height: 40px;
928
+ border: 1px solid #dddddd;
929
+ }
930
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
931
+ padding: 0;
932
+ margin: 0 0 0 45px;
933
+ color: #444444;
934
+ font-size: 15px;
935
+ }
936
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
937
+ color: #999999;
938
+ font-size: 10px;
939
+ float: right;
940
+ }
941
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
942
+ margin: 0 0 0 45px;
943
+ font-size: 12px;
944
+ color: #888888;
945
+ }
946
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
947
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
948
+ display: table;
949
+ content: " ";
950
+ }
951
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
952
+ clear: both;
953
+ }
954
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
955
+ padding: 10px;
956
+ }
957
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
958
+ font-size: 14px;
959
+ padding: 0;
960
+ margin: 0 0 10px 0;
961
+ color: #666666;
962
+ }
963
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
964
+ padding: 0;
965
+ margin: 0;
966
+ }
967
+ .navbar-nav > .user-menu > .dropdown-menu {
968
+ -webkit-border-radius: 0;
969
+ -moz-border-radius: 0;
970
+ border-radius: 0;
971
+ padding: 1px 0 0 0;
972
+ border-top-width: 0;
973
+ width: 280px;
974
+ }
975
+ .navbar-nav > .user-menu > .dropdown-menu:after {
976
+ bottom: 100%;
977
+ right: 10px;
978
+ border: solid transparent;
979
+ content: " ";
980
+ height: 0;
981
+ width: 0;
982
+ position: absolute;
983
+ pointer-events: none;
984
+ border-color: rgba(255, 255, 255, 0);
985
+ border-bottom-color: #ffffff;
986
+ border-width: 10px;
987
+ margin-left: -10px;
988
+ }
989
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
990
+ height: 175px;
991
+ padding: 10px;
992
+ background: #3c8dbc;
993
+ text-align: center;
994
+ }
995
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
996
+ z-index: 5;
997
+ height: 90px;
998
+ width: 90px;
999
+ border: 8px solid;
1000
+ border-color: transparent;
1001
+ border-color: rgba(255, 255, 255, 0.2);
1002
+ }
1003
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
1004
+ z-index: 5;
1005
+ color: #f9f9f9;
1006
+ color: rgba(255, 255, 255, 0.8);
1007
+ font-size: 17px;
1008
+ text-shadow: 2px 2px 3px #333333;
1009
+ margin-top: 10px;
1010
+ }
1011
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
1012
+ display: block;
1013
+ font-size: 12px;
1014
+ }
1015
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-body {
1016
+ padding: 15px;
1017
+ border-bottom: 1px solid #f4f4f4;
1018
+ border-top: 1px solid #dddddd;
1019
+ }
1020
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-body:before,
1021
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
1022
+ display: table;
1023
+ content: " ";
1024
+ }
1025
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
1026
+ clear: both;
1027
+ }
1028
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a {
1029
+ color: #0073b7;
1030
+ }
1031
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-footer {
1032
+ background-color: #f9f9f9;
1033
+ padding: 10px;
1034
+ }
1035
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before,
1036
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
1037
+ display: table;
1038
+ content: " ";
1039
+ }
1040
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
1041
+ clear: both;
1042
+ }
1043
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default {
1044
+ color: #666666;
1045
+ }
1046
+ /* Add fade animation to dropdown menus */
1047
+ .open > .dropdown-menu {
1048
+ animation-name: fadeAnimation;
1049
+ animation-duration: .7s;
1050
+ animation-iteration-count: 1;
1051
+ animation-timing-function: ease;
1052
+ animation-fill-mode: forwards;
1053
+ -webkit-animation-name: fadeAnimation;
1054
+ -webkit-animation-duration: .7s;
1055
+ -webkit-animation-iteration-count: 1;
1056
+ -webkit-animation-timing-function: ease;
1057
+ -webkit-animation-fill-mode: forwards;
1058
+ -moz-animation-name: fadeAnimation;
1059
+ -moz-animation-duration: .7s;
1060
+ -moz-animation-iteration-count: 1;
1061
+ -moz-animation-timing-function: ease;
1062
+ -moz-animation-fill-mode: forwards;
1063
+ }
1064
+ @keyframes fadeAnimation {
1065
+ from {
1066
+ opacity: 0;
1067
+ top: 120%;
1068
+ }
1069
+ to {
1070
+ opacity: 1;
1071
+ top: 100%;
1072
+ }
1073
+ }
1074
+ @-webkit-keyframes fadeAnimation {
1075
+ from {
1076
+ opacity: 0;
1077
+ top: 120%;
1078
+ }
1079
+ to {
1080
+ opacity: 1;
1081
+ top: 100%;
1082
+ }
1083
+ }
1084
+ /* Fix dropdown menu for small screens to display correctly on small screens */
1085
+ @media screen and (max-width: 767px) {
1086
+ .navbar-nav > .notifications-menu > .dropdown-menu,
1087
+ .navbar-nav > .user-menu > .dropdown-menu,
1088
+ .navbar-nav > .tasks-menu > .dropdown-menu,
1089
+ .navbar-nav > .messages-menu > .dropdown-menu {
1090
+ position: absolute;
1091
+ top: 100%;
1092
+ right: 0;
1093
+ left: auto;
1094
+ border-right: 1px solid #dddddd;
1095
+ border-bottom: 1px solid #dddddd;
1096
+ border-left: 1px solid #dddddd;
1097
+ background: #ffffff;
1098
+ }
1099
+ }
1100
+ /* Fix menu positions on xs screens to appear correctly and fully */
1101
+ @media screen and (max-width: 480px) {
1102
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
1103
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.header,
1104
+ .navbar-nav > .messages-menu > .dropdown-menu > li.header {
1105
+ /* Remove arrow from the top */
1106
+ }
1107
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
1108
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after,
1109
+ .navbar-nav > .messages-menu > .dropdown-menu > li.header:after {
1110
+ border-width: 0px!important;
1111
+ }
1112
+ .navbar-nav > .tasks-menu > .dropdown-menu {
1113
+ position: absolute;
1114
+ right: -120px;
1115
+ left: auto;
1116
+ }
1117
+ .navbar-nav > .notifications-menu > .dropdown-menu {
1118
+ position: absolute;
1119
+ right: -170px;
1120
+ left: auto;
1121
+ }
1122
+ .navbar-nav > .messages-menu > .dropdown-menu {
1123
+ position: absolute;
1124
+ right: -210px;
1125
+ left: auto;
1126
+ }
1127
+ }
1128
+ /*
1129
+ All form elements including input, select, textarea etc.
1130
+ -----------------------------------------------------------------
1131
+ */
1132
+ .form-control {
1133
+ -webkit-border-radius: 0px !important;
1134
+ -moz-border-radius: 0px !important;
1135
+ border-radius: 0px !important;
1136
+ box-shadow: none;
1137
+ }
1138
+ .form-control:focus {
1139
+ border-color: #3c8dbc !important;
1140
+ box-shadow: none;
1141
+ }
1142
+ .form-group.has-success label {
1143
+ color: #00a65a;
1144
+ }
1145
+ .form-group.has-success .form-control {
1146
+ border-color: #00a65a !important;
1147
+ box-shadow: none;
1148
+ }
1149
+ .form-group.has-warning label {
1150
+ color: #f39c12;
1151
+ }
1152
+ .form-group.has-warning .form-control {
1153
+ border-color: #f39c12 !important;
1154
+ box-shadow: none;
1155
+ }
1156
+ .form-group.has-error label {
1157
+ color: #f56954;
1158
+ }
1159
+ .form-group.has-error .form-control {
1160
+ border-color: #f56954 !important;
1161
+ box-shadow: none;
1162
+ }
1163
+ /* Input group */
1164
+ .input-group .input-group-addon {
1165
+ border-radius: 0;
1166
+ background-color: #f4f4f4;
1167
+ }
1168
+ /* button groups */
1169
+ .btn-group-vertical .btn.btn-flat:first-of-type,
1170
+ .btn-group-vertical .btn.btn-flat:last-of-type {
1171
+ border-radius: 0;
1172
+ }
1173
+ /* Checkbox and radio inputs */
1174
+ .checkbox,
1175
+ .radio {
1176
+ padding-left: 0;
1177
+ }
1178
+ /*
1179
+ Compenent: Progress bars
1180
+ --------------------------------
1181
+ */
1182
+ /* size variation */
1183
+ .progress.sm {
1184
+ height: 10px;
1185
+ }
1186
+ .progress.xs {
1187
+ height: 7px;
1188
+ }
1189
+ /* Vertical bars */
1190
+ .progress.vertical {
1191
+ position: relative;
1192
+ width: 30px;
1193
+ height: 200px;
1194
+ display: inline-block;
1195
+ margin-right: 10px;
1196
+ }
1197
+ .progress.vertical > .progress-bar {
1198
+ width: 100%!important;
1199
+ position: absolute;
1200
+ bottom: 0;
1201
+ }
1202
+ .progress.vertical.sm {
1203
+ width: 20px;
1204
+ }
1205
+ .progress.vertical.xs {
1206
+ width: 10px;
1207
+ }
1208
+ /* Remove margins from progress bars when put in a table */
1209
+ .table tr > td .progress {
1210
+ margin: 0;
1211
+ }
1212
+ .progress-bar-light-blue,
1213
+ .progress-bar-primary {
1214
+ background-color: #3c8dbc;
1215
+ }
1216
+ .progress-striped .progress-bar-light-blue,
1217
+ .progress-striped .progress-bar-primary {
1218
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
1219
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1220
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1221
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1222
+ }
1223
+ .progress-bar-green,
1224
+ .progress-bar-success {
1225
+ background-color: #00a65a;
1226
+ }
1227
+ .progress-striped .progress-bar-green,
1228
+ .progress-striped .progress-bar-success {
1229
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
1230
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1231
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1232
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1233
+ }
1234
+ .progress-bar-aqua,
1235
+ .progress-bar-info {
1236
+ background-color: #00c0ef;
1237
+ }
1238
+ .progress-striped .progress-bar-aqua,
1239
+ .progress-striped .progress-bar-info {
1240
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
1241
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1242
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1243
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1244
+ }
1245
+ .progress-bar-yellow,
1246
+ .progress-bar-warning {
1247
+ background-color: #f39c12;
1248
+ }
1249
+ .progress-striped .progress-bar-yellow,
1250
+ .progress-striped .progress-bar-warning {
1251
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
1252
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1253
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1254
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1255
+ }
1256
+ .progress-bar-red,
1257
+ .progress-bar-danger {
1258
+ background-color: #f56954;
1259
+ }
1260
+ .progress-striped .progress-bar-red,
1261
+ .progress-striped .progress-bar-danger {
1262
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
1263
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1264
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1265
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1266
+ }
1267
+ /*
1268
+ Component: Small boxes
1269
+ */
1270
+ .small-box {
1271
+ position: relative;
1272
+ display: block;
1273
+ -webkit-border-radius: 2px;
1274
+ -moz-border-radius: 2px;
1275
+ border-radius: 2px;
1276
+ margin-bottom: 15px;
1277
+ }
1278
+ .small-box > .inner {
1279
+ padding: 10px;
1280
+ }
1281
+ .small-box > .small-box-footer {
1282
+ position: relative;
1283
+ text-align: center;
1284
+ padding: 3px 0;
1285
+ color: #fff;
1286
+ color: rgba(255, 255, 255, 0.8);
1287
+ display: block;
1288
+ z-index: 10;
1289
+ background: rgba(0, 0, 0, 0.1);
1290
+ text-decoration: none;
1291
+ }
1292
+ .small-box > .small-box-footer:hover {
1293
+ color: #fff;
1294
+ background: rgba(0, 0, 0, 0.15);
1295
+ }
1296
+ .small-box h3 {
1297
+ font-size: 38px;
1298
+ font-weight: bold;
1299
+ margin: 0 0 10px 0;
1300
+ white-space: nowrap;
1301
+ padding: 0;
1302
+ }
1303
+ .small-box p {
1304
+ font-size: 15px;
1305
+ }
1306
+ .small-box p > small {
1307
+ display: block;
1308
+ color: #f9f9f9;
1309
+ font-size: 13px;
1310
+ margin-top: 5px;
1311
+ }
1312
+ .small-box h3,
1313
+ .small-box p {
1314
+ z-index: 5px;
1315
+ }
1316
+ .small-box .icon {
1317
+ position: absolute;
1318
+ top: auto;
1319
+ bottom: 5px;
1320
+ right: 5px;
1321
+ z-index: 0;
1322
+ font-size: 90px;
1323
+ color: rgba(0, 0, 0, 0.15);
1324
+ }
1325
+ .small-box:hover {
1326
+ text-decoration: none;
1327
+ color: #f9f9f9;
1328
+ }
1329
+ .small-box:hover .icon {
1330
+ animation-name: tansformAnimation;
1331
+ animation-duration: .5s;
1332
+ animation-iteration-count: 1;
1333
+ animation-timing-function: ease;
1334
+ animation-fill-mode: forwards;
1335
+ -webkit-animation-name: tansformAnimation;
1336
+ -webkit-animation-duration: .5s;
1337
+ -webkit-animation-iteration-count: 1;
1338
+ -webkit-animation-timing-function: ease;
1339
+ -webkit-animation-fill-mode: forwards;
1340
+ -moz-animation-name: tansformAnimation;
1341
+ -moz-animation-duration: .5s;
1342
+ -moz-animation-iteration-count: 1;
1343
+ -moz-animation-timing-function: ease;
1344
+ -moz-animation-fill-mode: forwards;
1345
+ }
1346
+ @keyframes tansformAnimation {
1347
+ from {
1348
+ font-size: 90px;
1349
+ }
1350
+ to {
1351
+ font-size: 100px;
1352
+ }
1353
+ }
1354
+ @-webkit-keyframes tansformAnimation {
1355
+ from {
1356
+ font-size: 90px;
1357
+ }
1358
+ to {
1359
+ font-size: 100px;
1360
+ }
1361
+ }
1362
+ @media screen and (max-width: 480px) {
1363
+ .small-box {
1364
+ text-align: center;
1365
+ }
1366
+ .small-box .icon {
1367
+ display: none;
1368
+ }
1369
+ .small-box p {
1370
+ font-size: 12px;
1371
+ }
1372
+ }
1373
+ /*
1374
+ component: Boxes
1375
+ -------------------------
1376
+ */
1377
+ .box {
1378
+ position: relative;
1379
+ background: #ffffff;
1380
+ border-top: 2px solid #c1c1c1;
1381
+ margin-bottom: 20px;
1382
+ -webkit-border-radius: 3px;
1383
+ -moz-border-radius: 3px;
1384
+ border-radius: 3px;
1385
+ width: 100%;
1386
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
1387
+ }
1388
+ .box.box-primary {
1389
+ border-top-color: #3c8dbc;
1390
+ }
1391
+ .box.box-info {
1392
+ border-top-color: #00c0ef;
1393
+ }
1394
+ .box.box-danger {
1395
+ border-top-color: #f56954;
1396
+ }
1397
+ .box.box-warning {
1398
+ border-top-color: #f39c12;
1399
+ }
1400
+ .box.box-success {
1401
+ border-top-color: #00a65a;
1402
+ }
1403
+ .box.height-control .box-body {
1404
+ max-height: 300px;
1405
+ overflow: auto;
1406
+ }
1407
+ .box .box-header {
1408
+ position: relative;
1409
+ -webkit-border-top-left-radius: 3px;
1410
+ -webkit-border-top-right-radius: 3px;
1411
+ -webkit-border-bottom-right-radius: 0;
1412
+ -webkit-border-bottom-left-radius: 0;
1413
+ -moz-border-radius-topleft: 3px;
1414
+ -moz-border-radius-topright: 3px;
1415
+ -moz-border-radius-bottomright: 0;
1416
+ -moz-border-radius-bottomleft: 0;
1417
+ border-top-left-radius: 3px;
1418
+ border-top-right-radius: 3px;
1419
+ border-bottom-right-radius: 0;
1420
+ border-bottom-left-radius: 0;
1421
+ border-bottom: 0px solid #f4f4f4;
1422
+ color: #444;
1423
+ }
1424
+ .box .box-header:before,
1425
+ .box .box-header:after {
1426
+ display: table;
1427
+ content: " ";
1428
+ }
1429
+ .box .box-header:after {
1430
+ clear: both;
1431
+ }
1432
+ .box .box-header > .fa,
1433
+ .box .box-header > .glyphicon,
1434
+ .box .box-header > .ion,
1435
+ .box .box-header .box-title {
1436
+ display: inline-block;
1437
+ padding: 10px 10px 10px 10px;
1438
+ margin: 0;
1439
+ font-size: 20px;
1440
+ font-weight: 400;
1441
+ float: left;
1442
+ cursor: default;
1443
+ }
1444
+ .box .box-header a {
1445
+ color: #444;
1446
+ }
1447
+ .box .box-header > .box-tools {
1448
+ padding: 5px 10px 5px 5px;
1449
+ }
1450
+ .box .box-body {
1451
+ padding: 10px;
1452
+ -webkit-border-top-left-radius: 0;
1453
+ -webkit-border-top-right-radius: 0;
1454
+ -webkit-border-bottom-right-radius: 3px;
1455
+ -webkit-border-bottom-left-radius: 3px;
1456
+ -moz-border-radius-topleft: 0;
1457
+ -moz-border-radius-topright: 0;
1458
+ -moz-border-radius-bottomright: 3px;
1459
+ -moz-border-radius-bottomleft: 3px;
1460
+ border-top-left-radius: 0;
1461
+ border-top-right-radius: 0;
1462
+ border-bottom-right-radius: 3px;
1463
+ border-bottom-left-radius: 3px;
1464
+ }
1465
+ .box .box-body > table,
1466
+ .box .box-body > .table {
1467
+ margin-bottom: 0;
1468
+ }
1469
+ .box .box-body.chart-responsive {
1470
+ width: 100%;
1471
+ overflow: hidden;
1472
+ }
1473
+ .box .box-body > .chart {
1474
+ position: relative;
1475
+ overflow: hidden;
1476
+ width: 100%;
1477
+ }
1478
+ .box .box-body > .chart svg,
1479
+ .box .box-body > .chart canvas {
1480
+ width: 100%!important;
1481
+ }
1482
+ .box .box-body .fc {
1483
+ margin-top: 5px;
1484
+ }
1485
+ .box .box-body .fc-header-title h2 {
1486
+ font-size: 15px;
1487
+ line-height: 1.6em;
1488
+ color: #666;
1489
+ margin-left: 10px;
1490
+ }
1491
+ .box .box-body .fc-header-right {
1492
+ padding-right: 10px;
1493
+ }
1494
+ .box .box-body .fc-header-left {
1495
+ padding-left: 10px;
1496
+ }
1497
+ .box .box-body .fc-widget-header {
1498
+ background: #fafafa;
1499
+ box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02);
1500
+ }
1501
+ .box .box-body .fc-grid {
1502
+ width: 100%;
1503
+ border: 0;
1504
+ }
1505
+ .box .box-body .fc-widget-header:first-of-type,
1506
+ .box .box-body .fc-widget-content:first-of-type {
1507
+ border-left: 0;
1508
+ border-right: 0;
1509
+ }
1510
+ .box .box-body .fc-widget-header:last-of-type,
1511
+ .box .box-body .fc-widget-content:last-of-type {
1512
+ border-right: 0;
1513
+ }
1514
+ .box .box-body .table {
1515
+ margin-bottom: 0;
1516
+ }
1517
+ .box .box-body .full-width-chart {
1518
+ margin: -19px;
1519
+ }
1520
+ .box .box-body.no-padding .full-width-chart {
1521
+ margin: -9px;
1522
+ }
1523
+ .box .box-footer {
1524
+ border-top: 1px solid #f4f4f4;
1525
+ -webkit-border-top-left-radius: 0;
1526
+ -webkit-border-top-right-radius: 0;
1527
+ -webkit-border-bottom-right-radius: 3px;
1528
+ -webkit-border-bottom-left-radius: 3px;
1529
+ -moz-border-radius-topleft: 0;
1530
+ -moz-border-radius-topright: 0;
1531
+ -moz-border-radius-bottomright: 3px;
1532
+ -moz-border-radius-bottomleft: 3px;
1533
+ border-top-left-radius: 0;
1534
+ border-top-right-radius: 0;
1535
+ border-bottom-right-radius: 3px;
1536
+ border-bottom-left-radius: 3px;
1537
+ padding: 10px;
1538
+ background-color: #ffffff;
1539
+ }
1540
+ .box.box-solid {
1541
+ border-top: 0px;
1542
+ }
1543
+ .box.box-solid > .box-header {
1544
+ padding-bottom: 0px!important;
1545
+ }
1546
+ .box.box-solid > .box-header .btn.btn-default {
1547
+ background: transparent;
1548
+ }
1549
+ .box.box-solid.box-primary > .box-header {
1550
+ color: #fff;
1551
+ background: #3c8dbc;
1552
+ background-color: #3c8dbc;
1553
+ }
1554
+ .box.box-solid.box-primary > .box-header a {
1555
+ color: #444;
1556
+ }
1557
+ .box.box-solid.box-info > .box-header {
1558
+ color: #fff;
1559
+ background: #00c0ef;
1560
+ background-color: #00c0ef;
1561
+ }
1562
+ .box.box-solid.box-info > .box-header a {
1563
+ color: #444;
1564
+ }
1565
+ .box.box-solid.box-danger > .box-header {
1566
+ color: #fff;
1567
+ background: #f56954;
1568
+ background-color: #f56954;
1569
+ }
1570
+ .box.box-solid.box-danger > .box-header a {
1571
+ color: #444;
1572
+ }
1573
+ .box.box-solid.box-warning > .box-header {
1574
+ color: #fff;
1575
+ background: #f39c12;
1576
+ background-color: #f39c12;
1577
+ }
1578
+ .box.box-solid.box-warning > .box-header a {
1579
+ color: #444;
1580
+ }
1581
+ .box.box-solid.box-success > .box-header {
1582
+ color: #fff;
1583
+ background: #00a65a;
1584
+ background-color: #00a65a;
1585
+ }
1586
+ .box.box-solid.box-success > .box-header a {
1587
+ color: #444;
1588
+ }
1589
+ .box.box-solid > .box-header > .box-tools .btn {
1590
+ border: 0;
1591
+ box-shadow: none;
1592
+ }
1593
+ .box.box-solid.collapsed-box .box-header {
1594
+ -webkit-border-radius: 3px;
1595
+ -moz-border-radius: 3px;
1596
+ border-radius: 3px;
1597
+ }
1598
+ .box.box-solid[class*='bg'] > .box-header {
1599
+ color: #fff;
1600
+ }
1601
+ .box .box-group > .box {
1602
+ margin-bottom: 5px;
1603
+ }
1604
+ .box .knob-label {
1605
+ text-align: center;
1606
+ color: #333;
1607
+ font-weight: 100;
1608
+ font-size: 12px;
1609
+ margin-bottom: 0.3em;
1610
+ }
1611
+ .box .todo-list {
1612
+ margin: 0;
1613
+ padding: 0px 0px;
1614
+ list-style: none;
1615
+ }
1616
+ .box .todo-list > li {
1617
+ -webkit-border-radius: 2px;
1618
+ -moz-border-radius: 2px;
1619
+ border-radius: 2px;
1620
+ padding: 10px;
1621
+ background: #f3f4f5;
1622
+ margin-bottom: 2px;
1623
+ border-left: 2px solid #e6e7e8;
1624
+ color: #444;
1625
+ }
1626
+ .box .todo-list > li:last-of-type {
1627
+ margin-bottom: 0;
1628
+ }
1629
+ .box .todo-list > li.danger {
1630
+ border-left-color: #f56954;
1631
+ }
1632
+ .box .todo-list > li.warning {
1633
+ border-left-color: #f39c12;
1634
+ }
1635
+ .box .todo-list > li.info {
1636
+ border-left-color: #00c0ef;
1637
+ }
1638
+ .box .todo-list > li.success {
1639
+ border-left-color: #00a65a;
1640
+ }
1641
+ .box .todo-list > li.primary {
1642
+ border-left-color: #3c8dbc;
1643
+ }
1644
+ .box .todo-list > li > input[type='checkbox'] {
1645
+ margin: 0 10px 0 5px;
1646
+ }
1647
+ .box .todo-list > li .text {
1648
+ display: inline-block;
1649
+ margin-left: 5px;
1650
+ font-weight: 600;
1651
+ }
1652
+ .box .todo-list > li .label {
1653
+ margin-left: 10px;
1654
+ font-size: 9px;
1655
+ }
1656
+ .box .todo-list > li .tools {
1657
+ display: none;
1658
+ float: right;
1659
+ color: #f56954;
1660
+ }
1661
+ .box .todo-list > li .tools > .fa,
1662
+ .box .todo-list > li .tools > .glyphicon,
1663
+ .box .todo-list > li .tools > .ion {
1664
+ margin-right: 5px;
1665
+ cursor: pointer;
1666
+ }
1667
+ .box .todo-list > li:hover .tools {
1668
+ display: inline-block;
1669
+ }
1670
+ .box .todo-list > li.done {
1671
+ color: #999;
1672
+ }
1673
+ .box .todo-list > li.done .text {
1674
+ text-decoration: line-through;
1675
+ font-weight: 500;
1676
+ }
1677
+ .box .todo-list > li.done .label {
1678
+ background: #eaeaec !important;
1679
+ }
1680
+ .box .todo-list .handle {
1681
+ display: inline-block;
1682
+ cursor: move;
1683
+ margin: 0 5px;
1684
+ }
1685
+ .box .chat {
1686
+ padding: 5px 20px 5px 10px;
1687
+ }
1688
+ .box .chat .item {
1689
+ margin-bottom: 10px;
1690
+ }
1691
+ .box .chat .item:before,
1692
+ .box .chat .item:after {
1693
+ display: table;
1694
+ content: " ";
1695
+ }
1696
+ .box .chat .item:after {
1697
+ clear: both;
1698
+ }
1699
+ .box .chat .item > img {
1700
+ width: 40px;
1701
+ height: 40px;
1702
+ border: 2px solid transparent;
1703
+ -webkit-border-radius: 50% !important;
1704
+ -moz-border-radius: 50% !important;
1705
+ border-radius: 50% !important;
1706
+ }
1707
+ .box .chat .item > img.online {
1708
+ border: 2px solid #00a65a;
1709
+ }
1710
+ .box .chat .item > img.offline {
1711
+ border: 2px solid #f56954;
1712
+ }
1713
+ .box .chat .item > .message {
1714
+ margin-left: 55px;
1715
+ margin-top: -40px;
1716
+ }
1717
+ .box .chat .item > .message > .name {
1718
+ display: block;
1719
+ font-weight: 600;
1720
+ }
1721
+ .box .chat .item > .attachment {
1722
+ -webkit-border-radius: 3px;
1723
+ -moz-border-radius: 3px;
1724
+ border-radius: 3px;
1725
+ background: #f0f0f0;
1726
+ margin-left: 65px;
1727
+ margin-right: 15px;
1728
+ padding: 10px;
1729
+ }
1730
+ .box .chat .item > .attachment > h4 {
1731
+ margin: 0 0 5px 0;
1732
+ font-weight: 600;
1733
+ font-size: 14px;
1734
+ }
1735
+ .box .chat .item > .attachment > p,
1736
+ .box .chat .item > .attachment > .filename {
1737
+ font-weight: 600;
1738
+ font-size: 13px;
1739
+ font-style: italic;
1740
+ margin: 0;
1741
+ }
1742
+ .box .chat .item > .attachment:before,
1743
+ .box .chat .item > .attachment:after {
1744
+ display: table;
1745
+ content: " ";
1746
+ }
1747
+ .box .chat .item > .attachment:after {
1748
+ clear: both;
1749
+ }
1750
+ .box > .overlay,
1751
+ .box > .loading-img {
1752
+ position: absolute;
1753
+ top: 0;
1754
+ left: 0;
1755
+ width: 100%;
1756
+ height: 100%;
1757
+ }
1758
+ .box > .overlay {
1759
+ z-index: 1010;
1760
+ background: rgba(255, 255, 255, 0.7);
1761
+ }
1762
+ .box > .overlay.dark {
1763
+ background: rgba(0, 0, 0, 0.5);
1764
+ }
1765
+ .box > .loading-img {
1766
+ z-index: 1020;
1767
+ background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat;
1768
+ }
1769
+ /*
1770
+ Component: timeline
1771
+ --------------------
1772
+ */
1773
+ .timeline {
1774
+ position: relative;
1775
+ margin: 0 0 30px 0;
1776
+ padding: 0;
1777
+ list-style: none;
1778
+ }
1779
+ .timeline:before {
1780
+ content: '';
1781
+ position: absolute;
1782
+ top: 0px;
1783
+ bottom: 0;
1784
+ width: 5px;
1785
+ background: #ddd;
1786
+ left: 30px;
1787
+ border: 1px solid #eee;
1788
+ margin: 0;
1789
+ -webkit-border-radius: 2px;
1790
+ -moz-border-radius: 2px;
1791
+ border-radius: 2px;
1792
+ }
1793
+ .timeline > li {
1794
+ position: relative;
1795
+ margin-right: 10px;
1796
+ margin-bottom: 15px;
1797
+ }
1798
+ .timeline > li:before,
1799
+ .timeline > li:after {
1800
+ display: table;
1801
+ content: " ";
1802
+ }
1803
+ .timeline > li:after {
1804
+ clear: both;
1805
+ }
1806
+ .timeline > li > .timeline-item {
1807
+ margin-top: 10px;
1808
+ border: 0px solid #dfdfdf;
1809
+ background: #fff;
1810
+ color: #555;
1811
+ margin-left: 60px;
1812
+ margin-right: 15px;
1813
+ padding: 5px;
1814
+ position: relative;
1815
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
1816
+ }
1817
+ .timeline > li > .timeline-item > .time {
1818
+ color: #999;
1819
+ float: right;
1820
+ margin: 2px 0 0 0;
1821
+ }
1822
+ .timeline > li > .timeline-item > .timeline-header {
1823
+ margin: 0;
1824
+ color: #555;
1825
+ border-bottom: 1px solid #f4f4f4;
1826
+ padding: 5px;
1827
+ font-size: 16px;
1828
+ line-height: 1.1;
1829
+ }
1830
+ .timeline > li > .timeline-item > .timeline-header > a {
1831
+ font-weight: 600;
1832
+ }
1833
+ .timeline > li > .timeline-item > .timeline-body,
1834
+ .timeline > li > .timeline-item > .timeline-footer {
1835
+ padding: 10px;
1836
+ }
1837
+ .timeline > li.time-label > span {
1838
+ font-weight: 600;
1839
+ padding: 5px;
1840
+ display: inline-block;
1841
+ background-color: #fff;
1842
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
1843
+ -webkit-border-radius: 4px;
1844
+ -moz-border-radius: 4px;
1845
+ border-radius: 4px;
1846
+ }
1847
+ .timeline > li > .fa,
1848
+ .timeline > li > .glyphicon,
1849
+ .timeline > li > .ion {
1850
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1851
+ width: 30px;
1852
+ height: 30px;
1853
+ font-size: 15px;
1854
+ line-height: 30px;
1855
+ position: absolute;
1856
+ color: #666;
1857
+ background: #eee;
1858
+ border-radius: 50%;
1859
+ text-align: center;
1860
+ left: 18px;
1861
+ top: 0;
1862
+ }
1863
+ /*
1864
+ Component: Buttons
1865
+ -------------------------
1866
+ */
1867
+ .btn {
1868
+ font-weight: 500;
1869
+ -webkit-border-radius: 3px;
1870
+ -moz-border-radius: 3px;
1871
+ border-radius: 3px;
1872
+ border: 1px solid transparent;
1873
+ -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
1874
+ -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
1875
+ box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
1876
+ }
1877
+ .btn.btn-default {
1878
+ background-color: #fafafa;
1879
+ color: #666;
1880
+ border-color: #ddd;
1881
+ border-bottom-color: #ddd;
1882
+ }
1883
+ .btn.btn-default:hover,
1884
+ .btn.btn-default:active,
1885
+ .btn.btn-default.hover {
1886
+ background-color: #f4f4f4!important;
1887
+ }
1888
+ .btn.btn-default.btn-flat {
1889
+ border-bottom-color: #d9dadc;
1890
+ }
1891
+ .btn.btn-primary {
1892
+ background-color: #3c8dbc;
1893
+ border-color: #367fa9;
1894
+ }
1895
+ .btn.btn-primary:hover,
1896
+ .btn.btn-primary:active,
1897
+ .btn.btn-primary.hover {
1898
+ background-color: #367fa9;
1899
+ }
1900
+ .btn.btn-success {
1901
+ background-color: #00a65a;
1902
+ border-color: #008d4c;
1903
+ }
1904
+ .btn.btn-success:hover,
1905
+ .btn.btn-success:active,
1906
+ .btn.btn-success.hover {
1907
+ background-color: #008d4c;
1908
+ }
1909
+ .btn.btn-info {
1910
+ background-color: #00c0ef;
1911
+ border-color: #00acd6;
1912
+ }
1913
+ .btn.btn-info:hover,
1914
+ .btn.btn-info:active,
1915
+ .btn.btn-info.hover {
1916
+ background-color: #00acd6;
1917
+ }
1918
+ .btn.btn-danger {
1919
+ background-color: #f56954;
1920
+ border-color: #f4543c;
1921
+ }
1922
+ .btn.btn-danger:hover,
1923
+ .btn.btn-danger:active,
1924
+ .btn.btn-danger.hover {
1925
+ background-color: #f4543c;
1926
+ }
1927
+ .btn.btn-warning {
1928
+ background-color: #f39c12;
1929
+ border-color: #e08e0b;
1930
+ }
1931
+ .btn.btn-warning:hover,
1932
+ .btn.btn-warning:active,
1933
+ .btn.btn-warning.hover {
1934
+ background-color: #e08e0b;
1935
+ }
1936
+ .btn.btn-flat {
1937
+ -webkit-border-radius: 0;
1938
+ -moz-border-radius: 0;
1939
+ border-radius: 0;
1940
+ -webkit-box-shadow: none;
1941
+ -moz-box-shadow: none;
1942
+ box-shadow: none;
1943
+ border-width: 1px;
1944
+ }
1945
+ .btn:active {
1946
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1947
+ -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1948
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1949
+ }
1950
+ .btn:focus {
1951
+ outline: none;
1952
+ }
1953
+ .btn.btn-file {
1954
+ position: relative;
1955
+ overflow: hidden;
1956
+ }
1957
+ .btn.btn-file > input[type='file'] {
1958
+ position: absolute;
1959
+ top: 0;
1960
+ right: 0;
1961
+ min-width: 100%;
1962
+ min-height: 100%;
1963
+ font-size: 100px;
1964
+ text-align: right;
1965
+ filter: alpha(opacity=0);
1966
+ opacity: 0;
1967
+ outline: none;
1968
+ background: white;
1969
+ cursor: inherit;
1970
+ display: block;
1971
+ }
1972
+ .btn.btn-app {
1973
+ position: relative;
1974
+ padding: 15px 5px;
1975
+ margin: 0 0 10px 10px;
1976
+ min-width: 80px;
1977
+ height: 60px;
1978
+ -webkit-box-shadow: none;
1979
+ -moz-box-shadow: none;
1980
+ box-shadow: none;
1981
+ -webkit-border-radius: 0;
1982
+ -moz-border-radius: 0;
1983
+ border-radius: 0;
1984
+ text-align: center;
1985
+ color: #666;
1986
+ border: 1px solid #ddd;
1987
+ background-color: #fafafa;
1988
+ font-size: 12px;
1989
+ }
1990
+ .btn.btn-app > .fa,
1991
+ .btn.btn-app > .glyphicon,
1992
+ .btn.btn-app > .ion {
1993
+ font-size: 20px;
1994
+ display: block;
1995
+ }
1996
+ .btn.btn-app:hover {
1997
+ background: #f4f4f4;
1998
+ color: #444;
1999
+ border-color: #aaa;
2000
+ }
2001
+ .btn.btn-app:active,
2002
+ .btn.btn-app:focus {
2003
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2004
+ -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2005
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2006
+ }
2007
+ .btn.btn-app > .badge {
2008
+ position: absolute;
2009
+ top: -3px;
2010
+ right: -10px;
2011
+ font-size: 10px;
2012
+ font-weight: 400;
2013
+ }
2014
+ .btn.btn-social-old {
2015
+ -webkit-box-shadow: none;
2016
+ -moz-box-shadow: none;
2017
+ box-shadow: none;
2018
+ opacity: 0.9;
2019
+ padding: 0;
2020
+ }
2021
+ .btn.btn-social-old > .fa {
2022
+ padding: 10px 0;
2023
+ width: 40px;
2024
+ }
2025
+ .btn.btn-social-old > .fa + span {
2026
+ border-left: 1px solid rgba(255, 255, 255, 0.3);
2027
+ }
2028
+ .btn.btn-social-old span {
2029
+ padding: 10px;
2030
+ }
2031
+ .btn.btn-social-old:hover {
2032
+ opacity: 1;
2033
+ }
2034
+ .btn.btn-circle {
2035
+ width: 30px;
2036
+ height: 30px;
2037
+ line-height: 30px;
2038
+ padding: 0;
2039
+ -webkit-border-radius: 50%;
2040
+ -moz-border-radius: 50%;
2041
+ border-radius: 50%;
2042
+ }
2043
+ /*
2044
+ Component: callout
2045
+ ------------------------
2046
+ */
2047
+ .callout {
2048
+ margin: 0 0 20px 0;
2049
+ padding: 15px 30px 15px 15px;
2050
+ border-left: 5px solid #eee;
2051
+ }
2052
+ .callout h4 {
2053
+ margin-top: 0;
2054
+ }
2055
+ .callout p:last-child {
2056
+ margin-bottom: 0;
2057
+ }
2058
+ .callout code,
2059
+ .callout .highlight {
2060
+ background-color: #fff;
2061
+ }
2062
+ .callout.callout-danger {
2063
+ background-color: #fcf2f2;
2064
+ border-color: #dFb5b4;
2065
+ }
2066
+ .callout.callout-warning {
2067
+ background-color: #fefbed;
2068
+ border-color: #f1e7bc;
2069
+ }
2070
+ .callout.callout-info {
2071
+ background-color: #f0f7fd;
2072
+ border-color: #d0e3f0;
2073
+ }
2074
+ .callout.callout-danger h4 {
2075
+ color: #B94A48;
2076
+ }
2077
+ .callout.callout-warning h4 {
2078
+ color: #C09853;
2079
+ }
2080
+ .callout.callout-info h4 {
2081
+ color: #3A87AD;
2082
+ }
2083
+ /*
2084
+ Component: alert
2085
+ ------------------------
2086
+ */
2087
+ .alert {
2088
+ padding-left: 30px;
2089
+ margin-left: 15px;
2090
+ position: relative;
2091
+ }
2092
+ .alert > .fa,
2093
+ .alert > .glyphicon {
2094
+ position: absolute;
2095
+ left: -15px;
2096
+ top: -15px;
2097
+ width: 35px;
2098
+ height: 35px;
2099
+ -webkit-border-radius: 50%;
2100
+ -moz-border-radius: 50%;
2101
+ border-radius: 50%;
2102
+ line-height: 35px;
2103
+ text-align: center;
2104
+ background: inherit;
2105
+ border: inherit;
2106
+ }
2107
+ /*
2108
+ Component: Navs
2109
+ */
2110
+ /* NAV PILLS */
2111
+ .nav.nav-pills > li > a {
2112
+ border-top: 3px solid transparent;
2113
+ -webkit-border-radius: 0;
2114
+ -moz-border-radius: 0;
2115
+ border-radius: 0;
2116
+ color: #444;
2117
+ }
2118
+ .nav.nav-pills > li > a > .fa,
2119
+ .nav.nav-pills > li > a > .glyphicon,
2120
+ .nav.nav-pills > li > a > .ion {
2121
+ margin-right: 5px;
2122
+ }
2123
+ .nav.nav-pills > li.active > a,
2124
+ .nav.nav-pills > li.active > a:hover {
2125
+ background-color: #f6f6f6;
2126
+ border-top-color: #3c8dbc;
2127
+ color: #444;
2128
+ }
2129
+ .nav.nav-pills > li.active > a {
2130
+ font-weight: 600;
2131
+ }
2132
+ .nav.nav-pills > li > a:hover {
2133
+ background-color: #f6f6f6;
2134
+ }
2135
+ .nav.nav-pills.nav-stacked > li > a {
2136
+ border-top: 0;
2137
+ border-left: 3px solid transparent;
2138
+ -webkit-border-radius: 0;
2139
+ -moz-border-radius: 0;
2140
+ border-radius: 0;
2141
+ color: #444;
2142
+ }
2143
+ .nav.nav-pills.nav-stacked > li.active > a,
2144
+ .nav.nav-pills.nav-stacked > li.active > a:hover {
2145
+ background-color: #f6f6f6;
2146
+ border-left-color: #3c8dbc;
2147
+ color: #444;
2148
+ }
2149
+ .nav.nav-pills.nav-stacked > li.header {
2150
+ border-bottom: 1px solid #ddd;
2151
+ color: #777;
2152
+ margin-bottom: 10px;
2153
+ padding: 5px 10px;
2154
+ text-transform: uppercase;
2155
+ }
2156
+ /* NAV TABS */
2157
+ .nav-tabs-custom {
2158
+ margin-bottom: 20px;
2159
+ background: #fff;
2160
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
2161
+ }
2162
+ .nav-tabs-custom > .nav-tabs {
2163
+ margin: 0;
2164
+ border-bottom-color: #f4f4f4;
2165
+ }
2166
+ .nav-tabs-custom > .nav-tabs > li {
2167
+ border-top: 3px solid transparent;
2168
+ margin-bottom: -2px;
2169
+ margin-right: 5px;
2170
+ }
2171
+ .nav-tabs-custom > .nav-tabs > li > a {
2172
+ -webkit-border-radius: 0 !important;
2173
+ -moz-border-radius: 0 !important;
2174
+ border-radius: 0 !important;
2175
+ }
2176
+ .nav-tabs-custom > .nav-tabs > li > a,
2177
+ .nav-tabs-custom > .nav-tabs > li > a:hover {
2178
+ background: transparent;
2179
+ margin: 0;
2180
+ }
2181
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
2182
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
2183
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
2184
+ border-color: transparent;
2185
+ }
2186
+ .nav-tabs-custom > .nav-tabs > li.active {
2187
+ border-top-color: #3c8dbc;
2188
+ }
2189
+ .nav-tabs-custom > .nav-tabs > li.active > a,
2190
+ .nav-tabs-custom > .nav-tabs > li.active:hover > a {
2191
+ background-color: #fff;
2192
+ }
2193
+ .nav-tabs-custom > .nav-tabs > li.active > a {
2194
+ border-top: 0;
2195
+ border-left-color: #f4f4f4;
2196
+ border-right-color: #f4f4f4;
2197
+ }
2198
+ .nav-tabs-custom > .nav-tabs > li:first-of-type {
2199
+ margin-left: 0px;
2200
+ }
2201
+ .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
2202
+ border-left-width: 0;
2203
+ }
2204
+ .nav-tabs-custom > .nav-tabs.pull-right {
2205
+ float: none!important;
2206
+ }
2207
+ .nav-tabs-custom > .nav-tabs.pull-right > li {
2208
+ float: right;
2209
+ }
2210
+ .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
2211
+ margin-right: 0px;
2212
+ }
2213
+ .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
2214
+ border-left-width: 1px;
2215
+ border-right-width: 0px;
2216
+ }
2217
+ .nav-tabs-custom > .nav-tabs > li.header {
2218
+ font-weight: 400;
2219
+ line-height: 35px;
2220
+ padding: 0 10px;
2221
+ font-size: 20px;
2222
+ color: #444;
2223
+ cursor: default;
2224
+ }
2225
+ .nav-tabs-custom > .nav-tabs > li.header > .fa,
2226
+ .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
2227
+ .nav-tabs-custom > .nav-tabs > li.header > .ion {
2228
+ margin-right: 10px;
2229
+ }
2230
+ .nav-tabs-custom > .tab-content {
2231
+ background: #fff;
2232
+ padding: 10px;
2233
+ }
2234
+ /* Nav tabs bottom */
2235
+ .tabs-bottom.nav-3 li a {
2236
+ width: 3333.33333333% !important;
2237
+ }
2238
+ .tabs-bottom li a {
2239
+ border: 0;
2240
+ }
2241
+ /* PAGINATION */
2242
+ .pagination > li > a {
2243
+ background: #fafafa;
2244
+ color: #666;
2245
+ -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
2246
+ -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
2247
+ box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
2248
+ }
2249
+ .pagination > li:first-of-type a,
2250
+ .pagination > li:last-of-type a {
2251
+ -webkit-border-radius: 0;
2252
+ -moz-border-radius: 0;
2253
+ border-radius: 0;
2254
+ }
2255
+ /*
2256
+ Component: Mailbox
2257
+ */
2258
+ .mailbox .table-mailbox {
2259
+ border-left: 1px solid #ddd;
2260
+ border-right: 1px solid #ddd;
2261
+ border-bottom: 1px solid #ddd;
2262
+ }
2263
+ .mailbox .table-mailbox tr.unread > td {
2264
+ background-color: rgba(0, 0, 0, 0.05);
2265
+ color: #000;
2266
+ font-weight: 600;
2267
+ }
2268
+ .mailbox .table-mailbox tr > td > .fa.fa-star,
2269
+ .mailbox .table-mailbox tr > td > .fa.fa-star-o,
2270
+ .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star,
2271
+ .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty {
2272
+ color: #f39c12;
2273
+ cursor: pointer;
2274
+ }
2275
+ .mailbox .table-mailbox tr > td.small-col {
2276
+ width: 30px;
2277
+ }
2278
+ .mailbox .table-mailbox tr > td.name {
2279
+ width: 150px;
2280
+ font-weight: 600;
2281
+ }
2282
+ .mailbox .table-mailbox tr > td.time {
2283
+ text-align: right;
2284
+ width: 100px;
2285
+ }
2286
+ .mailbox .table-mailbox tr > td {
2287
+ white-space: nowrap;
2288
+ }
2289
+ .mailbox .table-mailbox tr > td > a {
2290
+ color: #444;
2291
+ }
2292
+ @media screen and (max-width: 767px) {
2293
+ .mailbox .nav-stacked > li:not(.header) {
2294
+ float: left;
2295
+ width: 50%;
2296
+ }
2297
+ .mailbox .nav-stacked > li:not(.header).header {
2298
+ border: 0!important;
2299
+ }
2300
+ .mailbox .search-form {
2301
+ margin-top: 10px;
2302
+ }
2303
+ }
2304
+ /*
2305
+ Page: locked screen
2306
+ */
2307
+ /* ADD THIS CLASS TO THE <HTML> TAG */
2308
+ .lockscreen {
2309
+ background: url(../img/blur-background09.jpg) repeat center center fixed;
2310
+ -webkit-background-size: cover;
2311
+ -moz-background-size: cover;
2312
+ -o-background-size: cover;
2313
+ background-size: cover;
2314
+ }
2315
+ /* Remove the background from the body element */
2316
+ .lockscreen > body {
2317
+ background: transparent;
2318
+ }
2319
+ /* We will put the dynamically generated digital clock here */
2320
+ .lockscreen .headline {
2321
+ color: #fff;
2322
+ text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
2323
+ font-weight: 300;
2324
+ -webkit-font-smoothing: antialiased !important;
2325
+ opacity: 0.8;
2326
+ margin: 10px 0 30px 0;
2327
+ font-size: 90px;
2328
+ }
2329
+ @media screen and (max-width: 480px) {
2330
+ .lockscreen .headline {
2331
+ font-size: 60px;
2332
+ margin-bottom: 40px;
2333
+ }
2334
+ }
2335
+ /* User name [optional] */
2336
+ .lockscreen .lockscreen-name {
2337
+ text-align: center;
2338
+ font-weight: 600;
2339
+ font-size: 16px;
2340
+ }
2341
+ /* Will contain the image and the sign in form */
2342
+ .lockscreen-item {
2343
+ padding: 0;
2344
+ background: #fff;
2345
+ position: relative;
2346
+ -webkit-border-radius: 4px;
2347
+ -moz-border-radius: 4px;
2348
+ border-radius: 4px;
2349
+ margin: 10px auto;
2350
+ width: 290px;
2351
+ }
2352
+ .lockscreen-item:before,
2353
+ .lockscreen-item:after {
2354
+ display: table;
2355
+ content: " ";
2356
+ }
2357
+ .lockscreen-item:after {
2358
+ clear: both;
2359
+ }
2360
+ /* User image */
2361
+ .lockscreen-item > .lockscreen-image {
2362
+ position: absolute;
2363
+ left: -10px;
2364
+ top: -30px;
2365
+ background: #fff;
2366
+ padding: 10px;
2367
+ -webkit-border-radius: 50%;
2368
+ -moz-border-radius: 50%;
2369
+ border-radius: 50%;
2370
+ z-index: 10;
2371
+ }
2372
+ .lockscreen-item > .lockscreen-image > img {
2373
+ width: 70px;
2374
+ height: 70px;
2375
+ -webkit-border-radius: 50%;
2376
+ -moz-border-radius: 50%;
2377
+ border-radius: 50%;
2378
+ }
2379
+ /* Contains the password input and the login button */
2380
+ .lockscreen-item > .lockscreen-credentials {
2381
+ margin-left: 80px;
2382
+ }
2383
+ .lockscreen-item > .lockscreen-credentials input {
2384
+ border: 0 !important;
2385
+ }
2386
+ .lockscreen-item > .lockscreen-credentials .btn {
2387
+ background-color: #fff;
2388
+ border: 0;
2389
+ }
2390
+ /* Extra to give the user an option to navigate the website [optional]*/
2391
+ .lockscreen-link {
2392
+ margin-top: 30px;
2393
+ text-align: center;
2394
+ }
2395
+ /*
2396
+ Page: register and login
2397
+ */
2398
+ .form-box {
2399
+ width: 360px;
2400
+ margin: 90px auto 0 auto;
2401
+ }
2402
+ .form-box .header {
2403
+ -webkit-border-top-left-radius: 4px;
2404
+ -webkit-border-top-right-radius: 4px;
2405
+ -webkit-border-bottom-right-radius: 0;
2406
+ -webkit-border-bottom-left-radius: 0;
2407
+ -moz-border-radius-topleft: 4px;
2408
+ -moz-border-radius-topright: 4px;
2409
+ -moz-border-radius-bottomright: 0;
2410
+ -moz-border-radius-bottomleft: 0;
2411
+ border-top-left-radius: 4px;
2412
+ border-top-right-radius: 4px;
2413
+ border-bottom-right-radius: 0;
2414
+ border-bottom-left-radius: 0;
2415
+ background: #3d9970;
2416
+ box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.2);
2417
+ padding: 20px 10px;
2418
+ text-align: center;
2419
+ font-size: 26px;
2420
+ font-weight: 300;
2421
+ color: #fff;
2422
+ }
2423
+ .form-box .body,
2424
+ .form-box .footer {
2425
+ padding: 10px 20px;
2426
+ background: #fff;
2427
+ color: #444;
2428
+ }
2429
+ .form-box .body > .form-group,
2430
+ .form-box .footer > .form-group {
2431
+ margin-top: 20px;
2432
+ }
2433
+ .form-box .body > .form-group > input,
2434
+ .form-box .footer > .form-group > input {
2435
+ border: #fff;
2436
+ }
2437
+ .form-box .body > .btn,
2438
+ .form-box .footer > .btn {
2439
+ margin-bottom: 10px;
2440
+ }
2441
+ .form-box .footer {
2442
+ -webkit-border-top-left-radius: 0;
2443
+ -webkit-border-top-right-radius: 0;
2444
+ -webkit-border-bottom-right-radius: 4px;
2445
+ -webkit-border-bottom-left-radius: 4px;
2446
+ -moz-border-radius-topleft: 0;
2447
+ -moz-border-radius-topright: 0;
2448
+ -moz-border-radius-bottomright: 4px;
2449
+ -moz-border-radius-bottomleft: 4px;
2450
+ border-top-left-radius: 0;
2451
+ border-top-right-radius: 0;
2452
+ border-bottom-right-radius: 4px;
2453
+ border-bottom-left-radius: 4px;
2454
+ }
2455
+ @media (max-width: 767px) {
2456
+ .form-box {
2457
+ width: 90%;
2458
+ }
2459
+ }
2460
+ /*
2461
+ Page: 404 and 500 error pages
2462
+ ------------------------------------
2463
+ */
2464
+ .error-page {
2465
+ width: 600px;
2466
+ margin: 20px auto 0 auto;
2467
+ }
2468
+ @media screen and (max-width: 767px) {
2469
+ .error-page {
2470
+ width: 100%;
2471
+ }
2472
+ }
2473
+ .error-page > .headline {
2474
+ float: left;
2475
+ font-size: 100px;
2476
+ font-weight: 300;
2477
+ }
2478
+ @media screen and (max-width: 767px) {
2479
+ .error-page > .headline {
2480
+ float: none;
2481
+ text-align: center;
2482
+ }
2483
+ }
2484
+ .error-page > .error-content {
2485
+ margin-left: 190px;
2486
+ display: block;
2487
+ }
2488
+ @media screen and (max-width: 767px) {
2489
+ .error-page > .error-content {
2490
+ margin-left: 0;
2491
+ }
2492
+ }
2493
+ .error-page > .error-content > h3 {
2494
+ font-weight: 300;
2495
+ font-size: 25px;
2496
+ }
2497
+ @media screen and (max-width: 767px) {
2498
+ .error-page > .error-content > h3 {
2499
+ text-align: center;
2500
+ }
2501
+ }
2502
+ .error-page:before,
2503
+ .error-page:after {
2504
+ display: table;
2505
+ content: " ";
2506
+ }
2507
+ .error-page:after {
2508
+ clear: both;
2509
+ }
2510
+ /*
2511
+ Page: Invoice
2512
+ */
2513
+ .invoice {
2514
+ position: relative;
2515
+ width: 90%;
2516
+ margin: 10px auto;
2517
+ background: #fff;
2518
+ border: 1px solid #f4f4f4;
2519
+ }
2520
+ .invoice-title {
2521
+ margin-top: 0;
2522
+ }
2523
+ /* Enhancement for printing */
2524
+ @media print {
2525
+ .invoice {
2526
+ width: 100%;
2527
+ border: 0;
2528
+ margin: 0;
2529
+ padding: 0;
2530
+ }
2531
+ .invoice-col {
2532
+ float: left;
2533
+ width: 33.3333333%;
2534
+ }
2535
+ .table-responsive {
2536
+ overflow: auto;
2537
+ }
2538
+ .table-responsive > .table tr th,
2539
+ .table-responsive > .table tr td {
2540
+ white-space: normal!important;
2541
+ }
2542
+ }
2543
+ /*
2544
+ Skins
2545
+ -----
2546
+ */
2547
+ /*
2548
+ Skin Blue
2549
+ ---------
2550
+ */
2551
+ /* skin-blue navbar */
2552
+ .skin-blue .navbar {
2553
+ background-color: #3c8dbc;
2554
+ }
2555
+ .skin-blue .navbar .nav a {
2556
+ color: rgba(255, 255, 255, 0.8);
2557
+ }
2558
+ .skin-blue .navbar .nav > li > a:hover,
2559
+ .skin-blue .navbar .nav > li > a:active,
2560
+ .skin-blue .navbar .nav > li > a:focus,
2561
+ .skin-blue .navbar .nav .open > a,
2562
+ .skin-blue .navbar .nav .open > a:hover,
2563
+ .skin-blue .navbar .nav .open > a:focus {
2564
+ background: rgba(0, 0, 0, 0.1);
2565
+ color: #f6f6f6;
2566
+ }
2567
+ .skin-blue .navbar .navbar-right > .nav {
2568
+ margin-right: 10px;
2569
+ }
2570
+ .skin-blue .navbar .sidebar-toggle .icon-bar {
2571
+ background: rgba(255, 255, 255, 0.8);
2572
+ }
2573
+ .skin-blue .navbar .sidebar-toggle:hover .icon-bar {
2574
+ background: #f6f6f6 !important;
2575
+ }
2576
+ /* skin-blue logo */
2577
+ .skin-blue .logo {
2578
+ background-color: #367fa9;
2579
+ color: #f9f9f9;
2580
+ }
2581
+ .skin-blue .logo > a {
2582
+ color: #f9f9f9;
2583
+ }
2584
+ .skin-blue .logo:hover {
2585
+ background: #357ca5;
2586
+ }
2587
+ /* skin-blue content header */
2588
+ .skin-blue .right-side > .content-header {
2589
+ background: #fbfbfb;
2590
+ box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
2591
+ }
2592
+ /* Skin-blue user panel */
2593
+ .skin-blue .user-panel > .image > img {
2594
+ border: 1px solid #dfdfdf;
2595
+ }
2596
+ .skin-blue .user-panel > .info,
2597
+ .skin-blue .user-panel > .info > a {
2598
+ color: #555555;
2599
+ }
2600
+ /* skin-blue sidebar */
2601
+ .skin-blue .sidebar {
2602
+ border-bottom: 1px solid #fff;
2603
+ }
2604
+ .skin-blue .sidebar > .sidebar-menu > li {
2605
+ border-top: 1px solid #fff;
2606
+ border-bottom: 1px solid #dbdbdb;
2607
+ }
2608
+ .skin-blue .sidebar > .sidebar-menu > li:first-of-type {
2609
+ border-top: 1px solid #dbdbdb;
2610
+ }
2611
+ .skin-blue .sidebar > .sidebar-menu > li:first-of-type > a {
2612
+ border-top: 1px solid #fff;
2613
+ }
2614
+ .skin-blue .sidebar > .sidebar-menu > li > a {
2615
+ margin-right: 1px;
2616
+ }
2617
+ .skin-blue .sidebar > .sidebar-menu > li > a:hover,
2618
+ .skin-blue .sidebar > .sidebar-menu > li.active > a {
2619
+ color: #222;
2620
+ background: #f9f9f9;
2621
+ }
2622
+ .skin-blue .sidebar > .sidebar-menu > li > .treeview-menu {
2623
+ margin: 0 1px;
2624
+ background: #f9f9f9;
2625
+ }
2626
+ .skin-blue .left-side {
2627
+ background: #f4f4f4;
2628
+ -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
2629
+ -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
2630
+ box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
2631
+ }
2632
+ .skin-blue .sidebar a {
2633
+ color: #555555;
2634
+ }
2635
+ .skin-blue .sidebar a:hover {
2636
+ text-decoration: none;
2637
+ }
2638
+ .skin-blue .treeview-menu > li > a {
2639
+ color: #777;
2640
+ }
2641
+ .skin-blue .treeview-menu > li.active > a,
2642
+ .skin-blue .treeview-menu > li > a:hover {
2643
+ color: #111;
2644
+ }
2645
+ .skin-blue .sidebar-form {
2646
+ -webkit-border-radius: 2px;
2647
+ -moz-border-radius: 2px;
2648
+ border-radius: 2px;
2649
+ border: 1px solid #dbdbdb;
2650
+ margin: 10px 10px;
2651
+ }
2652
+ .skin-blue .sidebar-form input[type="text"],
2653
+ .skin-blue .sidebar-form .btn {
2654
+ box-shadow: none;
2655
+ background-color: #fafafa;
2656
+ border: 1px solid #fafafa;
2657
+ height: 35px;
2658
+ }
2659
+ .skin-blue .sidebar-form input[type="text"] {
2660
+ color: #666;
2661
+ -webkit-border-top-left-radius: 2px !important;
2662
+ -webkit-border-top-right-radius: 0 !important;
2663
+ -webkit-border-bottom-right-radius: 0 !important;
2664
+ -webkit-border-bottom-left-radius: 2px !important;
2665
+ -moz-border-radius-topleft: 2px !important;
2666
+ -moz-border-radius-topright: 0 !important;
2667
+ -moz-border-radius-bottomright: 0 !important;
2668
+ -moz-border-radius-bottomleft: 2px !important;
2669
+ border-top-left-radius: 2px !important;
2670
+ border-top-right-radius: 0 !important;
2671
+ border-bottom-right-radius: 0 !important;
2672
+ border-bottom-left-radius: 2px !important;
2673
+ }
2674
+ .skin-blue .sidebar-form input[type="text"]:focus,
2675
+ .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
2676
+ background-color: #fff;
2677
+ color: #666;
2678
+ }
2679
+ .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
2680
+ border-left-color: #fff;
2681
+ }
2682
+ .skin-blue .sidebar-form .btn {
2683
+ color: #999;
2684
+ -webkit-border-top-left-radius: 0 !important;
2685
+ -webkit-border-top-right-radius: 2px !important;
2686
+ -webkit-border-bottom-right-radius: 2px !important;
2687
+ -webkit-border-bottom-left-radius: 0 !important;
2688
+ -moz-border-radius-topleft: 0 !important;
2689
+ -moz-border-radius-topright: 2px !important;
2690
+ -moz-border-radius-bottomright: 2px !important;
2691
+ -moz-border-radius-bottomleft: 0 !important;
2692
+ border-top-left-radius: 0 !important;
2693
+ border-top-right-radius: 2px !important;
2694
+ border-bottom-right-radius: 2px !important;
2695
+ border-bottom-left-radius: 0 !important;
2696
+ }
2697
+ /*
2698
+ Skin Black
2699
+ --------
2700
+ */
2701
+ /* skin-black navbar */
2702
+ .skin-black .navbar {
2703
+ background-color: #ffffff;
2704
+ border-bottom: 1px solid #eee;
2705
+ }
2706
+ .skin-black .navbar .nav a {
2707
+ color: #333333;
2708
+ }
2709
+ .skin-black .navbar .nav > li > a:hover,
2710
+ .skin-black .navbar .nav > li > a:active,
2711
+ .skin-black .navbar .nav > li > a:focus,
2712
+ .skin-black .navbar .nav .open > a,
2713
+ .skin-black .navbar .nav .open > a:hover,
2714
+ .skin-black .navbar .nav .open > a:focus {
2715
+ background: #ffffff;
2716
+ color: #999999;
2717
+ }
2718
+ .skin-black .navbar .navbar-right > .nav {
2719
+ margin-right: 10px;
2720
+ }
2721
+ .skin-black .navbar .sidebar-toggle .icon-bar {
2722
+ background: #333333;
2723
+ }
2724
+ .skin-black .navbar .sidebar-toggle:hover .icon-bar {
2725
+ background: #999999 !important;
2726
+ }
2727
+ /* skin-black logo */
2728
+ .skin-black .logo {
2729
+ background-color: #333333;
2730
+ color: #f9f9f9;
2731
+ }
2732
+ .skin-black .logo > a {
2733
+ color: #f9f9f9;
2734
+ }
2735
+ .skin-black .logo:hover {
2736
+ background: #303030;
2737
+ }
2738
+ /* skin-black content header */
2739
+ .skin-black .right-side > .content-header {
2740
+ background: transparent;
2741
+ box-shadow: none;
2742
+ }
2743
+ /* Skin-red user panel */
2744
+ .skin-black .user-panel > .image > img {
2745
+ border: 1px solid #444;
2746
+ }
2747
+ .skin-black .user-panel > .info,
2748
+ .skin-black .user-panel > .info > a {
2749
+ color: #eee;
2750
+ }
2751
+ /* skin-black sidebar */
2752
+ .skin-black .sidebar {
2753
+ border-bottom: 1px solid #333;
2754
+ }
2755
+ .skin-black .sidebar > .sidebar-menu > li {
2756
+ border-top: 1px solid #333;
2757
+ border-bottom: 0px solid #444;
2758
+ }
2759
+ .skin-black .sidebar > .sidebar-menu > li:first-of-type {
2760
+ border-top: 1px solid #444;
2761
+ }
2762
+ .skin-black .sidebar > .sidebar-menu > li:first-of-type > a {
2763
+ border-top: 0px solid #333;
2764
+ }
2765
+ .skin-black .sidebar > .sidebar-menu > li > a {
2766
+ margin-right: 1px;
2767
+ }
2768
+ .skin-black .sidebar > .sidebar-menu > li > a:hover,
2769
+ .skin-black .sidebar > .sidebar-menu > li.active > a {
2770
+ color: #f6f6f6;
2771
+ background: #444;
2772
+ }
2773
+ .skin-black .sidebar > .sidebar-menu > li > .treeview-menu {
2774
+ margin: 0 1px;
2775
+ background: #444;
2776
+ }
2777
+ .skin-black .left-side {
2778
+ background: #333;
2779
+ }
2780
+ .skin-black .sidebar a {
2781
+ color: #eee;
2782
+ }
2783
+ .skin-black .sidebar a:hover {
2784
+ text-decoration: none;
2785
+ }
2786
+ .skin-black .treeview-menu > li > a {
2787
+ color: #ccc;
2788
+ }
2789
+ .skin-black .treeview-menu > li.active > a,
2790
+ .skin-black .treeview-menu > li > a:hover {
2791
+ color: #fff;
2792
+ }
2793
+ .skin-black .sidebar-form {
2794
+ -webkit-border-radius: 2px;
2795
+ -moz-border-radius: 2px;
2796
+ border-radius: 2px;
2797
+ border: 0px solid #555;
2798
+ margin: 10px 10px;
2799
+ }
2800
+ .skin-black .sidebar-form input[type="text"],
2801
+ .skin-black .sidebar-form .btn {
2802
+ box-shadow: none;
2803
+ background-color: rgba(255, 255, 255, 0.1);
2804
+ border: 0 solid rgba(255, 255, 255, 0.1);
2805
+ height: 35px;
2806
+ outline: none;
2807
+ }
2808
+ .skin-black .sidebar-form input[type="text"] {
2809
+ color: #666;
2810
+ -webkit-border-top-left-radius: 2px !important;
2811
+ -webkit-border-top-right-radius: 0 !important;
2812
+ -webkit-border-bottom-right-radius: 0 !important;
2813
+ -webkit-border-bottom-left-radius: 2px !important;
2814
+ -moz-border-radius-topleft: 2px !important;
2815
+ -moz-border-radius-topright: 0 !important;
2816
+ -moz-border-radius-bottomright: 0 !important;
2817
+ -moz-border-radius-bottomleft: 2px !important;
2818
+ border-top-left-radius: 2px !important;
2819
+ border-top-right-radius: 0 !important;
2820
+ border-bottom-right-radius: 0 !important;
2821
+ border-bottom-left-radius: 2px !important;
2822
+ }
2823
+ .skin-black .sidebar-form input[type="text"]:focus,
2824
+ .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
2825
+ background-color: #444;
2826
+ border: 0;
2827
+ }
2828
+ .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
2829
+ border-left: 0;
2830
+ }
2831
+ .skin-black .sidebar-form .btn {
2832
+ color: #999;
2833
+ -webkit-border-top-left-radius: 0 !important;
2834
+ -webkit-border-top-right-radius: 2px !important;
2835
+ -webkit-border-bottom-right-radius: 2px !important;
2836
+ -webkit-border-bottom-left-radius: 0 !important;
2837
+ -moz-border-radius-topleft: 0 !important;
2838
+ -moz-border-radius-topright: 2px !important;
2839
+ -moz-border-radius-bottomright: 2px !important;
2840
+ -moz-border-radius-bottomleft: 0 !important;
2841
+ border-top-left-radius: 0 !important;
2842
+ border-top-right-radius: 2px !important;
2843
+ border-bottom-right-radius: 2px !important;
2844
+ border-bottom-left-radius: 0 !important;
2845
+ border-left: 0;
2846
+ }
2847
+ /*!
2848
+ * iCheck v1.0.1, http://git.io/arlzeA
2849
+ * =================================
2850
+ * Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization
2851
+ *
2852
+ * (c) 2013 Damir Sultanov, http://fronteed.com
2853
+ * MIT Licensed
2854
+ */
2855
+ /* iCheck plugin Minimal skin, black
2856
+ ----------------------------------- */
2857
+ .icheckbox_minimal,
2858
+ .iradio_minimal {
2859
+ display: inline-block;
2860
+ *display: inline;
2861
+ vertical-align: middle;
2862
+ margin: 0;
2863
+ padding: 0;
2864
+ width: 18px;
2865
+ height: 18px;
2866
+ background: rgba(255, 255, 255, 0.7) url(iCheck/minimal/minimal.png) no-repeat;
2867
+ border: none;
2868
+ cursor: pointer;
2869
+ }
2870
+ .icheckbox_minimal {
2871
+ background-position: 0 0;
2872
+ }
2873
+ .icheckbox_minimal.hover {
2874
+ background-position: -20px 0;
2875
+ }
2876
+ .icheckbox_minimal.checked {
2877
+ background-position: -40px 0;
2878
+ }
2879
+ .icheckbox_minimal.disabled {
2880
+ background-position: -60px 0;
2881
+ cursor: default;
2882
+ }
2883
+ .icheckbox_minimal.checked.disabled {
2884
+ background-position: -80px 0;
2885
+ }
2886
+ .iradio_minimal {
2887
+ background-position: -100px 0;
2888
+ }
2889
+ .iradio_minimal.hover {
2890
+ background-position: -120px 0;
2891
+ }
2892
+ .iradio_minimal.checked {
2893
+ background-position: -140px 0;
2894
+ }
2895
+ .iradio_minimal.disabled {
2896
+ background-position: -160px 0;
2897
+ cursor: default;
2898
+ }
2899
+ .iradio_minimal.checked.disabled {
2900
+ background-position: -180px 0;
2901
+ }
2902
+ /* Retina support */
2903
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
2904
+ .icheckbox_minimal,
2905
+ .iradio_minimal {
2906
+ background-image: url('iCheck/minimal/minimal@2x.png');
2907
+ -webkit-background-size: 200px 20px;
2908
+ background-size: 200px 20px;
2909
+ }
2910
+ }
2911
+ .pace .pace-progress {
2912
+ background: #00c0ef;
2913
+ position: fixed;
2914
+ z-index: 2000;
2915
+ top: 0;
2916
+ left: 0;
2917
+ height: 2px;
2918
+ -webkit-transition: width 1s;
2919
+ -moz-transition: width 1s;
2920
+ -o-transition: width 1s;
2921
+ transition: width 1s;
2922
+ }
2923
+ .pace-inactive {
2924
+ display: none;
2925
+ }
2926
+ /*
2927
+ * Social Buttons for Bootstrap
2928
+ *
2929
+ * Copyright 2013-2014 Panayiotis Lipiridis
2930
+ * Licensed under the MIT License
2931
+ *
2932
+ * https://github.com/lipis/bootstrap-social
2933
+ *
2934
+ * Note: this file has been altered to work correctly with AdminLTE
2935
+ */
2936
+ .btn-social {
2937
+ position: relative;
2938
+ padding-left: 44px !important;
2939
+ text-align: left;
2940
+ white-space: nowrap;
2941
+ overflow: hidden;
2942
+ text-overflow: ellipsis;
2943
+ }
2944
+ .btn-social :first-child {
2945
+ position: absolute;
2946
+ left: 0;
2947
+ top: 0;
2948
+ bottom: 0;
2949
+ width: 32px !important;
2950
+ line-height: 34px !important;
2951
+ font-size: 1.6em!important;
2952
+ text-align: center;
2953
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
2954
+ }
2955
+ .btn-social.btn-lg {
2956
+ padding-left: 60px !important;
2957
+ }
2958
+ .btn-social.btn-lg :first-child {
2959
+ line-height: 45px;
2960
+ width: 45px;
2961
+ font-size: 1.8em;
2962
+ }
2963
+ .btn-social.btn-sm {
2964
+ padding-left: 38px !important;
2965
+ }
2966
+ .btn-social.btn-sm :first-child {
2967
+ line-height: 28px;
2968
+ width: 28px;
2969
+ font-size: 1.4em;
2970
+ }
2971
+ .btn-social.btn-xs {
2972
+ padding-left: 30px !important;
2973
+ }
2974
+ .btn-social.btn-xs :first-child {
2975
+ line-height: 20px;
2976
+ width: 20px;
2977
+ font-size: 1.2em;
2978
+ }
2979
+ .btn-social-icon {
2980
+ position: relative;
2981
+ padding-left: 44px !important;
2982
+ text-align: left;
2983
+ white-space: nowrap;
2984
+ overflow: hidden;
2985
+ text-overflow: ellipsis;
2986
+ height: 34px;
2987
+ width: 34px;
2988
+ padding: 0;
2989
+ }
2990
+ .btn-social-icon :first-child {
2991
+ position: absolute;
2992
+ left: 0;
2993
+ top: 0;
2994
+ bottom: 0;
2995
+ width: 32px !important;
2996
+ line-height: 34px !important;
2997
+ font-size: 1.6em!important;
2998
+ text-align: center;
2999
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
3000
+ }
3001
+ .btn-social-icon.btn-lg {
3002
+ padding-left: 60px !important;
3003
+ }
3004
+ .btn-social-icon.btn-lg :first-child {
3005
+ line-height: 45px;
3006
+ width: 45px;
3007
+ font-size: 1.8em;
3008
+ }
3009
+ .btn-social-icon.btn-sm {
3010
+ padding-left: 38px !important;
3011
+ }
3012
+ .btn-social-icon.btn-sm :first-child {
3013
+ line-height: 28px;
3014
+ width: 28px;
3015
+ font-size: 1.4em;
3016
+ }
3017
+ .btn-social-icon.btn-xs {
3018
+ padding-left: 30px !important;
3019
+ }
3020
+ .btn-social-icon.btn-xs :first-child {
3021
+ line-height: 20px;
3022
+ width: 20px;
3023
+ font-size: 1.2em;
3024
+ }
3025
+ .btn-social-icon :first-child {
3026
+ border: none;
3027
+ text-align: center;
3028
+ width: 100%!important;
3029
+ }
3030
+ .btn-social-icon.btn-lg {
3031
+ height: 45px;
3032
+ width: 45px;
3033
+ padding-left: 0;
3034
+ padding-right: 0;
3035
+ }
3036
+ .btn-social-icon.btn-sm {
3037
+ height: 30px;
3038
+ width: 30px;
3039
+ padding-left: 0;
3040
+ padding-right: 0;
3041
+ }
3042
+ .btn-social-icon.btn-xs {
3043
+ height: 22px;
3044
+ width: 22px;
3045
+ padding-left: 0;
3046
+ padding-right: 0;
3047
+ }
3048
+ .btn-bitbucket {
3049
+ color: #ffffff;
3050
+ background-color: #205081;
3051
+ border-color: rgba(0, 0, 0, 0.2);
3052
+ }
3053
+ .btn-bitbucket:hover,
3054
+ .btn-bitbucket:focus,
3055
+ .btn-bitbucket:active,
3056
+ .btn-bitbucket.active,
3057
+ .open .dropdown-toggle.btn-bitbucket {
3058
+ color: #ffffff;
3059
+ background-color: #183c60;
3060
+ border-color: rgba(0, 0, 0, 0.2);
3061
+ }
3062
+ .btn-bitbucket:active,
3063
+ .btn-bitbucket.active,
3064
+ .open .dropdown-toggle.btn-bitbucket {
3065
+ background-image: none;
3066
+ }
3067
+ .btn-bitbucket.disabled,
3068
+ .btn-bitbucket[disabled],
3069
+ fieldset[disabled] .btn-bitbucket,
3070
+ .btn-bitbucket.disabled:hover,
3071
+ .btn-bitbucket[disabled]:hover,
3072
+ fieldset[disabled] .btn-bitbucket:hover,
3073
+ .btn-bitbucket.disabled:focus,
3074
+ .btn-bitbucket[disabled]:focus,
3075
+ fieldset[disabled] .btn-bitbucket:focus,
3076
+ .btn-bitbucket.disabled:active,
3077
+ .btn-bitbucket[disabled]:active,
3078
+ fieldset[disabled] .btn-bitbucket:active,
3079
+ .btn-bitbucket.disabled.active,
3080
+ .btn-bitbucket[disabled].active,
3081
+ fieldset[disabled] .btn-bitbucket.active {
3082
+ background-color: #205081;
3083
+ border-color: rgba(0, 0, 0, 0.2);
3084
+ }
3085
+ .btn-bitbucket .badge {
3086
+ color: #205081;
3087
+ background-color: #ffffff;
3088
+ }
3089
+ .btn-dropbox {
3090
+ color: #ffffff;
3091
+ background-color: #1087dd;
3092
+ border-color: rgba(0, 0, 0, 0.2);
3093
+ }
3094
+ .btn-dropbox:hover,
3095
+ .btn-dropbox:focus,
3096
+ .btn-dropbox:active,
3097
+ .btn-dropbox.active,
3098
+ .open .dropdown-toggle.btn-dropbox {
3099
+ color: #ffffff;
3100
+ background-color: #0d70b7;
3101
+ border-color: rgba(0, 0, 0, 0.2);
3102
+ }
3103
+ .btn-dropbox:active,
3104
+ .btn-dropbox.active,
3105
+ .open .dropdown-toggle.btn-dropbox {
3106
+ background-image: none;
3107
+ }
3108
+ .btn-dropbox.disabled,
3109
+ .btn-dropbox[disabled],
3110
+ fieldset[disabled] .btn-dropbox,
3111
+ .btn-dropbox.disabled:hover,
3112
+ .btn-dropbox[disabled]:hover,
3113
+ fieldset[disabled] .btn-dropbox:hover,
3114
+ .btn-dropbox.disabled:focus,
3115
+ .btn-dropbox[disabled]:focus,
3116
+ fieldset[disabled] .btn-dropbox:focus,
3117
+ .btn-dropbox.disabled:active,
3118
+ .btn-dropbox[disabled]:active,
3119
+ fieldset[disabled] .btn-dropbox:active,
3120
+ .btn-dropbox.disabled.active,
3121
+ .btn-dropbox[disabled].active,
3122
+ fieldset[disabled] .btn-dropbox.active {
3123
+ background-color: #1087dd;
3124
+ border-color: rgba(0, 0, 0, 0.2);
3125
+ }
3126
+ .btn-dropbox .badge {
3127
+ color: #1087dd;
3128
+ background-color: #ffffff;
3129
+ }
3130
+ .btn-facebook {
3131
+ color: #ffffff;
3132
+ background-color: #3b5998;
3133
+ border-color: rgba(0, 0, 0, 0.2);
3134
+ }
3135
+ .btn-facebook:hover,
3136
+ .btn-facebook:focus,
3137
+ .btn-facebook:active,
3138
+ .btn-facebook.active,
3139
+ .open .dropdown-toggle.btn-facebook {
3140
+ color: #ffffff;
3141
+ background-color: #30487b;
3142
+ border-color: rgba(0, 0, 0, 0.2);
3143
+ }
3144
+ .btn-facebook:active,
3145
+ .btn-facebook.active,
3146
+ .open .dropdown-toggle.btn-facebook {
3147
+ background-image: none;
3148
+ }
3149
+ .btn-facebook.disabled,
3150
+ .btn-facebook[disabled],
3151
+ fieldset[disabled] .btn-facebook,
3152
+ .btn-facebook.disabled:hover,
3153
+ .btn-facebook[disabled]:hover,
3154
+ fieldset[disabled] .btn-facebook:hover,
3155
+ .btn-facebook.disabled:focus,
3156
+ .btn-facebook[disabled]:focus,
3157
+ fieldset[disabled] .btn-facebook:focus,
3158
+ .btn-facebook.disabled:active,
3159
+ .btn-facebook[disabled]:active,
3160
+ fieldset[disabled] .btn-facebook:active,
3161
+ .btn-facebook.disabled.active,
3162
+ .btn-facebook[disabled].active,
3163
+ fieldset[disabled] .btn-facebook.active {
3164
+ background-color: #3b5998;
3165
+ border-color: rgba(0, 0, 0, 0.2);
3166
+ }
3167
+ .btn-facebook .badge {
3168
+ color: #3b5998;
3169
+ background-color: #ffffff;
3170
+ }
3171
+ .btn-flickr {
3172
+ color: #ffffff;
3173
+ background-color: #ff0084;
3174
+ border-color: rgba(0, 0, 0, 0.2);
3175
+ }
3176
+ .btn-flickr:hover,
3177
+ .btn-flickr:focus,
3178
+ .btn-flickr:active,
3179
+ .btn-flickr.active,
3180
+ .open .dropdown-toggle.btn-flickr {
3181
+ color: #ffffff;
3182
+ background-color: #d6006f;
3183
+ border-color: rgba(0, 0, 0, 0.2);
3184
+ }
3185
+ .btn-flickr:active,
3186
+ .btn-flickr.active,
3187
+ .open .dropdown-toggle.btn-flickr {
3188
+ background-image: none;
3189
+ }
3190
+ .btn-flickr.disabled,
3191
+ .btn-flickr[disabled],
3192
+ fieldset[disabled] .btn-flickr,
3193
+ .btn-flickr.disabled:hover,
3194
+ .btn-flickr[disabled]:hover,
3195
+ fieldset[disabled] .btn-flickr:hover,
3196
+ .btn-flickr.disabled:focus,
3197
+ .btn-flickr[disabled]:focus,
3198
+ fieldset[disabled] .btn-flickr:focus,
3199
+ .btn-flickr.disabled:active,
3200
+ .btn-flickr[disabled]:active,
3201
+ fieldset[disabled] .btn-flickr:active,
3202
+ .btn-flickr.disabled.active,
3203
+ .btn-flickr[disabled].active,
3204
+ fieldset[disabled] .btn-flickr.active {
3205
+ background-color: #ff0084;
3206
+ border-color: rgba(0, 0, 0, 0.2);
3207
+ }
3208
+ .btn-flickr .badge {
3209
+ color: #ff0084;
3210
+ background-color: #ffffff;
3211
+ }
3212
+ .btn-foursquare {
3213
+ color: #ffffff;
3214
+ background-color: #0072b1;
3215
+ border-color: rgba(0, 0, 0, 0.2);
3216
+ }
3217
+ .btn-foursquare:hover,
3218
+ .btn-foursquare:focus,
3219
+ .btn-foursquare:active,
3220
+ .btn-foursquare.active,
3221
+ .open .dropdown-toggle.btn-foursquare {
3222
+ color: #ffffff;
3223
+ background-color: #005888;
3224
+ border-color: rgba(0, 0, 0, 0.2);
3225
+ }
3226
+ .btn-foursquare:active,
3227
+ .btn-foursquare.active,
3228
+ .open .dropdown-toggle.btn-foursquare {
3229
+ background-image: none;
3230
+ }
3231
+ .btn-foursquare.disabled,
3232
+ .btn-foursquare[disabled],
3233
+ fieldset[disabled] .btn-foursquare,
3234
+ .btn-foursquare.disabled:hover,
3235
+ .btn-foursquare[disabled]:hover,
3236
+ fieldset[disabled] .btn-foursquare:hover,
3237
+ .btn-foursquare.disabled:focus,
3238
+ .btn-foursquare[disabled]:focus,
3239
+ fieldset[disabled] .btn-foursquare:focus,
3240
+ .btn-foursquare.disabled:active,
3241
+ .btn-foursquare[disabled]:active,
3242
+ fieldset[disabled] .btn-foursquare:active,
3243
+ .btn-foursquare.disabled.active,
3244
+ .btn-foursquare[disabled].active,
3245
+ fieldset[disabled] .btn-foursquare.active {
3246
+ background-color: #0072b1;
3247
+ border-color: rgba(0, 0, 0, 0.2);
3248
+ }
3249
+ .btn-foursquare .badge {
3250
+ color: #0072b1;
3251
+ background-color: #ffffff;
3252
+ }
3253
+ .btn-github {
3254
+ color: #ffffff;
3255
+ background-color: #444444;
3256
+ border-color: rgba(0, 0, 0, 0.2);
3257
+ }
3258
+ .btn-github:hover,
3259
+ .btn-github:focus,
3260
+ .btn-github:active,
3261
+ .btn-github.active,
3262
+ .open .dropdown-toggle.btn-github {
3263
+ color: #ffffff;
3264
+ background-color: #303030;
3265
+ border-color: rgba(0, 0, 0, 0.2);
3266
+ }
3267
+ .btn-github:active,
3268
+ .btn-github.active,
3269
+ .open .dropdown-toggle.btn-github {
3270
+ background-image: none;
3271
+ }
3272
+ .btn-github.disabled,
3273
+ .btn-github[disabled],
3274
+ fieldset[disabled] .btn-github,
3275
+ .btn-github.disabled:hover,
3276
+ .btn-github[disabled]:hover,
3277
+ fieldset[disabled] .btn-github:hover,
3278
+ .btn-github.disabled:focus,
3279
+ .btn-github[disabled]:focus,
3280
+ fieldset[disabled] .btn-github:focus,
3281
+ .btn-github.disabled:active,
3282
+ .btn-github[disabled]:active,
3283
+ fieldset[disabled] .btn-github:active,
3284
+ .btn-github.disabled.active,
3285
+ .btn-github[disabled].active,
3286
+ fieldset[disabled] .btn-github.active {
3287
+ background-color: #444444;
3288
+ border-color: rgba(0, 0, 0, 0.2);
3289
+ }
3290
+ .btn-github .badge {
3291
+ color: #444444;
3292
+ background-color: #ffffff;
3293
+ }
3294
+ .btn-google-plus {
3295
+ color: #ffffff;
3296
+ background-color: #dd4b39;
3297
+ border-color: rgba(0, 0, 0, 0.2);
3298
+ }
3299
+ .btn-google-plus:hover,
3300
+ .btn-google-plus:focus,
3301
+ .btn-google-plus:active,
3302
+ .btn-google-plus.active,
3303
+ .open .dropdown-toggle.btn-google-plus {
3304
+ color: #ffffff;
3305
+ background-color: #ca3523;
3306
+ border-color: rgba(0, 0, 0, 0.2);
3307
+ }
3308
+ .btn-google-plus:active,
3309
+ .btn-google-plus.active,
3310
+ .open .dropdown-toggle.btn-google-plus {
3311
+ background-image: none;
3312
+ }
3313
+ .btn-google-plus.disabled,
3314
+ .btn-google-plus[disabled],
3315
+ fieldset[disabled] .btn-google-plus,
3316
+ .btn-google-plus.disabled:hover,
3317
+ .btn-google-plus[disabled]:hover,
3318
+ fieldset[disabled] .btn-google-plus:hover,
3319
+ .btn-google-plus.disabled:focus,
3320
+ .btn-google-plus[disabled]:focus,
3321
+ fieldset[disabled] .btn-google-plus:focus,
3322
+ .btn-google-plus.disabled:active,
3323
+ .btn-google-plus[disabled]:active,
3324
+ fieldset[disabled] .btn-google-plus:active,
3325
+ .btn-google-plus.disabled.active,
3326
+ .btn-google-plus[disabled].active,
3327
+ fieldset[disabled] .btn-google-plus.active {
3328
+ background-color: #dd4b39;
3329
+ border-color: rgba(0, 0, 0, 0.2);
3330
+ }
3331
+ .btn-google-plus .badge {
3332
+ color: #dd4b39;
3333
+ background-color: #ffffff;
3334
+ }
3335
+ .btn-instagram {
3336
+ color: #ffffff;
3337
+ background-color: #3f729b;
3338
+ border-color: rgba(0, 0, 0, 0.2);
3339
+ }
3340
+ .btn-instagram:hover,
3341
+ .btn-instagram:focus,
3342
+ .btn-instagram:active,
3343
+ .btn-instagram.active,
3344
+ .open .dropdown-toggle.btn-instagram {
3345
+ color: #ffffff;
3346
+ background-color: #335d7e;
3347
+ border-color: rgba(0, 0, 0, 0.2);
3348
+ }
3349
+ .btn-instagram:active,
3350
+ .btn-instagram.active,
3351
+ .open .dropdown-toggle.btn-instagram {
3352
+ background-image: none;
3353
+ }
3354
+ .btn-instagram.disabled,
3355
+ .btn-instagram[disabled],
3356
+ fieldset[disabled] .btn-instagram,
3357
+ .btn-instagram.disabled:hover,
3358
+ .btn-instagram[disabled]:hover,
3359
+ fieldset[disabled] .btn-instagram:hover,
3360
+ .btn-instagram.disabled:focus,
3361
+ .btn-instagram[disabled]:focus,
3362
+ fieldset[disabled] .btn-instagram:focus,
3363
+ .btn-instagram.disabled:active,
3364
+ .btn-instagram[disabled]:active,
3365
+ fieldset[disabled] .btn-instagram:active,
3366
+ .btn-instagram.disabled.active,
3367
+ .btn-instagram[disabled].active,
3368
+ fieldset[disabled] .btn-instagram.active {
3369
+ background-color: #3f729b;
3370
+ border-color: rgba(0, 0, 0, 0.2);
3371
+ }
3372
+ .btn-instagram .badge {
3373
+ color: #3f729b;
3374
+ background-color: #ffffff;
3375
+ }
3376
+ .btn-linkedin {
3377
+ color: #ffffff;
3378
+ background-color: #007bb6;
3379
+ border-color: rgba(0, 0, 0, 0.2);
3380
+ }
3381
+ .btn-linkedin:hover,
3382
+ .btn-linkedin:focus,
3383
+ .btn-linkedin:active,
3384
+ .btn-linkedin.active,
3385
+ .open .dropdown-toggle.btn-linkedin {
3386
+ color: #ffffff;
3387
+ background-color: #005f8d;
3388
+ border-color: rgba(0, 0, 0, 0.2);
3389
+ }
3390
+ .btn-linkedin:active,
3391
+ .btn-linkedin.active,
3392
+ .open .dropdown-toggle.btn-linkedin {
3393
+ background-image: none;
3394
+ }
3395
+ .btn-linkedin.disabled,
3396
+ .btn-linkedin[disabled],
3397
+ fieldset[disabled] .btn-linkedin,
3398
+ .btn-linkedin.disabled:hover,
3399
+ .btn-linkedin[disabled]:hover,
3400
+ fieldset[disabled] .btn-linkedin:hover,
3401
+ .btn-linkedin.disabled:focus,
3402
+ .btn-linkedin[disabled]:focus,
3403
+ fieldset[disabled] .btn-linkedin:focus,
3404
+ .btn-linkedin.disabled:active,
3405
+ .btn-linkedin[disabled]:active,
3406
+ fieldset[disabled] .btn-linkedin:active,
3407
+ .btn-linkedin.disabled.active,
3408
+ .btn-linkedin[disabled].active,
3409
+ fieldset[disabled] .btn-linkedin.active {
3410
+ background-color: #007bb6;
3411
+ border-color: rgba(0, 0, 0, 0.2);
3412
+ }
3413
+ .btn-linkedin .badge {
3414
+ color: #007bb6;
3415
+ background-color: #ffffff;
3416
+ }
3417
+ .btn-tumblr {
3418
+ color: #ffffff;
3419
+ background-color: #2c4762;
3420
+ border-color: rgba(0, 0, 0, 0.2);
3421
+ }
3422
+ .btn-tumblr:hover,
3423
+ .btn-tumblr:focus,
3424
+ .btn-tumblr:active,
3425
+ .btn-tumblr.active,
3426
+ .open .dropdown-toggle.btn-tumblr {
3427
+ color: #ffffff;
3428
+ background-color: #1f3346;
3429
+ border-color: rgba(0, 0, 0, 0.2);
3430
+ }
3431
+ .btn-tumblr:active,
3432
+ .btn-tumblr.active,
3433
+ .open .dropdown-toggle.btn-tumblr {
3434
+ background-image: none;
3435
+ }
3436
+ .btn-tumblr.disabled,
3437
+ .btn-tumblr[disabled],
3438
+ fieldset[disabled] .btn-tumblr,
3439
+ .btn-tumblr.disabled:hover,
3440
+ .btn-tumblr[disabled]:hover,
3441
+ fieldset[disabled] .btn-tumblr:hover,
3442
+ .btn-tumblr.disabled:focus,
3443
+ .btn-tumblr[disabled]:focus,
3444
+ fieldset[disabled] .btn-tumblr:focus,
3445
+ .btn-tumblr.disabled:active,
3446
+ .btn-tumblr[disabled]:active,
3447
+ fieldset[disabled] .btn-tumblr:active,
3448
+ .btn-tumblr.disabled.active,
3449
+ .btn-tumblr[disabled].active,
3450
+ fieldset[disabled] .btn-tumblr.active {
3451
+ background-color: #2c4762;
3452
+ border-color: rgba(0, 0, 0, 0.2);
3453
+ }
3454
+ .btn-tumblr .badge {
3455
+ color: #2c4762;
3456
+ background-color: #ffffff;
3457
+ }
3458
+ .btn-twitter {
3459
+ color: #ffffff;
3460
+ background-color: #55acee;
3461
+ border-color: rgba(0, 0, 0, 0.2);
3462
+ }
3463
+ .btn-twitter:hover,
3464
+ .btn-twitter:focus,
3465
+ .btn-twitter:active,
3466
+ .btn-twitter.active,
3467
+ .open .dropdown-toggle.btn-twitter {
3468
+ color: #ffffff;
3469
+ background-color: #309aea;
3470
+ border-color: rgba(0, 0, 0, 0.2);
3471
+ }
3472
+ .btn-twitter:active,
3473
+ .btn-twitter.active,
3474
+ .open .dropdown-toggle.btn-twitter {
3475
+ background-image: none;
3476
+ }
3477
+ .btn-twitter.disabled,
3478
+ .btn-twitter[disabled],
3479
+ fieldset[disabled] .btn-twitter,
3480
+ .btn-twitter.disabled:hover,
3481
+ .btn-twitter[disabled]:hover,
3482
+ fieldset[disabled] .btn-twitter:hover,
3483
+ .btn-twitter.disabled:focus,
3484
+ .btn-twitter[disabled]:focus,
3485
+ fieldset[disabled] .btn-twitter:focus,
3486
+ .btn-twitter.disabled:active,
3487
+ .btn-twitter[disabled]:active,
3488
+ fieldset[disabled] .btn-twitter:active,
3489
+ .btn-twitter.disabled.active,
3490
+ .btn-twitter[disabled].active,
3491
+ fieldset[disabled] .btn-twitter.active {
3492
+ background-color: #55acee;
3493
+ border-color: rgba(0, 0, 0, 0.2);
3494
+ }
3495
+ .btn-twitter .badge {
3496
+ color: #55acee;
3497
+ background-color: #ffffff;
3498
+ }
3499
+ .btn-vk {
3500
+ color: #ffffff;
3501
+ background-color: #587ea3;
3502
+ border-color: rgba(0, 0, 0, 0.2);
3503
+ }
3504
+ .btn-vk:hover,
3505
+ .btn-vk:focus,
3506
+ .btn-vk:active,
3507
+ .btn-vk.active,
3508
+ .open .dropdown-toggle.btn-vk {
3509
+ color: #ffffff;
3510
+ background-color: #4a6a89;
3511
+ border-color: rgba(0, 0, 0, 0.2);
3512
+ }
3513
+ .btn-vk:active,
3514
+ .btn-vk.active,
3515
+ .open .dropdown-toggle.btn-vk {
3516
+ background-image: none;
3517
+ }
3518
+ .btn-vk.disabled,
3519
+ .btn-vk[disabled],
3520
+ fieldset[disabled] .btn-vk,
3521
+ .btn-vk.disabled:hover,
3522
+ .btn-vk[disabled]:hover,
3523
+ fieldset[disabled] .btn-vk:hover,
3524
+ .btn-vk.disabled:focus,
3525
+ .btn-vk[disabled]:focus,
3526
+ fieldset[disabled] .btn-vk:focus,
3527
+ .btn-vk.disabled:active,
3528
+ .btn-vk[disabled]:active,
3529
+ fieldset[disabled] .btn-vk:active,
3530
+ .btn-vk.disabled.active,
3531
+ .btn-vk[disabled].active,
3532
+ fieldset[disabled] .btn-vk.active {
3533
+ background-color: #587ea3;
3534
+ border-color: rgba(0, 0, 0, 0.2);
3535
+ }
3536
+ .btn-vk .badge {
3537
+ color: #587ea3;
3538
+ background-color: #ffffff;
3539
+ }