card 1.15.pre → 1.15.pre2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/db/bootstrap/card_actions.yml +1039 -668
  4. data/db/bootstrap/card_acts.yml +1 -1
  5. data/db/bootstrap/card_changes.yml +3614 -2523
  6. data/db/bootstrap/card_references.yml +1401 -1163
  7. data/db/bootstrap/cards.yml +2832 -1848
  8. data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +58 -4
  9. data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +37 -0
  10. data/db/migrate_core_cards/data/1.12_stylesheets/traditional.scss +1 -1
  11. data/db/migrate_core_cards/data/bootstrap_layout.json +39 -24
  12. data/db/migrate_core_cards/data/skin_images.json +91 -0
  13. data/db/schema.rb +1 -1
  14. data/db/version_core_cards.txt +1 -1
  15. data/lib/card/format.rb +6 -6
  16. data/lib/card/migration.rb +7 -2
  17. data/mod/01_core/chunk/include.rb +10 -0
  18. data/mod/01_core/format/html_format.rb +2 -8
  19. data/mod/01_core/set/all/collection.rb +4 -0
  20. data/mod/01_core/set/all/states.rb +1 -1
  21. data/mod/01_core/set/all/utils.rb +3 -2
  22. data/mod/01_core/set_pattern/02_all_plus.rb +1 -1
  23. data/mod/01_core/set_pattern/04_star.rb +2 -2
  24. data/mod/01_core/set_pattern/05_rstar.rb +2 -2
  25. data/mod/01_core/set_pattern/07_type_plus_right.rb +1 -1
  26. data/mod/01_core/spec/format/html_format_spec.rb +23 -24
  27. data/mod/01_history/set/all/history.rb +6 -7
  28. data/mod/02_basic_types/set/all/all_css.rb +1 -1
  29. data/mod/02_basic_types/set/all/all_csv.rb +2 -2
  30. data/mod/02_basic_types/set/all/json.rb +1 -1
  31. data/mod/02_basic_types/set/type/plain_text.rb +1 -1
  32. data/mod/02_basic_types/set/type/pointer.rb +25 -29
  33. data/mod/03_machines/lib/javascript/wagn.js.coffee +7 -6
  34. data/mod/03_machines/lib/javascript/wagn_mod.js.coffee +2 -1
  35. data/mod/03_machines/lib/stylesheets/style_bootstrap_compatible.css +154 -0
  36. data/mod/03_machines/lib/stylesheets/{standard.scss → style_cards.scss} +260 -166
  37. data/mod/03_machines/set/self/style_bootstrap_compatible.rb +9 -0
  38. data/mod/03_machines/set/self/{style_functional.rb → style_cards.rb} +1 -1
  39. data/mod/03_machines/spec/set/type/scss_spec.rb +1 -1
  40. data/mod/04_settings/set/type/setting.rb +1 -1
  41. data/mod/05_email/set/all/notify.rb +1 -1
  42. data/mod/05_email/set/self/follow_defaults.rb +3 -3
  43. data/mod/05_standard/file/{790/icon-6419.png → credit/icon-image.png} +0 -0
  44. data/mod/05_standard/file/{790/large-6419.png → credit/large-image.png} +0 -0
  45. data/mod/05_standard/file/{790/medium-6419.png → credit/medium-image.png} +0 -0
  46. data/mod/05_standard/file/{790/original-6419.png → credit/original-image.png} +0 -0
  47. data/mod/05_standard/file/{790/small-6419.png → credit/small-image.png} +0 -0
  48. data/mod/05_standard/file/{103/icon-6566.ico → favicon/icon-image.ico} +0 -0
  49. data/mod/05_standard/file/{103/large-6566.ico → favicon/large-image.ico} +0 -0
  50. data/mod/05_standard/file/{103/medium-6566.ico → favicon/medium-image.ico} +0 -0
  51. data/mod/05_standard/file/{103/original-6566.ico → favicon/original-image.ico} +0 -0
  52. data/mod/05_standard/file/{103/small-6566.ico → favicon/small-image.ico} +0 -0
  53. data/mod/05_standard/file/{79/icon-6556.png → logo/icon-image.png} +0 -0
  54. data/mod/05_standard/file/{79/large-6556.png → logo/large-image.png} +0 -0
  55. data/mod/05_standard/file/{79/medium-6556.png → logo/medium-image.png} +0 -0
  56. data/mod/05_standard/file/{79/original-6556.png → logo/original-image.png} +0 -0
  57. data/mod/05_standard/file/{79/small-6556.png → logo/small-image.png} +0 -0
  58. data/mod/05_standard/set/all/attach.rb +8 -10
  59. data/mod/05_standard/set/all/comment.rb +1 -1
  60. data/mod/05_standard/set/all/error.rb +1 -1
  61. data/mod/05_standard/set/all/rich_html/content.rb +14 -2
  62. data/mod/05_standard/set/all/rich_html/editing.rb +19 -18
  63. data/mod/05_standard/set/all/rich_html/form.rb +38 -47
  64. data/mod/05_standard/set/all/rich_html/header.rb +37 -14
  65. data/mod/05_standard/set/all/rich_html/wrapper.rb +3 -3
  66. data/mod/05_standard/set/rstar/rules.rb +18 -18
  67. data/mod/05_standard/set/self/account_links.rb +6 -18
  68. data/mod/05_standard/set/self/navbox.rb +23 -10
  69. data/mod/05_standard/set/self/recent.rb +1 -1
  70. data/mod/05_standard/set/self/signin.rb +6 -3
  71. data/mod/05_standard/set/type/cardtype.rb +1 -1
  72. data/mod/05_standard/set/type/html.rb +1 -1
  73. data/mod/05_standard/set/type/search_type.rb +76 -54
  74. data/mod/05_standard/set/type/signup.rb +5 -5
  75. data/mod/05_standard/set/type/user.rb +4 -4
  76. data/mod/05_standard/spec/set/all/rich_html/wrapper_spec.rb +2 -2
  77. data/mod/05_standard/spec/set/self/account_links_spec.rb +1 -1
  78. data/mod/06_bootstrap/file/cerulean_skin/icon-image.png +0 -0
  79. data/mod/06_bootstrap/file/cerulean_skin/large-image.png +0 -0
  80. data/mod/06_bootstrap/file/cerulean_skin/medium-image.png +0 -0
  81. data/mod/06_bootstrap/file/cerulean_skin/original-image.png +0 -0
  82. data/mod/06_bootstrap/file/cerulean_skin/small-image.png +0 -0
  83. data/mod/06_bootstrap/file/cosmo_skin/icon-image.png +0 -0
  84. data/mod/06_bootstrap/file/cosmo_skin/large-image.png +0 -0
  85. data/mod/06_bootstrap/file/cosmo_skin/medium-image.png +0 -0
  86. data/mod/06_bootstrap/file/cosmo_skin/original-image.png +0 -0
  87. data/mod/06_bootstrap/file/cosmo_skin/small-image.png +0 -0
  88. data/mod/06_bootstrap/file/cyborg_skin/icon-image.png +0 -0
  89. data/mod/06_bootstrap/file/cyborg_skin/large-image.png +0 -0
  90. data/mod/06_bootstrap/file/cyborg_skin/medium-image.png +0 -0
  91. data/mod/06_bootstrap/file/cyborg_skin/original-image.png +0 -0
  92. data/mod/06_bootstrap/file/cyborg_skin/small-image.png +0 -0
  93. data/mod/06_bootstrap/file/darkly_skin/icon-image.png +0 -0
  94. data/mod/06_bootstrap/file/darkly_skin/large-image.png +0 -0
  95. data/mod/06_bootstrap/file/darkly_skin/medium-image.png +0 -0
  96. data/mod/06_bootstrap/file/darkly_skin/original-image.png +0 -0
  97. data/mod/06_bootstrap/file/darkly_skin/small-image.png +0 -0
  98. data/mod/06_bootstrap/file/flatly_skin/icon-image.png +0 -0
  99. data/mod/06_bootstrap/file/flatly_skin/large-image.png +0 -0
  100. data/mod/06_bootstrap/file/flatly_skin/medium-image.png +0 -0
  101. data/mod/06_bootstrap/file/flatly_skin/original-image.png +0 -0
  102. data/mod/06_bootstrap/file/flatly_skin/small-image.png +0 -0
  103. data/mod/06_bootstrap/file/journal_skin/icon-image.png +0 -0
  104. data/mod/06_bootstrap/file/journal_skin/large-image.png +0 -0
  105. data/mod/06_bootstrap/file/journal_skin/medium-image.png +0 -0
  106. data/mod/06_bootstrap/file/journal_skin/original-image.png +0 -0
  107. data/mod/06_bootstrap/file/journal_skin/small-image.png +0 -0
  108. data/mod/06_bootstrap/file/lumen_skin/icon-image.png +0 -0
  109. data/mod/06_bootstrap/file/lumen_skin/large-image.png +0 -0
  110. data/mod/06_bootstrap/file/lumen_skin/medium-image.png +0 -0
  111. data/mod/06_bootstrap/file/lumen_skin/original-image.png +0 -0
  112. data/mod/06_bootstrap/file/lumen_skin/small-image.png +0 -0
  113. data/mod/06_bootstrap/file/paper_skin/icon-image.png +0 -0
  114. data/mod/06_bootstrap/file/paper_skin/large-image.png +0 -0
  115. data/mod/06_bootstrap/file/paper_skin/medium-image.png +0 -0
  116. data/mod/06_bootstrap/file/paper_skin/original-image.png +0 -0
  117. data/mod/06_bootstrap/file/paper_skin/small-image.png +0 -0
  118. data/mod/06_bootstrap/file/readable_skin/icon-image.png +0 -0
  119. data/mod/06_bootstrap/file/readable_skin/large-image.png +0 -0
  120. data/mod/06_bootstrap/file/readable_skin/medium-image.png +0 -0
  121. data/mod/06_bootstrap/file/readable_skin/original-image.png +0 -0
  122. data/mod/06_bootstrap/file/readable_skin/small-image.png +0 -0
  123. data/mod/06_bootstrap/file/sandstone_skin/icon-image.png +0 -0
  124. data/mod/06_bootstrap/file/sandstone_skin/large-image.png +0 -0
  125. data/mod/06_bootstrap/file/sandstone_skin/medium-image.png +0 -0
  126. data/mod/06_bootstrap/file/sandstone_skin/original-image.png +0 -0
  127. data/mod/06_bootstrap/file/sandstone_skin/small-image.png +0 -0
  128. data/mod/06_bootstrap/file/simplex_skin/icon-image.png +0 -0
  129. data/mod/06_bootstrap/file/simplex_skin/large-image.png +0 -0
  130. data/mod/06_bootstrap/file/simplex_skin/medium-image.png +0 -0
  131. data/mod/06_bootstrap/file/simplex_skin/original-image.png +0 -0
  132. data/mod/06_bootstrap/file/simplex_skin/small-image.png +0 -0
  133. data/mod/06_bootstrap/file/slate_skin/icon-image.png +0 -0
  134. data/mod/06_bootstrap/file/slate_skin/large-image.png +0 -0
  135. data/mod/06_bootstrap/file/slate_skin/medium-image.png +0 -0
  136. data/mod/06_bootstrap/file/slate_skin/original-image.png +0 -0
  137. data/mod/06_bootstrap/file/slate_skin/small-image.png +0 -0
  138. data/mod/06_bootstrap/file/spacelab_skin/icon-image.png +0 -0
  139. data/mod/06_bootstrap/file/spacelab_skin/large-image.png +0 -0
  140. data/mod/06_bootstrap/file/spacelab_skin/medium-image.png +0 -0
  141. data/mod/06_bootstrap/file/spacelab_skin/original-image.png +0 -0
  142. data/mod/06_bootstrap/file/spacelab_skin/small-image.png +0 -0
  143. data/mod/06_bootstrap/file/superhero_skin/icon-image.png +0 -0
  144. data/mod/06_bootstrap/file/superhero_skin/large-image.png +0 -0
  145. data/mod/06_bootstrap/file/superhero_skin/medium-image.png +0 -0
  146. data/mod/06_bootstrap/file/superhero_skin/original-image.png +0 -0
  147. data/mod/06_bootstrap/file/superhero_skin/small-image.png +0 -0
  148. data/mod/06_bootstrap/file/united_skin/icon-image.png +0 -0
  149. data/mod/06_bootstrap/file/united_skin/large-image.png +0 -0
  150. data/mod/06_bootstrap/file/united_skin/medium-image.png +0 -0
  151. data/mod/06_bootstrap/file/united_skin/original-image.png +0 -0
  152. data/mod/06_bootstrap/file/united_skin/small-image.png +0 -0
  153. data/mod/06_bootstrap/file/yeti_skin/icon-image.png +0 -0
  154. data/mod/06_bootstrap/file/yeti_skin/large-image.png +0 -0
  155. data/mod/06_bootstrap/file/yeti_skin/medium-image.png +0 -0
  156. data/mod/06_bootstrap/file/yeti_skin/original-image.png +0 -0
  157. data/mod/06_bootstrap/file/yeti_skin/small-image.png +0 -0
  158. data/mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss +199 -0
  159. data/mod/06_bootstrap/lib/stylesheets/{bootstrap.css → bootstrap_css.css} +0 -0
  160. data/mod/06_bootstrap/lib/stylesheets/theme_amelia.css +5871 -0
  161. data/mod/06_bootstrap/lib/stylesheets/{bootstrap-theme.css → theme_bootstrap_default.css} +0 -0
  162. data/mod/06_bootstrap/lib/stylesheets/theme_cerulean.css +5893 -0
  163. data/mod/06_bootstrap/lib/stylesheets/theme_cosmo.css +5898 -0
  164. data/mod/06_bootstrap/lib/stylesheets/theme_cyborg.css +5876 -0
  165. data/mod/06_bootstrap/lib/stylesheets/theme_darkly.css +5986 -0
  166. data/mod/06_bootstrap/lib/stylesheets/{darkly.css → theme_flatly.css} +574 -327
  167. data/mod/06_bootstrap/lib/stylesheets/theme_holo.css +183 -0
  168. data/mod/06_bootstrap/lib/stylesheets/theme_journal.css +6647 -0
  169. data/mod/06_bootstrap/lib/stylesheets/theme_lumen.css +6097 -0
  170. data/mod/06_bootstrap/lib/stylesheets/theme_paper.css +6647 -0
  171. data/mod/06_bootstrap/lib/stylesheets/theme_readable.css +5896 -0
  172. data/mod/06_bootstrap/lib/stylesheets/theme_sandstone.css +6733 -0
  173. data/mod/06_bootstrap/lib/stylesheets/theme_simplex.css +5886 -0
  174. data/mod/06_bootstrap/lib/stylesheets/theme_slate.css +7057 -0
  175. data/mod/06_bootstrap/lib/stylesheets/theme_spacelab.css +5935 -0
  176. data/mod/06_bootstrap/lib/stylesheets/theme_superhero.css +5964 -0
  177. data/mod/06_bootstrap/lib/stylesheets/theme_united.css +6588 -0
  178. data/mod/06_bootstrap/lib/stylesheets/theme_yeti.css +6088 -0
  179. data/mod/06_bootstrap/set/all/rich_bootstrap.rb +0 -16
  180. data/mod/06_bootstrap/set/self/bootstrap_cards.rb +9 -0
  181. data/mod/06_bootstrap/set/self/bootstrap_css.rb +5 -3
  182. data/mod/06_bootstrap/set/self/theme_bootstrap_default.rb +2 -0
  183. data/mod/06_bootstrap/set/self/theme_cerulean.rb +2 -0
  184. data/mod/06_bootstrap/set/self/theme_cosmo.rb +2 -0
  185. data/mod/06_bootstrap/set/self/theme_cyborg.rb +2 -0
  186. data/mod/06_bootstrap/set/self/theme_darkly.rb +2 -0
  187. data/mod/06_bootstrap/set/self/theme_flatly.rb +2 -0
  188. data/mod/06_bootstrap/set/self/theme_journal.rb +2 -0
  189. data/mod/06_bootstrap/set/self/theme_lumen.rb +2 -0
  190. data/mod/06_bootstrap/set/self/theme_paper.rb +2 -0
  191. data/mod/06_bootstrap/set/self/theme_readable.rb +2 -0
  192. data/mod/06_bootstrap/set/self/theme_sandstone.rb +2 -0
  193. data/mod/06_bootstrap/set/self/theme_simplex.rb +2 -0
  194. data/mod/06_bootstrap/set/self/theme_slate.rb +2 -0
  195. data/mod/06_bootstrap/set/self/theme_spacelab.rb +2 -0
  196. data/mod/06_bootstrap/set/self/theme_superhero.rb +2 -0
  197. data/mod/06_bootstrap/set/self/theme_united.rb +2 -0
  198. data/mod/06_bootstrap/set/self/theme_yeti.rb +2 -0
  199. data/test/fixtures/card_actions.yml +1951 -1580
  200. data/test/fixtures/card_acts.yml +282 -282
  201. data/test/fixtures/card_changes.yml +6769 -5678
  202. data/test/fixtures/card_references.yml +2086 -1848
  203. data/test/fixtures/cards.yml +4167 -3183
  204. metadata +142 -30
  205. data/mod/03_machines/lib/stylesheets/functional.scss +0 -184
  206. data/mod/03_machines/set/self/style_standard.rb +0 -8
  207. data/mod/03_machines/spec/set/self/style_functional_spec.rb +0 -5
  208. data/mod/03_machines/spec/set/self/style_standard_spec.rb +0 -5
  209. data/mod/06_bootstrap/set/all/bootstrap/header.rb +0 -29
  210. data/mod/06_bootstrap/set/self/bootstrap_theme_css.rb +0 -7
  211. data/mod/06_bootstrap/set/self/navbox.rb +0 -32
  212. data/mod/06_bootstrap/set/type/search_type.rb +0 -79
@@ -1,8 +1,8 @@
1
1
  @import url("//fonts.googleapis.com/css?family=Lato:400,700,400italic");
2
2
  /*!
3
- * bootswatch v3.3.1+2
3
+ * bootswatch v3.3.4
4
4
  * Homepage: http://bootswatch.com
5
- * Copyright 2012-2014 Thomas Park
5
+ * Copyright 2012-2015 Thomas Park
6
6
  * Licensed under MIT
7
7
  * Based on Bootstrap
8
8
  */
@@ -268,7 +268,7 @@ th {
268
268
  @font-face {
269
269
  font-family: 'Glyphicons Halflings';
270
270
  src: url('../fonts/glyphicons-halflings-regular.eot');
271
- src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
271
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
272
272
  }
273
273
  .glyphicon {
274
274
  position: relative;
@@ -882,6 +882,192 @@ th {
882
882
  .glyphicon-tree-deciduous:before {
883
883
  content: "\e200";
884
884
  }
885
+ .glyphicon-cd:before {
886
+ content: "\e201";
887
+ }
888
+ .glyphicon-save-file:before {
889
+ content: "\e202";
890
+ }
891
+ .glyphicon-open-file:before {
892
+ content: "\e203";
893
+ }
894
+ .glyphicon-level-up:before {
895
+ content: "\e204";
896
+ }
897
+ .glyphicon-copy:before {
898
+ content: "\e205";
899
+ }
900
+ .glyphicon-paste:before {
901
+ content: "\e206";
902
+ }
903
+ .glyphicon-alert:before {
904
+ content: "\e209";
905
+ }
906
+ .glyphicon-equalizer:before {
907
+ content: "\e210";
908
+ }
909
+ .glyphicon-king:before {
910
+ content: "\e211";
911
+ }
912
+ .glyphicon-queen:before {
913
+ content: "\e212";
914
+ }
915
+ .glyphicon-pawn:before {
916
+ content: "\e213";
917
+ }
918
+ .glyphicon-bishop:before {
919
+ content: "\e214";
920
+ }
921
+ .glyphicon-knight:before {
922
+ content: "\e215";
923
+ }
924
+ .glyphicon-baby-formula:before {
925
+ content: "\e216";
926
+ }
927
+ .glyphicon-tent:before {
928
+ content: "\26fa";
929
+ }
930
+ .glyphicon-blackboard:before {
931
+ content: "\e218";
932
+ }
933
+ .glyphicon-bed:before {
934
+ content: "\e219";
935
+ }
936
+ .glyphicon-apple:before {
937
+ content: "\f8ff";
938
+ }
939
+ .glyphicon-erase:before {
940
+ content: "\e221";
941
+ }
942
+ .glyphicon-hourglass:before {
943
+ content: "\231b";
944
+ }
945
+ .glyphicon-lamp:before {
946
+ content: "\e223";
947
+ }
948
+ .glyphicon-duplicate:before {
949
+ content: "\e224";
950
+ }
951
+ .glyphicon-piggy-bank:before {
952
+ content: "\e225";
953
+ }
954
+ .glyphicon-scissors:before {
955
+ content: "\e226";
956
+ }
957
+ .glyphicon-bitcoin:before {
958
+ content: "\e227";
959
+ }
960
+ .glyphicon-btc:before {
961
+ content: "\e227";
962
+ }
963
+ .glyphicon-xbt:before {
964
+ content: "\e227";
965
+ }
966
+ .glyphicon-yen:before {
967
+ content: "\00a5";
968
+ }
969
+ .glyphicon-jpy:before {
970
+ content: "\00a5";
971
+ }
972
+ .glyphicon-ruble:before {
973
+ content: "\20bd";
974
+ }
975
+ .glyphicon-rub:before {
976
+ content: "\20bd";
977
+ }
978
+ .glyphicon-scale:before {
979
+ content: "\e230";
980
+ }
981
+ .glyphicon-ice-lolly:before {
982
+ content: "\e231";
983
+ }
984
+ .glyphicon-ice-lolly-tasted:before {
985
+ content: "\e232";
986
+ }
987
+ .glyphicon-education:before {
988
+ content: "\e233";
989
+ }
990
+ .glyphicon-option-horizontal:before {
991
+ content: "\e234";
992
+ }
993
+ .glyphicon-option-vertical:before {
994
+ content: "\e235";
995
+ }
996
+ .glyphicon-menu-hamburger:before {
997
+ content: "\e236";
998
+ }
999
+ .glyphicon-modal-window:before {
1000
+ content: "\e237";
1001
+ }
1002
+ .glyphicon-oil:before {
1003
+ content: "\e238";
1004
+ }
1005
+ .glyphicon-grain:before {
1006
+ content: "\e239";
1007
+ }
1008
+ .glyphicon-sunglasses:before {
1009
+ content: "\e240";
1010
+ }
1011
+ .glyphicon-text-size:before {
1012
+ content: "\e241";
1013
+ }
1014
+ .glyphicon-text-color:before {
1015
+ content: "\e242";
1016
+ }
1017
+ .glyphicon-text-background:before {
1018
+ content: "\e243";
1019
+ }
1020
+ .glyphicon-object-align-top:before {
1021
+ content: "\e244";
1022
+ }
1023
+ .glyphicon-object-align-bottom:before {
1024
+ content: "\e245";
1025
+ }
1026
+ .glyphicon-object-align-horizontal:before {
1027
+ content: "\e246";
1028
+ }
1029
+ .glyphicon-object-align-left:before {
1030
+ content: "\e247";
1031
+ }
1032
+ .glyphicon-object-align-vertical:before {
1033
+ content: "\e248";
1034
+ }
1035
+ .glyphicon-object-align-right:before {
1036
+ content: "\e249";
1037
+ }
1038
+ .glyphicon-triangle-right:before {
1039
+ content: "\e250";
1040
+ }
1041
+ .glyphicon-triangle-left:before {
1042
+ content: "\e251";
1043
+ }
1044
+ .glyphicon-triangle-bottom:before {
1045
+ content: "\e252";
1046
+ }
1047
+ .glyphicon-triangle-top:before {
1048
+ content: "\e253";
1049
+ }
1050
+ .glyphicon-console:before {
1051
+ content: "\e254";
1052
+ }
1053
+ .glyphicon-superscript:before {
1054
+ content: "\e255";
1055
+ }
1056
+ .glyphicon-subscript:before {
1057
+ content: "\e256";
1058
+ }
1059
+ .glyphicon-menu-left:before {
1060
+ content: "\e257";
1061
+ }
1062
+ .glyphicon-menu-right:before {
1063
+ content: "\e258";
1064
+ }
1065
+ .glyphicon-menu-down:before {
1066
+ content: "\e259";
1067
+ }
1068
+ .glyphicon-menu-up:before {
1069
+ content: "\e260";
1070
+ }
885
1071
  * {
886
1072
  -webkit-box-sizing: border-box;
887
1073
  -moz-box-sizing: border-box;
@@ -901,8 +1087,8 @@ body {
901
1087
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
902
1088
  font-size: 15px;
903
1089
  line-height: 1.42857143;
904
- color: #ffffff;
905
- background-color: #222222;
1090
+ color: #2c3e50;
1091
+ background-color: #ffffff;
906
1092
  }
907
1093
  input,
908
1094
  button,
@@ -913,12 +1099,12 @@ textarea {
913
1099
  line-height: inherit;
914
1100
  }
915
1101
  a {
916
- color: #0ce3ac;
1102
+ color: #18bc9c;
917
1103
  text-decoration: none;
918
1104
  }
919
1105
  a:hover,
920
1106
  a:focus {
921
- color: #0ce3ac;
1107
+ color: #18bc9c;
922
1108
  text-decoration: underline;
923
1109
  }
924
1110
  a:focus {
@@ -945,10 +1131,10 @@ img {
945
1131
  border-radius: 6px;
946
1132
  }
947
1133
  .img-thumbnail {
948
- padding: 2px;
1134
+ padding: 4px;
949
1135
  line-height: 1.42857143;
950
- background-color: #222222;
951
- border: 1px solid #464545;
1136
+ background-color: #ffffff;
1137
+ border: 1px solid #ecf0f1;
952
1138
  border-radius: 4px;
953
1139
  -webkit-transition: all 0.2s ease-in-out;
954
1140
  -o-transition: all 0.2s ease-in-out;
@@ -964,7 +1150,7 @@ hr {
964
1150
  margin-top: 21px;
965
1151
  margin-bottom: 21px;
966
1152
  border: 0;
967
- border-top: 1px solid #464545;
1153
+ border-top: 1px solid #ecf0f1;
968
1154
  }
969
1155
  .sr-only {
970
1156
  position: absolute;
@@ -985,6 +1171,9 @@ hr {
985
1171
  overflow: visible;
986
1172
  clip: auto;
987
1173
  }
1174
+ [role="button"] {
1175
+ cursor: pointer;
1176
+ }
988
1177
  h1,
989
1178
  h2,
990
1179
  h3,
@@ -1028,7 +1217,7 @@ h6 .small,
1028
1217
  .h6 .small {
1029
1218
  font-weight: normal;
1030
1219
  line-height: 1;
1031
- color: #999999;
1220
+ color: #b4bcc2;
1032
1221
  }
1033
1222
  h1,
1034
1223
  .h1,
@@ -1148,13 +1337,13 @@ mark,
1148
1337
  text-transform: capitalize;
1149
1338
  }
1150
1339
  .text-muted {
1151
- color: #999999;
1340
+ color: #b4bcc2;
1152
1341
  }
1153
1342
  .text-primary {
1154
- color: #375a7f;
1343
+ color: #2c3e50;
1155
1344
  }
1156
1345
  a.text-primary:hover {
1157
- color: #28415b;
1346
+ color: #1a242f;
1158
1347
  }
1159
1348
  .text-success {
1160
1349
  color: #ffffff;
@@ -1182,16 +1371,16 @@ a.text-danger:hover {
1182
1371
  }
1183
1372
  .bg-primary {
1184
1373
  color: #fff;
1185
- background-color: #375a7f;
1374
+ background-color: #2c3e50;
1186
1375
  }
1187
1376
  a.bg-primary:hover {
1188
- background-color: #28415b;
1377
+ background-color: #1a242f;
1189
1378
  }
1190
1379
  .bg-success {
1191
- background-color: #00bc8c;
1380
+ background-color: #18bc9c;
1192
1381
  }
1193
1382
  a.bg-success:hover {
1194
- background-color: #008966;
1383
+ background-color: #128f76;
1195
1384
  }
1196
1385
  .bg-info {
1197
1386
  background-color: #3498db;
@@ -1272,7 +1461,7 @@ dd {
1272
1461
  abbr[title],
1273
1462
  abbr[data-original-title] {
1274
1463
  cursor: help;
1275
- border-bottom: 1px dotted #999999;
1464
+ border-bottom: 1px dotted #b4bcc2;
1276
1465
  }
1277
1466
  .initialism {
1278
1467
  font-size: 90%;
@@ -1282,7 +1471,7 @@ blockquote {
1282
1471
  padding: 10.5px 21px;
1283
1472
  margin: 0 0 21px;
1284
1473
  font-size: 18.75px;
1285
- border-left: 5px solid #464545;
1474
+ border-left: 5px solid #ecf0f1;
1286
1475
  }
1287
1476
  blockquote p:last-child,
1288
1477
  blockquote ul:last-child,
@@ -1295,7 +1484,7 @@ blockquote .small {
1295
1484
  display: block;
1296
1485
  font-size: 80%;
1297
1486
  line-height: 1.42857143;
1298
- color: #999999;
1487
+ color: #b4bcc2;
1299
1488
  }
1300
1489
  blockquote footer:before,
1301
1490
  blockquote small:before,
@@ -1306,7 +1495,7 @@ blockquote .small:before {
1306
1495
  blockquote.pull-right {
1307
1496
  padding-right: 15px;
1308
1497
  padding-left: 0;
1309
- border-right: 5px solid #464545;
1498
+ border-right: 5px solid #ecf0f1;
1310
1499
  border-left: 0;
1311
1500
  text-align: right;
1312
1501
  }
@@ -1368,8 +1557,8 @@ pre {
1368
1557
  line-height: 1.42857143;
1369
1558
  word-break: break-all;
1370
1559
  word-wrap: break-word;
1371
- color: #303030;
1372
- background-color: #ebebeb;
1560
+ color: #7b8a8b;
1561
+ background-color: #ecf0f1;
1373
1562
  border: 1px solid #cccccc;
1374
1563
  border-radius: 4px;
1375
1564
  }
@@ -2058,7 +2247,7 @@ table {
2058
2247
  caption {
2059
2248
  padding-top: 8px;
2060
2249
  padding-bottom: 8px;
2061
- color: #999999;
2250
+ color: #b4bcc2;
2062
2251
  text-align: left;
2063
2252
  }
2064
2253
  th {
@@ -2078,11 +2267,11 @@ th {
2078
2267
  padding: 8px;
2079
2268
  line-height: 1.42857143;
2080
2269
  vertical-align: top;
2081
- border-top: 1px solid #464545;
2270
+ border-top: 1px solid #ecf0f1;
2082
2271
  }
2083
2272
  .table > thead > tr > th {
2084
2273
  vertical-align: bottom;
2085
- border-bottom: 2px solid #464545;
2274
+ border-bottom: 2px solid #ecf0f1;
2086
2275
  }
2087
2276
  .table > caption + thead > tr:first-child > th,
2088
2277
  .table > colgroup + thead > tr:first-child > th,
@@ -2093,10 +2282,10 @@ th {
2093
2282
  border-top: 0;
2094
2283
  }
2095
2284
  .table > tbody + tbody {
2096
- border-top: 2px solid #464545;
2285
+ border-top: 2px solid #ecf0f1;
2097
2286
  }
2098
2287
  .table .table {
2099
- background-color: #222222;
2288
+ background-color: #ffffff;
2100
2289
  }
2101
2290
  .table-condensed > thead > tr > th,
2102
2291
  .table-condensed > tbody > tr > th,
@@ -2107,7 +2296,7 @@ th {
2107
2296
  padding: 5px;
2108
2297
  }
2109
2298
  .table-bordered {
2110
- border: 1px solid #464545;
2299
+ border: 1px solid #ecf0f1;
2111
2300
  }
2112
2301
  .table-bordered > thead > tr > th,
2113
2302
  .table-bordered > tbody > tr > th,
@@ -2115,17 +2304,17 @@ th {
2115
2304
  .table-bordered > thead > tr > td,
2116
2305
  .table-bordered > tbody > tr > td,
2117
2306
  .table-bordered > tfoot > tr > td {
2118
- border: 1px solid #464545;
2307
+ border: 1px solid #ecf0f1;
2119
2308
  }
2120
2309
  .table-bordered > thead > tr > th,
2121
2310
  .table-bordered > thead > tr > td {
2122
2311
  border-bottom-width: 2px;
2123
2312
  }
2124
- .table-striped > tbody > tr:nth-child(odd) {
2125
- background-color: #3d3d3d;
2313
+ .table-striped > tbody > tr:nth-of-type(odd) {
2314
+ background-color: #f9f9f9;
2126
2315
  }
2127
2316
  .table-hover > tbody > tr:hover {
2128
- background-color: #464545;
2317
+ background-color: #ecf0f1;
2129
2318
  }
2130
2319
  table col[class*="col-"] {
2131
2320
  position: static;
@@ -2150,14 +2339,14 @@ table th[class*="col-"] {
2150
2339
  .table > thead > tr.active > th,
2151
2340
  .table > tbody > tr.active > th,
2152
2341
  .table > tfoot > tr.active > th {
2153
- background-color: #464545;
2342
+ background-color: #ecf0f1;
2154
2343
  }
2155
2344
  .table-hover > tbody > tr > td.active:hover,
2156
2345
  .table-hover > tbody > tr > th.active:hover,
2157
2346
  .table-hover > tbody > tr.active:hover > td,
2158
2347
  .table-hover > tbody > tr:hover > .active,
2159
2348
  .table-hover > tbody > tr.active:hover > th {
2160
- background-color: #393838;
2349
+ background-color: #dde4e6;
2161
2350
  }
2162
2351
  .table > thead > tr > td.success,
2163
2352
  .table > tbody > tr > td.success,
@@ -2171,14 +2360,14 @@ table th[class*="col-"] {
2171
2360
  .table > thead > tr.success > th,
2172
2361
  .table > tbody > tr.success > th,
2173
2362
  .table > tfoot > tr.success > th {
2174
- background-color: #00bc8c;
2363
+ background-color: #18bc9c;
2175
2364
  }
2176
2365
  .table-hover > tbody > tr > td.success:hover,
2177
2366
  .table-hover > tbody > tr > th.success:hover,
2178
2367
  .table-hover > tbody > tr.success:hover > td,
2179
2368
  .table-hover > tbody > tr:hover > .success,
2180
2369
  .table-hover > tbody > tr.success:hover > th {
2181
- background-color: #00a379;
2370
+ background-color: #15a589;
2182
2371
  }
2183
2372
  .table > thead > tr > td.info,
2184
2373
  .table > tbody > tr > td.info,
@@ -2253,7 +2442,7 @@ table th[class*="col-"] {
2253
2442
  margin-bottom: 15.75px;
2254
2443
  overflow-y: hidden;
2255
2444
  -ms-overflow-style: -ms-autohiding-scrollbar;
2256
- border: 1px solid #464545;
2445
+ border: 1px solid #ecf0f1;
2257
2446
  }
2258
2447
  .table-responsive > .table {
2259
2448
  margin-bottom: 0;
@@ -2305,7 +2494,7 @@ legend {
2305
2494
  margin-bottom: 21px;
2306
2495
  font-size: 22.5px;
2307
2496
  line-height: inherit;
2308
- color: #ffffff;
2497
+ color: #2c3e50;
2309
2498
  border: 0;
2310
2499
  border-bottom: 1px solid transparent;
2311
2500
  }
@@ -2349,7 +2538,7 @@ output {
2349
2538
  padding-top: 11px;
2350
2539
  font-size: 15px;
2351
2540
  line-height: 1.42857143;
2352
- color: #464545;
2541
+ color: #2c3e50;
2353
2542
  }
2354
2543
  .form-control {
2355
2544
  display: block;
@@ -2358,10 +2547,10 @@ output {
2358
2547
  padding: 10px 15px;
2359
2548
  font-size: 15px;
2360
2549
  line-height: 1.42857143;
2361
- color: #464545;
2550
+ color: #2c3e50;
2362
2551
  background-color: #ffffff;
2363
2552
  background-image: none;
2364
- border: 1px solid #f1f1f1;
2553
+ border: 1px solid #dce4ec;
2365
2554
  border-radius: 4px;
2366
2555
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2367
2556
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
@@ -2370,28 +2559,31 @@ output {
2370
2559
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2371
2560
  }
2372
2561
  .form-control:focus {
2373
- border-color: #ffffff;
2562
+ border-color: #2c3e50;
2374
2563
  outline: 0;
2375
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);
2376
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);
2564
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 62, 80, 0.6);
2565
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 62, 80, 0.6);
2377
2566
  }
2378
2567
  .form-control::-moz-placeholder {
2379
- color: #999999;
2568
+ color: #acb6c0;
2380
2569
  opacity: 1;
2381
2570
  }
2382
2571
  .form-control:-ms-input-placeholder {
2383
- color: #999999;
2572
+ color: #acb6c0;
2384
2573
  }
2385
2574
  .form-control::-webkit-input-placeholder {
2386
- color: #999999;
2575
+ color: #acb6c0;
2387
2576
  }
2388
2577
  .form-control[disabled],
2389
2578
  .form-control[readonly],
2390
2579
  fieldset[disabled] .form-control {
2391
- cursor: not-allowed;
2392
- background-color: #ebebeb;
2580
+ background-color: #ecf0f1;
2393
2581
  opacity: 1;
2394
2582
  }
2583
+ .form-control[disabled],
2584
+ fieldset[disabled] .form-control {
2585
+ cursor: not-allowed;
2586
+ }
2395
2587
  textarea.form-control {
2396
2588
  height: auto;
2397
2589
  }
@@ -2408,13 +2600,21 @@ input[type="search"] {
2408
2600
  input[type="date"].input-sm,
2409
2601
  input[type="time"].input-sm,
2410
2602
  input[type="datetime-local"].input-sm,
2411
- input[type="month"].input-sm {
2603
+ input[type="month"].input-sm,
2604
+ .input-group-sm input[type="date"],
2605
+ .input-group-sm input[type="time"],
2606
+ .input-group-sm input[type="datetime-local"],
2607
+ .input-group-sm input[type="month"] {
2412
2608
  line-height: 33px;
2413
2609
  }
2414
2610
  input[type="date"].input-lg,
2415
2611
  input[type="time"].input-lg,
2416
2612
  input[type="datetime-local"].input-lg,
2417
- input[type="month"].input-lg {
2613
+ input[type="month"].input-lg,
2614
+ .input-group-lg input[type="date"],
2615
+ .input-group-lg input[type="time"],
2616
+ .input-group-lg input[type="datetime-local"],
2617
+ .input-group-lg input[type="month"] {
2418
2618
  line-height: 64px;
2419
2619
  }
2420
2620
  }
@@ -2450,6 +2650,7 @@ input[type="search"] {
2450
2650
  }
2451
2651
  .radio-inline,
2452
2652
  .checkbox-inline {
2653
+ position: relative;
2453
2654
  display: inline-block;
2454
2655
  padding-left: 20px;
2455
2656
  margin-bottom: 0;
@@ -2486,13 +2687,28 @@ fieldset[disabled] .checkbox label {
2486
2687
  padding-top: 11px;
2487
2688
  padding-bottom: 11px;
2488
2689
  margin-bottom: 0;
2690
+ min-height: 36px;
2489
2691
  }
2490
2692
  .form-control-static.input-lg,
2491
2693
  .form-control-static.input-sm {
2492
2694
  padding-left: 0;
2493
2695
  padding-right: 0;
2494
2696
  }
2495
- .input-sm,
2697
+ .input-sm {
2698
+ height: 33px;
2699
+ padding: 6px 9px;
2700
+ font-size: 13px;
2701
+ line-height: 1.5;
2702
+ border-radius: 3px;
2703
+ }
2704
+ select.input-sm {
2705
+ height: 33px;
2706
+ line-height: 33px;
2707
+ }
2708
+ textarea.input-sm,
2709
+ select[multiple].input-sm {
2710
+ height: auto;
2711
+ }
2496
2712
  .form-group-sm .form-control {
2497
2713
  height: 33px;
2498
2714
  padding: 6px 9px;
@@ -2500,36 +2716,58 @@ fieldset[disabled] .checkbox label {
2500
2716
  line-height: 1.5;
2501
2717
  border-radius: 3px;
2502
2718
  }
2503
- select.input-sm,
2504
2719
  select.form-group-sm .form-control {
2505
2720
  height: 33px;
2506
2721
  line-height: 33px;
2507
2722
  }
2508
- textarea.input-sm,
2509
2723
  textarea.form-group-sm .form-control,
2510
- select[multiple].input-sm,
2511
2724
  select[multiple].form-group-sm .form-control {
2512
2725
  height: auto;
2513
2726
  }
2514
- .input-lg,
2727
+ .form-group-sm .form-control-static {
2728
+ height: 33px;
2729
+ padding: 6px 9px;
2730
+ font-size: 13px;
2731
+ line-height: 1.5;
2732
+ min-height: 34px;
2733
+ }
2734
+ .input-lg {
2735
+ height: 64px;
2736
+ padding: 18px 27px;
2737
+ font-size: 19px;
2738
+ line-height: 1.3333333;
2739
+ border-radius: 6px;
2740
+ }
2741
+ select.input-lg {
2742
+ height: 64px;
2743
+ line-height: 64px;
2744
+ }
2745
+ textarea.input-lg,
2746
+ select[multiple].input-lg {
2747
+ height: auto;
2748
+ }
2515
2749
  .form-group-lg .form-control {
2516
2750
  height: 64px;
2517
2751
  padding: 18px 27px;
2518
2752
  font-size: 19px;
2519
- line-height: 1.33;
2753
+ line-height: 1.3333333;
2520
2754
  border-radius: 6px;
2521
2755
  }
2522
- select.input-lg,
2523
2756
  select.form-group-lg .form-control {
2524
2757
  height: 64px;
2525
2758
  line-height: 64px;
2526
2759
  }
2527
- textarea.input-lg,
2528
2760
  textarea.form-group-lg .form-control,
2529
- select[multiple].input-lg,
2530
2761
  select[multiple].form-group-lg .form-control {
2531
2762
  height: auto;
2532
2763
  }
2764
+ .form-group-lg .form-control-static {
2765
+ height: 64px;
2766
+ padding: 18px 27px;
2767
+ font-size: 19px;
2768
+ line-height: 1.3333333;
2769
+ min-height: 40px;
2770
+ }
2533
2771
  .has-feedback {
2534
2772
  position: relative;
2535
2773
  }
@@ -2583,7 +2821,7 @@ select[multiple].form-group-lg .form-control {
2583
2821
  .has-success .input-group-addon {
2584
2822
  color: #ffffff;
2585
2823
  border-color: #ffffff;
2586
- background-color: #00bc8c;
2824
+ background-color: #18bc9c;
2587
2825
  }
2588
2826
  .has-success .form-control-feedback {
2589
2827
  color: #ffffff;
@@ -2658,7 +2896,7 @@ select[multiple].form-group-lg .form-control {
2658
2896
  display: block;
2659
2897
  margin-top: 5px;
2660
2898
  margin-bottom: 10px;
2661
- color: #ffffff;
2899
+ color: #597ea2;
2662
2900
  }
2663
2901
  @media (min-width: 768px) {
2664
2902
  .form-inline .form-group {
@@ -2738,7 +2976,7 @@ select[multiple].form-group-lg .form-control {
2738
2976
  }
2739
2977
  @media (min-width: 768px) {
2740
2978
  .form-horizontal .form-group-lg .control-label {
2741
- padding-top: 24.94px;
2979
+ padding-top: 24.9999994px;
2742
2980
  }
2743
2981
  }
2744
2982
  @media (min-width: 768px) {
@@ -2802,8 +3040,8 @@ fieldset[disabled] .btn {
2802
3040
  }
2803
3041
  .btn-default {
2804
3042
  color: #ffffff;
2805
- background-color: #464545;
2806
- border-color: #464545;
3043
+ background-color: #95a5a6;
3044
+ border-color: #95a5a6;
2807
3045
  }
2808
3046
  .btn-default:hover,
2809
3047
  .btn-default:focus,
@@ -2812,8 +3050,8 @@ fieldset[disabled] .btn {
2812
3050
  .btn-default.active,
2813
3051
  .open > .dropdown-toggle.btn-default {
2814
3052
  color: #ffffff;
2815
- background-color: #2c2c2c;
2816
- border-color: #272727;
3053
+ background-color: #798d8f;
3054
+ border-color: #74898a;
2817
3055
  }
2818
3056
  .btn-default:active,
2819
3057
  .btn-default.active,
@@ -2838,17 +3076,17 @@ fieldset[disabled] .btn-default:active,
2838
3076
  .btn-default.disabled.active,
2839
3077
  .btn-default[disabled].active,
2840
3078
  fieldset[disabled] .btn-default.active {
2841
- background-color: #464545;
2842
- border-color: #464545;
3079
+ background-color: #95a5a6;
3080
+ border-color: #95a5a6;
2843
3081
  }
2844
3082
  .btn-default .badge {
2845
- color: #464545;
3083
+ color: #95a5a6;
2846
3084
  background-color: #ffffff;
2847
3085
  }
2848
3086
  .btn-primary {
2849
3087
  color: #ffffff;
2850
- background-color: #375a7f;
2851
- border-color: #375a7f;
3088
+ background-color: #2c3e50;
3089
+ border-color: #2c3e50;
2852
3090
  }
2853
3091
  .btn-primary:hover,
2854
3092
  .btn-primary:focus,
@@ -2857,8 +3095,8 @@ fieldset[disabled] .btn-default.active {
2857
3095
  .btn-primary.active,
2858
3096
  .open > .dropdown-toggle.btn-primary {
2859
3097
  color: #ffffff;
2860
- background-color: #28415b;
2861
- border-color: #253c54;
3098
+ background-color: #1a242f;
3099
+ border-color: #161f29;
2862
3100
  }
2863
3101
  .btn-primary:active,
2864
3102
  .btn-primary.active,
@@ -2883,17 +3121,17 @@ fieldset[disabled] .btn-primary:active,
2883
3121
  .btn-primary.disabled.active,
2884
3122
  .btn-primary[disabled].active,
2885
3123
  fieldset[disabled] .btn-primary.active {
2886
- background-color: #375a7f;
2887
- border-color: #375a7f;
3124
+ background-color: #2c3e50;
3125
+ border-color: #2c3e50;
2888
3126
  }
2889
3127
  .btn-primary .badge {
2890
- color: #375a7f;
3128
+ color: #2c3e50;
2891
3129
  background-color: #ffffff;
2892
3130
  }
2893
3131
  .btn-success {
2894
3132
  color: #ffffff;
2895
- background-color: #00bc8c;
2896
- border-color: #00bc8c;
3133
+ background-color: #18bc9c;
3134
+ border-color: #18bc9c;
2897
3135
  }
2898
3136
  .btn-success:hover,
2899
3137
  .btn-success:focus,
@@ -2902,8 +3140,8 @@ fieldset[disabled] .btn-primary.active {
2902
3140
  .btn-success.active,
2903
3141
  .open > .dropdown-toggle.btn-success {
2904
3142
  color: #ffffff;
2905
- background-color: #008966;
2906
- border-color: #007f5e;
3143
+ background-color: #128f76;
3144
+ border-color: #11866f;
2907
3145
  }
2908
3146
  .btn-success:active,
2909
3147
  .btn-success.active,
@@ -2928,11 +3166,11 @@ fieldset[disabled] .btn-success:active,
2928
3166
  .btn-success.disabled.active,
2929
3167
  .btn-success[disabled].active,
2930
3168
  fieldset[disabled] .btn-success.active {
2931
- background-color: #00bc8c;
2932
- border-color: #00bc8c;
3169
+ background-color: #18bc9c;
3170
+ border-color: #18bc9c;
2933
3171
  }
2934
3172
  .btn-success .badge {
2935
- color: #00bc8c;
3173
+ color: #18bc9c;
2936
3174
  background-color: #ffffff;
2937
3175
  }
2938
3176
  .btn-info {
@@ -3071,7 +3309,7 @@ fieldset[disabled] .btn-danger.active {
3071
3309
  background-color: #ffffff;
3072
3310
  }
3073
3311
  .btn-link {
3074
- color: #0ce3ac;
3312
+ color: #18bc9c;
3075
3313
  font-weight: normal;
3076
3314
  border-radius: 0;
3077
3315
  }
@@ -3092,7 +3330,7 @@ fieldset[disabled] .btn-link {
3092
3330
  }
3093
3331
  .btn-link:hover,
3094
3332
  .btn-link:focus {
3095
- color: #0ce3ac;
3333
+ color: #18bc9c;
3096
3334
  text-decoration: underline;
3097
3335
  background-color: transparent;
3098
3336
  }
@@ -3100,14 +3338,14 @@ fieldset[disabled] .btn-link {
3100
3338
  fieldset[disabled] .btn-link:hover,
3101
3339
  .btn-link[disabled]:focus,
3102
3340
  fieldset[disabled] .btn-link:focus {
3103
- color: #999999;
3341
+ color: #b4bcc2;
3104
3342
  text-decoration: none;
3105
3343
  }
3106
3344
  .btn-lg,
3107
3345
  .btn-group-lg > .btn {
3108
3346
  padding: 18px 27px;
3109
3347
  font-size: 19px;
3110
- line-height: 1.33;
3348
+ line-height: 1.3333333;
3111
3349
  border-radius: 6px;
3112
3350
  }
3113
3351
  .btn-sm,
@@ -3147,11 +3385,9 @@ input[type="button"].btn-block {
3147
3385
  }
3148
3386
  .collapse {
3149
3387
  display: none;
3150
- visibility: hidden;
3151
3388
  }
3152
3389
  .collapse.in {
3153
3390
  display: block;
3154
- visibility: visible;
3155
3391
  }
3156
3392
  tr.collapse.in {
3157
3393
  display: table-row;
@@ -3179,10 +3415,11 @@ tbody.collapse.in {
3179
3415
  height: 0;
3180
3416
  margin-left: 2px;
3181
3417
  vertical-align: middle;
3182
- border-top: 4px solid;
3418
+ border-top: 4px dashed;
3183
3419
  border-right: 4px solid transparent;
3184
3420
  border-left: 4px solid transparent;
3185
3421
  }
3422
+ .dropup,
3186
3423
  .dropdown {
3187
3424
  position: relative;
3188
3425
  }
@@ -3227,14 +3464,14 @@ tbody.collapse.in {
3227
3464
  clear: both;
3228
3465
  font-weight: normal;
3229
3466
  line-height: 1.42857143;
3230
- color: #375a7f;
3467
+ color: #7b8a8b;
3231
3468
  white-space: nowrap;
3232
3469
  }
3233
3470
  .dropdown-menu > li > a:hover,
3234
3471
  .dropdown-menu > li > a:focus {
3235
3472
  text-decoration: none;
3236
3473
  color: #ffffff;
3237
- background-color: #00bc8c;
3474
+ background-color: #2c3e50;
3238
3475
  }
3239
3476
  .dropdown-menu > .active > a,
3240
3477
  .dropdown-menu > .active > a:hover,
@@ -3242,12 +3479,12 @@ tbody.collapse.in {
3242
3479
  color: #ffffff;
3243
3480
  text-decoration: none;
3244
3481
  outline: 0;
3245
- background-color: #00bc8c;
3482
+ background-color: #2c3e50;
3246
3483
  }
3247
3484
  .dropdown-menu > .disabled > a,
3248
3485
  .dropdown-menu > .disabled > a:hover,
3249
3486
  .dropdown-menu > .disabled > a:focus {
3250
- color: #999999;
3487
+ color: #b4bcc2;
3251
3488
  }
3252
3489
  .dropdown-menu > .disabled > a:hover,
3253
3490
  .dropdown-menu > .disabled > a:focus {
@@ -3276,7 +3513,7 @@ tbody.collapse.in {
3276
3513
  padding: 3px 20px;
3277
3514
  font-size: 13px;
3278
3515
  line-height: 1.42857143;
3279
- color: #999999;
3516
+ color: #b4bcc2;
3280
3517
  white-space: nowrap;
3281
3518
  }
3282
3519
  .dropdown-backdrop {
@@ -3301,7 +3538,7 @@ tbody.collapse.in {
3301
3538
  .navbar-fixed-bottom .dropdown .dropdown-menu {
3302
3539
  top: auto;
3303
3540
  bottom: 100%;
3304
- margin-bottom: 1px;
3541
+ margin-bottom: 2px;
3305
3542
  }
3306
3543
  @media (min-width: 768px) {
3307
3544
  .navbar-right .dropdown-menu {
@@ -3373,12 +3610,12 @@ tbody.collapse.in {
3373
3610
  .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3374
3611
  border-radius: 0;
3375
3612
  }
3376
- .btn-group > .btn-group:first-child > .btn:last-child,
3377
- .btn-group > .btn-group:first-child > .dropdown-toggle {
3613
+ .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3614
+ .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3378
3615
  border-bottom-right-radius: 0;
3379
3616
  border-top-right-radius: 0;
3380
3617
  }
3381
- .btn-group > .btn-group:last-child > .btn:first-child {
3618
+ .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3382
3619
  border-bottom-left-radius: 0;
3383
3620
  border-top-left-radius: 0;
3384
3621
  }
@@ -3504,7 +3741,7 @@ tbody.collapse.in {
3504
3741
  height: 64px;
3505
3742
  padding: 18px 27px;
3506
3743
  font-size: 19px;
3507
- line-height: 1.33;
3744
+ line-height: 1.3333333;
3508
3745
  border-radius: 6px;
3509
3746
  }
3510
3747
  select.input-group-lg > .form-control,
@@ -3565,10 +3802,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3565
3802
  font-size: 15px;
3566
3803
  font-weight: normal;
3567
3804
  line-height: 1;
3568
- color: #464545;
3805
+ color: #2c3e50;
3569
3806
  text-align: center;
3570
- background-color: #464545;
3571
- border: 1px solid transparent;
3807
+ background-color: #ecf0f1;
3808
+ border: 1px solid #dce4ec;
3572
3809
  border-radius: 4px;
3573
3810
  }
3574
3811
  .input-group-addon.input-sm {
@@ -3652,14 +3889,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3652
3889
  .nav > li > a:hover,
3653
3890
  .nav > li > a:focus {
3654
3891
  text-decoration: none;
3655
- background-color: #303030;
3892
+ background-color: #ecf0f1;
3656
3893
  }
3657
3894
  .nav > li.disabled > a {
3658
- color: #605e5e;
3895
+ color: #b4bcc2;
3659
3896
  }
3660
3897
  .nav > li.disabled > a:hover,
3661
3898
  .nav > li.disabled > a:focus {
3662
- color: #605e5e;
3899
+ color: #b4bcc2;
3663
3900
  text-decoration: none;
3664
3901
  background-color: transparent;
3665
3902
  cursor: not-allowed;
@@ -3667,8 +3904,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3667
3904
  .nav .open > a,
3668
3905
  .nav .open > a:hover,
3669
3906
  .nav .open > a:focus {
3670
- background-color: #303030;
3671
- border-color: #0ce3ac;
3907
+ background-color: #ecf0f1;
3908
+ border-color: #18bc9c;
3672
3909
  }
3673
3910
  .nav .nav-divider {
3674
3911
  height: 1px;
@@ -3680,7 +3917,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3680
3917
  max-width: none;
3681
3918
  }
3682
3919
  .nav-tabs {
3683
- border-bottom: 1px solid #464545;
3920
+ border-bottom: 1px solid #ecf0f1;
3684
3921
  }
3685
3922
  .nav-tabs > li {
3686
3923
  float: left;
@@ -3693,14 +3930,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3693
3930
  border-radius: 4px 4px 0 0;
3694
3931
  }
3695
3932
  .nav-tabs > li > a:hover {
3696
- border-color: #464545 #464545 #464545;
3933
+ border-color: #ecf0f1 #ecf0f1 #ecf0f1;
3697
3934
  }
3698
3935
  .nav-tabs > li.active > a,
3699
3936
  .nav-tabs > li.active > a:hover,
3700
3937
  .nav-tabs > li.active > a:focus {
3701
- color: #00bc8c;
3702
- background-color: #222222;
3703
- border: 1px solid #464545;
3938
+ color: #2c3e50;
3939
+ background-color: #ffffff;
3940
+ border: 1px solid #ecf0f1;
3704
3941
  border-bottom-color: transparent;
3705
3942
  cursor: default;
3706
3943
  }
@@ -3735,17 +3972,17 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3735
3972
  .nav-tabs.nav-justified > .active > a,
3736
3973
  .nav-tabs.nav-justified > .active > a:hover,
3737
3974
  .nav-tabs.nav-justified > .active > a:focus {
3738
- border: 1px solid #ebebeb;
3975
+ border: 1px solid #ecf0f1;
3739
3976
  }
3740
3977
  @media (min-width: 768px) {
3741
3978
  .nav-tabs.nav-justified > li > a {
3742
- border-bottom: 1px solid #ebebeb;
3979
+ border-bottom: 1px solid #ecf0f1;
3743
3980
  border-radius: 4px 4px 0 0;
3744
3981
  }
3745
3982
  .nav-tabs.nav-justified > .active > a,
3746
3983
  .nav-tabs.nav-justified > .active > a:hover,
3747
3984
  .nav-tabs.nav-justified > .active > a:focus {
3748
- border-bottom-color: #222222;
3985
+ border-bottom-color: #ffffff;
3749
3986
  }
3750
3987
  }
3751
3988
  .nav-pills > li {
@@ -3761,7 +3998,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3761
3998
  .nav-pills > li.active > a:hover,
3762
3999
  .nav-pills > li.active > a:focus {
3763
4000
  color: #ffffff;
3764
- background-color: #00bc8c;
4001
+ background-color: #2c3e50;
3765
4002
  }
3766
4003
  .nav-stacked > li {
3767
4004
  float: none;
@@ -3803,26 +4040,24 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3803
4040
  .nav-tabs-justified > .active > a,
3804
4041
  .nav-tabs-justified > .active > a:hover,
3805
4042
  .nav-tabs-justified > .active > a:focus {
3806
- border: 1px solid #ebebeb;
4043
+ border: 1px solid #ecf0f1;
3807
4044
  }
3808
4045
  @media (min-width: 768px) {
3809
4046
  .nav-tabs-justified > li > a {
3810
- border-bottom: 1px solid #ebebeb;
4047
+ border-bottom: 1px solid #ecf0f1;
3811
4048
  border-radius: 4px 4px 0 0;
3812
4049
  }
3813
4050
  .nav-tabs-justified > .active > a,
3814
4051
  .nav-tabs-justified > .active > a:hover,
3815
4052
  .nav-tabs-justified > .active > a:focus {
3816
- border-bottom-color: #222222;
4053
+ border-bottom-color: #ffffff;
3817
4054
  }
3818
4055
  }
3819
4056
  .tab-content > .tab-pane {
3820
4057
  display: none;
3821
- visibility: hidden;
3822
4058
  }
3823
4059
  .tab-content > .active {
3824
4060
  display: block;
3825
- visibility: visible;
3826
4061
  }
3827
4062
  .nav-tabs .dropdown-menu {
3828
4063
  margin-top: -1px;
@@ -3866,7 +4101,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3866
4101
  }
3867
4102
  .navbar-collapse.collapse {
3868
4103
  display: block !important;
3869
- visibility: visible !important;
3870
4104
  height: auto !important;
3871
4105
  padding-bottom: 0;
3872
4106
  overflow: visible !important;
@@ -4118,6 +4352,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4118
4352
  border-top-left-radius: 0;
4119
4353
  }
4120
4354
  .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4355
+ margin-bottom: 0;
4121
4356
  border-top-right-radius: 4px;
4122
4357
  border-top-left-radius: 4px;
4123
4358
  border-bottom-right-radius: 0;
@@ -4159,7 +4394,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4159
4394
  }
4160
4395
  }
4161
4396
  .navbar-default {
4162
- background-color: #375a7f;
4397
+ background-color: #2c3e50;
4163
4398
  border-color: transparent;
4164
4399
  }
4165
4400
  .navbar-default .navbar-brand {
@@ -4167,7 +4402,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4167
4402
  }
4168
4403
  .navbar-default .navbar-brand:hover,
4169
4404
  .navbar-default .navbar-brand:focus {
4170
- color: #00bc8c;
4405
+ color: #18bc9c;
4171
4406
  background-color: transparent;
4172
4407
  }
4173
4408
  .navbar-default .navbar-text {
@@ -4178,14 +4413,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4178
4413
  }
4179
4414
  .navbar-default .navbar-nav > li > a:hover,
4180
4415
  .navbar-default .navbar-nav > li > a:focus {
4181
- color: #00bc8c;
4416
+ color: #18bc9c;
4182
4417
  background-color: transparent;
4183
4418
  }
4184
4419
  .navbar-default .navbar-nav > .active > a,
4185
4420
  .navbar-default .navbar-nav > .active > a:hover,
4186
4421
  .navbar-default .navbar-nav > .active > a:focus {
4187
4422
  color: #ffffff;
4188
- background-color: #28415b;
4423
+ background-color: #1a242f;
4189
4424
  }
4190
4425
  .navbar-default .navbar-nav > .disabled > a,
4191
4426
  .navbar-default .navbar-nav > .disabled > a:hover,
@@ -4194,11 +4429,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4194
4429
  background-color: transparent;
4195
4430
  }
4196
4431
  .navbar-default .navbar-toggle {
4197
- border-color: #28415b;
4432
+ border-color: #1a242f;
4198
4433
  }
4199
4434
  .navbar-default .navbar-toggle:hover,
4200
4435
  .navbar-default .navbar-toggle:focus {
4201
- background-color: #28415b;
4436
+ background-color: #1a242f;
4202
4437
  }
4203
4438
  .navbar-default .navbar-toggle .icon-bar {
4204
4439
  background-color: #ffffff;
@@ -4210,7 +4445,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4210
4445
  .navbar-default .navbar-nav > .open > a,
4211
4446
  .navbar-default .navbar-nav > .open > a:hover,
4212
4447
  .navbar-default .navbar-nav > .open > a:focus {
4213
- background-color: #28415b;
4448
+ background-color: #1a242f;
4214
4449
  color: #ffffff;
4215
4450
  }
4216
4451
  @media (max-width: 767px) {
@@ -4219,14 +4454,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4219
4454
  }
4220
4455
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
4221
4456
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
4222
- color: #00bc8c;
4457
+ color: #18bc9c;
4223
4458
  background-color: transparent;
4224
4459
  }
4225
4460
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4226
4461
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4227
4462
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4228
4463
  color: #ffffff;
4229
- background-color: #28415b;
4464
+ background-color: #1a242f;
4230
4465
  }
4231
4466
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4232
4467
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
@@ -4239,14 +4474,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4239
4474
  color: #ffffff;
4240
4475
  }
4241
4476
  .navbar-default .navbar-link:hover {
4242
- color: #00bc8c;
4477
+ color: #18bc9c;
4243
4478
  }
4244
4479
  .navbar-default .btn-link {
4245
4480
  color: #ffffff;
4246
4481
  }
4247
4482
  .navbar-default .btn-link:hover,
4248
4483
  .navbar-default .btn-link:focus {
4249
- color: #00bc8c;
4484
+ color: #18bc9c;
4250
4485
  }
4251
4486
  .navbar-default .btn-link[disabled]:hover,
4252
4487
  fieldset[disabled] .navbar-default .btn-link:hover,
@@ -4255,7 +4490,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4255
4490
  color: #cccccc;
4256
4491
  }
4257
4492
  .navbar-inverse {
4258
- background-color: #00bc8c;
4493
+ background-color: #18bc9c;
4259
4494
  border-color: transparent;
4260
4495
  }
4261
4496
  .navbar-inverse .navbar-brand {
@@ -4263,7 +4498,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4263
4498
  }
4264
4499
  .navbar-inverse .navbar-brand:hover,
4265
4500
  .navbar-inverse .navbar-brand:focus {
4266
- color: #375a7f;
4501
+ color: #2c3e50;
4267
4502
  background-color: transparent;
4268
4503
  }
4269
4504
  .navbar-inverse .navbar-text {
@@ -4274,39 +4509,39 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4274
4509
  }
4275
4510
  .navbar-inverse .navbar-nav > li > a:hover,
4276
4511
  .navbar-inverse .navbar-nav > li > a:focus {
4277
- color: #375a7f;
4512
+ color: #2c3e50;
4278
4513
  background-color: transparent;
4279
4514
  }
4280
4515
  .navbar-inverse .navbar-nav > .active > a,
4281
4516
  .navbar-inverse .navbar-nav > .active > a:hover,
4282
4517
  .navbar-inverse .navbar-nav > .active > a:focus {
4283
4518
  color: #ffffff;
4284
- background-color: #00a379;
4519
+ background-color: #15a589;
4285
4520
  }
4286
4521
  .navbar-inverse .navbar-nav > .disabled > a,
4287
4522
  .navbar-inverse .navbar-nav > .disabled > a:hover,
4288
4523
  .navbar-inverse .navbar-nav > .disabled > a:focus {
4289
- color: #aaaaaa;
4524
+ color: #cccccc;
4290
4525
  background-color: transparent;
4291
4526
  }
4292
4527
  .navbar-inverse .navbar-toggle {
4293
- border-color: #008966;
4528
+ border-color: #128f76;
4294
4529
  }
4295
4530
  .navbar-inverse .navbar-toggle:hover,
4296
4531
  .navbar-inverse .navbar-toggle:focus {
4297
- background-color: #008966;
4532
+ background-color: #128f76;
4298
4533
  }
4299
4534
  .navbar-inverse .navbar-toggle .icon-bar {
4300
4535
  background-color: #ffffff;
4301
4536
  }
4302
4537
  .navbar-inverse .navbar-collapse,
4303
4538
  .navbar-inverse .navbar-form {
4304
- border-color: #009871;
4539
+ border-color: #149c82;
4305
4540
  }
4306
4541
  .navbar-inverse .navbar-nav > .open > a,
4307
4542
  .navbar-inverse .navbar-nav > .open > a:hover,
4308
4543
  .navbar-inverse .navbar-nav > .open > a:focus {
4309
- background-color: #00a379;
4544
+ background-color: #15a589;
4310
4545
  color: #ffffff;
4311
4546
  }
4312
4547
  @media (max-width: 767px) {
@@ -4321,19 +4556,19 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4321
4556
  }
4322
4557
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4323
4558
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4324
- color: #375a7f;
4559
+ color: #2c3e50;
4325
4560
  background-color: transparent;
4326
4561
  }
4327
4562
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4328
4563
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4329
4564
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4330
4565
  color: #ffffff;
4331
- background-color: #00a379;
4566
+ background-color: #15a589;
4332
4567
  }
4333
4568
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4334
4569
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4335
4570
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4336
- color: #aaaaaa;
4571
+ color: #cccccc;
4337
4572
  background-color: transparent;
4338
4573
  }
4339
4574
  }
@@ -4341,26 +4576,26 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4341
4576
  color: #ffffff;
4342
4577
  }
4343
4578
  .navbar-inverse .navbar-link:hover {
4344
- color: #375a7f;
4579
+ color: #2c3e50;
4345
4580
  }
4346
4581
  .navbar-inverse .btn-link {
4347
4582
  color: #ffffff;
4348
4583
  }
4349
4584
  .navbar-inverse .btn-link:hover,
4350
4585
  .navbar-inverse .btn-link:focus {
4351
- color: #375a7f;
4586
+ color: #2c3e50;
4352
4587
  }
4353
4588
  .navbar-inverse .btn-link[disabled]:hover,
4354
4589
  fieldset[disabled] .navbar-inverse .btn-link:hover,
4355
4590
  .navbar-inverse .btn-link[disabled]:focus,
4356
4591
  fieldset[disabled] .navbar-inverse .btn-link:focus {
4357
- color: #aaaaaa;
4592
+ color: #cccccc;
4358
4593
  }
4359
4594
  .breadcrumb {
4360
4595
  padding: 8px 15px;
4361
4596
  margin-bottom: 21px;
4362
4597
  list-style: none;
4363
- background-color: #464545;
4598
+ background-color: #ecf0f1;
4364
4599
  border-radius: 4px;
4365
4600
  }
4366
4601
  .breadcrumb > li {
@@ -4369,10 +4604,10 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4369
4604
  .breadcrumb > li + li:before {
4370
4605
  content: "/\00a0";
4371
4606
  padding: 0 5px;
4372
- color: #ffffff;
4607
+ color: #cccccc;
4373
4608
  }
4374
4609
  .breadcrumb > .active {
4375
- color: #999999;
4610
+ color: #95a5a6;
4376
4611
  }
4377
4612
  .pagination {
4378
4613
  display: inline-block;
@@ -4391,7 +4626,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4391
4626
  line-height: 1.42857143;
4392
4627
  text-decoration: none;
4393
4628
  color: #ffffff;
4394
- background-color: #00bc8c;
4629
+ background-color: #18bc9c;
4395
4630
  border: 1px solid transparent;
4396
4631
  margin-left: -1px;
4397
4632
  }
@@ -4411,7 +4646,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4411
4646
  .pagination > li > a:focus,
4412
4647
  .pagination > li > span:focus {
4413
4648
  color: #ffffff;
4414
- background-color: #00dba3;
4649
+ background-color: #0f7864;
4415
4650
  border-color: transparent;
4416
4651
  }
4417
4652
  .pagination > .active > a,
@@ -4422,7 +4657,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4422
4657
  .pagination > .active > span:focus {
4423
4658
  z-index: 2;
4424
4659
  color: #ffffff;
4425
- background-color: #00dba3;
4660
+ background-color: #0f7864;
4426
4661
  border-color: transparent;
4427
4662
  cursor: default;
4428
4663
  }
@@ -4432,8 +4667,8 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4432
4667
  .pagination > .disabled > a,
4433
4668
  .pagination > .disabled > a:hover,
4434
4669
  .pagination > .disabled > a:focus {
4435
- color: #ffffff;
4436
- background-color: #007053;
4670
+ color: #ecf0f1;
4671
+ background-color: #3be6c4;
4437
4672
  border-color: transparent;
4438
4673
  cursor: not-allowed;
4439
4674
  }
@@ -4480,14 +4715,14 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4480
4715
  .pager li > span {
4481
4716
  display: inline-block;
4482
4717
  padding: 5px 14px;
4483
- background-color: #00bc8c;
4718
+ background-color: #18bc9c;
4484
4719
  border: 1px solid transparent;
4485
4720
  border-radius: 15px;
4486
4721
  }
4487
4722
  .pager li > a:hover,
4488
4723
  .pager li > a:focus {
4489
4724
  text-decoration: none;
4490
- background-color: #00dba3;
4725
+ background-color: #0f7864;
4491
4726
  }
4492
4727
  .pager .next > a,
4493
4728
  .pager .next > span {
@@ -4501,8 +4736,8 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4501
4736
  .pager .disabled > a:hover,
4502
4737
  .pager .disabled > a:focus,
4503
4738
  .pager .disabled > span {
4504
- color: #dddddd;
4505
- background-color: #00bc8c;
4739
+ color: #ffffff;
4740
+ background-color: #18bc9c;
4506
4741
  cursor: not-allowed;
4507
4742
  }
4508
4743
  .label {
@@ -4531,25 +4766,25 @@ a.label:focus {
4531
4766
  top: -1px;
4532
4767
  }
4533
4768
  .label-default {
4534
- background-color: #464545;
4769
+ background-color: #95a5a6;
4535
4770
  }
4536
4771
  .label-default[href]:hover,
4537
4772
  .label-default[href]:focus {
4538
- background-color: #2c2c2c;
4773
+ background-color: #798d8f;
4539
4774
  }
4540
4775
  .label-primary {
4541
- background-color: #375a7f;
4776
+ background-color: #2c3e50;
4542
4777
  }
4543
4778
  .label-primary[href]:hover,
4544
4779
  .label-primary[href]:focus {
4545
- background-color: #28415b;
4780
+ background-color: #1a242f;
4546
4781
  }
4547
4782
  .label-success {
4548
- background-color: #00bc8c;
4783
+ background-color: #18bc9c;
4549
4784
  }
4550
4785
  .label-success[href]:hover,
4551
4786
  .label-success[href]:focus {
4552
- background-color: #008966;
4787
+ background-color: #128f76;
4553
4788
  }
4554
4789
  .label-info {
4555
4790
  background-color: #3498db;
@@ -4583,7 +4818,7 @@ a.label:focus {
4583
4818
  vertical-align: baseline;
4584
4819
  white-space: nowrap;
4585
4820
  text-align: center;
4586
- background-color: #464545;
4821
+ background-color: #2c3e50;
4587
4822
  border-radius: 10px;
4588
4823
  }
4589
4824
  .badge:empty {
@@ -4593,7 +4828,8 @@ a.label:focus {
4593
4828
  position: relative;
4594
4829
  top: -1px;
4595
4830
  }
4596
- .btn-xs .badge {
4831
+ .btn-xs .badge,
4832
+ .btn-group-xs > .btn .badge {
4597
4833
  top: 0;
4598
4834
  padding: 1px 5px;
4599
4835
  }
@@ -4605,7 +4841,7 @@ a.badge:focus {
4605
4841
  }
4606
4842
  .list-group-item.active > .badge,
4607
4843
  .nav-pills > .active > a > .badge {
4608
- color: #375a7f;
4844
+ color: #2c3e50;
4609
4845
  background-color: #ffffff;
4610
4846
  }
4611
4847
  .list-group-item > .badge {
@@ -4621,7 +4857,7 @@ a.badge:focus {
4621
4857
  padding: 30px 15px;
4622
4858
  margin-bottom: 30px;
4623
4859
  color: inherit;
4624
- background-color: #303030;
4860
+ background-color: #ecf0f1;
4625
4861
  }
4626
4862
  .jumbotron h1,
4627
4863
  .jumbotron .h1 {
@@ -4633,7 +4869,7 @@ a.badge:focus {
4633
4869
  font-weight: 200;
4634
4870
  }
4635
4871
  .jumbotron > hr {
4636
- border-top-color: #161616;
4872
+ border-top-color: #cfd9db;
4637
4873
  }
4638
4874
  .container .jumbotron,
4639
4875
  .container-fluid .jumbotron {
@@ -4658,11 +4894,11 @@ a.badge:focus {
4658
4894
  }
4659
4895
  .thumbnail {
4660
4896
  display: block;
4661
- padding: 2px;
4897
+ padding: 4px;
4662
4898
  margin-bottom: 21px;
4663
4899
  line-height: 1.42857143;
4664
- background-color: #222222;
4665
- border: 1px solid #464545;
4900
+ background-color: #ffffff;
4901
+ border: 1px solid #ecf0f1;
4666
4902
  border-radius: 4px;
4667
4903
  -webkit-transition: border 0.2s ease-in-out;
4668
4904
  -o-transition: border 0.2s ease-in-out;
@@ -4676,11 +4912,11 @@ a.badge:focus {
4676
4912
  a.thumbnail:hover,
4677
4913
  a.thumbnail:focus,
4678
4914
  a.thumbnail.active {
4679
- border-color: #0ce3ac;
4915
+ border-color: #18bc9c;
4680
4916
  }
4681
4917
  .thumbnail .caption {
4682
4918
  padding: 9px;
4683
- color: #ffffff;
4919
+ color: #2c3e50;
4684
4920
  }
4685
4921
  .alert {
4686
4922
  padding: 15px;
@@ -4714,12 +4950,12 @@ a.thumbnail.active {
4714
4950
  color: inherit;
4715
4951
  }
4716
4952
  .alert-success {
4717
- background-color: #00bc8c;
4718
- border-color: #00bc8c;
4953
+ background-color: #18bc9c;
4954
+ border-color: #18bc9c;
4719
4955
  color: #ffffff;
4720
4956
  }
4721
4957
  .alert-success hr {
4722
- border-top-color: #00a379;
4958
+ border-top-color: #15a589;
4723
4959
  }
4724
4960
  .alert-success .alert-link {
4725
4961
  color: #e6e6e6;
@@ -4785,7 +5021,7 @@ a.thumbnail.active {
4785
5021
  overflow: hidden;
4786
5022
  height: 21px;
4787
5023
  margin-bottom: 21px;
4788
- background-color: #ebebeb;
5024
+ background-color: #ecf0f1;
4789
5025
  border-radius: 4px;
4790
5026
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4791
5027
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
@@ -4798,7 +5034,7 @@ a.thumbnail.active {
4798
5034
  line-height: 21px;
4799
5035
  color: #ffffff;
4800
5036
  text-align: center;
4801
- background-color: #375a7f;
5037
+ background-color: #2c3e50;
4802
5038
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4803
5039
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4804
5040
  -webkit-transition: width 0.6s ease;
@@ -4820,7 +5056,7 @@ a.thumbnail.active {
4820
5056
  animation: progress-bar-stripes 2s linear infinite;
4821
5057
  }
4822
5058
  .progress-bar-success {
4823
- background-color: #00bc8c;
5059
+ background-color: #18bc9c;
4824
5060
  }
4825
5061
  .progress-striped .progress-bar-success {
4826
5062
  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);
@@ -4857,6 +5093,17 @@ a.thumbnail.active {
4857
5093
  .media:first-child {
4858
5094
  margin-top: 0;
4859
5095
  }
5096
+ .media,
5097
+ .media-body {
5098
+ zoom: 1;
5099
+ overflow: hidden;
5100
+ }
5101
+ .media-body {
5102
+ width: 10000px;
5103
+ }
5104
+ .media-object {
5105
+ display: block;
5106
+ }
4860
5107
  .media-right,
4861
5108
  .media > .pull-right {
4862
5109
  padding-left: 10px;
@@ -4894,8 +5141,8 @@ a.thumbnail.active {
4894
5141
  display: block;
4895
5142
  padding: 10px 15px;
4896
5143
  margin-bottom: -1px;
4897
- background-color: #303030;
4898
- border: 1px solid #464545;
5144
+ background-color: #ffffff;
5145
+ border: 1px solid #ecf0f1;
4899
5146
  }
4900
5147
  .list-group-item:first-child {
4901
5148
  border-top-right-radius: 4px;
@@ -4907,22 +5154,22 @@ a.thumbnail.active {
4907
5154
  border-bottom-left-radius: 4px;
4908
5155
  }
4909
5156
  a.list-group-item {
4910
- color: #0ce3ac;
5157
+ color: #555555;
4911
5158
  }
4912
5159
  a.list-group-item .list-group-item-heading {
4913
- color: #0bcb9a;
5160
+ color: #333333;
4914
5161
  }
4915
5162
  a.list-group-item:hover,
4916
5163
  a.list-group-item:focus {
4917
5164
  text-decoration: none;
4918
- color: #0ce3ac;
4919
- background-color: transparent;
5165
+ color: #555555;
5166
+ background-color: #ecf0f1;
4920
5167
  }
4921
5168
  .list-group-item.disabled,
4922
5169
  .list-group-item.disabled:hover,
4923
5170
  .list-group-item.disabled:focus {
4924
- background-color: #ebebeb;
4925
- color: #999999;
5171
+ background-color: #ecf0f1;
5172
+ color: #b4bcc2;
4926
5173
  cursor: not-allowed;
4927
5174
  }
4928
5175
  .list-group-item.disabled .list-group-item-heading,
@@ -4933,15 +5180,15 @@ a.list-group-item:focus {
4933
5180
  .list-group-item.disabled .list-group-item-text,
4934
5181
  .list-group-item.disabled:hover .list-group-item-text,
4935
5182
  .list-group-item.disabled:focus .list-group-item-text {
4936
- color: #999999;
5183
+ color: #b4bcc2;
4937
5184
  }
4938
5185
  .list-group-item.active,
4939
5186
  .list-group-item.active:hover,
4940
5187
  .list-group-item.active:focus {
4941
5188
  z-index: 2;
4942
5189
  color: #ffffff;
4943
- background-color: #00bc8c;
4944
- border-color: #00bc8c;
5190
+ background-color: #2c3e50;
5191
+ border-color: #2c3e50;
4945
5192
  }
4946
5193
  .list-group-item.active .list-group-item-heading,
4947
5194
  .list-group-item.active:hover .list-group-item-heading,
@@ -4957,11 +5204,11 @@ a.list-group-item:focus {
4957
5204
  .list-group-item.active .list-group-item-text,
4958
5205
  .list-group-item.active:hover .list-group-item-text,
4959
5206
  .list-group-item.active:focus .list-group-item-text {
4960
- color: #89ffe1;
5207
+ color: #8aa4be;
4961
5208
  }
4962
5209
  .list-group-item-success {
4963
5210
  color: #ffffff;
4964
- background-color: #00bc8c;
5211
+ background-color: #18bc9c;
4965
5212
  }
4966
5213
  a.list-group-item-success {
4967
5214
  color: #ffffff;
@@ -4972,7 +5219,7 @@ a.list-group-item-success .list-group-item-heading {
4972
5219
  a.list-group-item-success:hover,
4973
5220
  a.list-group-item-success:focus {
4974
5221
  color: #ffffff;
4975
- background-color: #00a379;
5222
+ background-color: #15a589;
4976
5223
  }
4977
5224
  a.list-group-item-success.active,
4978
5225
  a.list-group-item-success.active:hover,
@@ -5057,7 +5304,7 @@ a.list-group-item-danger.active:focus {
5057
5304
  }
5058
5305
  .panel {
5059
5306
  margin-bottom: 21px;
5060
- background-color: #303030;
5307
+ background-color: #ffffff;
5061
5308
  border: 1px solid transparent;
5062
5309
  border-radius: 4px;
5063
5310
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
@@ -5081,13 +5328,17 @@ a.list-group-item-danger.active:focus {
5081
5328
  font-size: 17px;
5082
5329
  color: inherit;
5083
5330
  }
5084
- .panel-title > a {
5331
+ .panel-title > a,
5332
+ .panel-title > small,
5333
+ .panel-title > .small,
5334
+ .panel-title > small > a,
5335
+ .panel-title > .small > a {
5085
5336
  color: inherit;
5086
5337
  }
5087
5338
  .panel-footer {
5088
5339
  padding: 10px 15px;
5089
- background-color: #464545;
5090
- border-top: 1px solid #464545;
5340
+ background-color: #ecf0f1;
5341
+ border-top: 1px solid #ecf0f1;
5091
5342
  border-bottom-right-radius: 3px;
5092
5343
  border-bottom-left-radius: 3px;
5093
5344
  }
@@ -5197,7 +5448,7 @@ a.list-group-item-danger.active:focus {
5197
5448
  .panel > .panel-body + .table-responsive,
5198
5449
  .panel > .table + .panel-body,
5199
5450
  .panel > .table-responsive + .panel-body {
5200
- border-top: 1px solid #464545;
5451
+ border-top: 1px solid #ecf0f1;
5201
5452
  }
5202
5453
  .panel > .table > tbody:first-child > tr:first-child th,
5203
5454
  .panel > .table > tbody:first-child > tr:first-child td {
@@ -5274,67 +5525,67 @@ a.list-group-item-danger.active:focus {
5274
5525
  }
5275
5526
  .panel-group .panel-heading + .panel-collapse > .panel-body,
5276
5527
  .panel-group .panel-heading + .panel-collapse > .list-group {
5277
- border-top: 1px solid #464545;
5528
+ border-top: 1px solid #ecf0f1;
5278
5529
  }
5279
5530
  .panel-group .panel-footer {
5280
5531
  border-top: 0;
5281
5532
  }
5282
5533
  .panel-group .panel-footer + .panel-collapse .panel-body {
5283
- border-bottom: 1px solid #464545;
5534
+ border-bottom: 1px solid #ecf0f1;
5284
5535
  }
5285
5536
  .panel-default {
5286
- border-color: #464545;
5537
+ border-color: #ecf0f1;
5287
5538
  }
5288
5539
  .panel-default > .panel-heading {
5289
- color: #ffffff;
5290
- background-color: #303030;
5291
- border-color: #464545;
5540
+ color: #2c3e50;
5541
+ background-color: #ecf0f1;
5542
+ border-color: #ecf0f1;
5292
5543
  }
5293
5544
  .panel-default > .panel-heading + .panel-collapse > .panel-body {
5294
- border-top-color: #464545;
5545
+ border-top-color: #ecf0f1;
5295
5546
  }
5296
5547
  .panel-default > .panel-heading .badge {
5297
- color: #303030;
5298
- background-color: #ffffff;
5548
+ color: #ecf0f1;
5549
+ background-color: #2c3e50;
5299
5550
  }
5300
5551
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
5301
- border-bottom-color: #464545;
5552
+ border-bottom-color: #ecf0f1;
5302
5553
  }
5303
5554
  .panel-primary {
5304
- border-color: #375a7f;
5555
+ border-color: #2c3e50;
5305
5556
  }
5306
5557
  .panel-primary > .panel-heading {
5307
5558
  color: #ffffff;
5308
- background-color: #375a7f;
5309
- border-color: #375a7f;
5559
+ background-color: #2c3e50;
5560
+ border-color: #2c3e50;
5310
5561
  }
5311
5562
  .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5312
- border-top-color: #375a7f;
5563
+ border-top-color: #2c3e50;
5313
5564
  }
5314
5565
  .panel-primary > .panel-heading .badge {
5315
- color: #375a7f;
5566
+ color: #2c3e50;
5316
5567
  background-color: #ffffff;
5317
5568
  }
5318
5569
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5319
- border-bottom-color: #375a7f;
5570
+ border-bottom-color: #2c3e50;
5320
5571
  }
5321
5572
  .panel-success {
5322
- border-color: #00bc8c;
5573
+ border-color: #18bc9c;
5323
5574
  }
5324
5575
  .panel-success > .panel-heading {
5325
5576
  color: #ffffff;
5326
- background-color: #00bc8c;
5327
- border-color: #00bc8c;
5577
+ background-color: #18bc9c;
5578
+ border-color: #18bc9c;
5328
5579
  }
5329
5580
  .panel-success > .panel-heading + .panel-collapse > .panel-body {
5330
- border-top-color: #00bc8c;
5581
+ border-top-color: #18bc9c;
5331
5582
  }
5332
5583
  .panel-success > .panel-heading .badge {
5333
- color: #00bc8c;
5584
+ color: #18bc9c;
5334
5585
  background-color: #ffffff;
5335
5586
  }
5336
5587
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
5337
- border-bottom-color: #00bc8c;
5588
+ border-bottom-color: #18bc9c;
5338
5589
  }
5339
5590
  .panel-info {
5340
5591
  border-color: #3498db;
@@ -5410,17 +5661,17 @@ a.list-group-item-danger.active:focus {
5410
5661
  width: 100%;
5411
5662
  border: 0;
5412
5663
  }
5413
- .embed-responsive.embed-responsive-16by9 {
5664
+ .embed-responsive-16by9 {
5414
5665
  padding-bottom: 56.25%;
5415
5666
  }
5416
- .embed-responsive.embed-responsive-4by3 {
5667
+ .embed-responsive-4by3 {
5417
5668
  padding-bottom: 75%;
5418
5669
  }
5419
5670
  .well {
5420
5671
  min-height: 20px;
5421
5672
  padding: 19px;
5422
5673
  margin-bottom: 20px;
5423
- background-color: #303030;
5674
+ background-color: #ecf0f1;
5424
5675
  border: 1px solid transparent;
5425
5676
  border-radius: 4px;
5426
5677
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
@@ -5443,14 +5694,14 @@ a.list-group-item-danger.active:focus {
5443
5694
  font-size: 22.5px;
5444
5695
  font-weight: bold;
5445
5696
  line-height: 1;
5446
- color: #ffffff;
5697
+ color: #000000;
5447
5698
  text-shadow: none;
5448
5699
  opacity: 0.2;
5449
5700
  filter: alpha(opacity=20);
5450
5701
  }
5451
5702
  .close:hover,
5452
5703
  .close:focus {
5453
- color: #ffffff;
5704
+ color: #000000;
5454
5705
  text-decoration: none;
5455
5706
  cursor: pointer;
5456
5707
  opacity: 0.5;
@@ -5474,7 +5725,7 @@ button.close {
5474
5725
  right: 0;
5475
5726
  bottom: 0;
5476
5727
  left: 0;
5477
- z-index: 1040;
5728
+ z-index: 1050;
5478
5729
  -webkit-overflow-scrolling: touch;
5479
5730
  outline: 0;
5480
5731
  }
@@ -5504,7 +5755,7 @@ button.close {
5504
5755
  }
5505
5756
  .modal-content {
5506
5757
  position: relative;
5507
- background-color: #303030;
5758
+ background-color: #ffffff;
5508
5759
  border: 1px solid #999999;
5509
5760
  border: 1px solid rgba(0, 0, 0, 0.2);
5510
5761
  border-radius: 6px;
@@ -5515,10 +5766,12 @@ button.close {
5515
5766
  outline: 0;
5516
5767
  }
5517
5768
  .modal-backdrop {
5518
- position: absolute;
5769
+ position: fixed;
5519
5770
  top: 0;
5520
5771
  right: 0;
5772
+ bottom: 0;
5521
5773
  left: 0;
5774
+ z-index: 1040;
5522
5775
  background-color: #000000;
5523
5776
  }
5524
5777
  .modal-backdrop.fade {
@@ -5526,12 +5779,12 @@ button.close {
5526
5779
  filter: alpha(opacity=0);
5527
5780
  }
5528
5781
  .modal-backdrop.in {
5529
- opacity: 0.7;
5530
- filter: alpha(opacity=70);
5782
+ opacity: 0.5;
5783
+ filter: alpha(opacity=50);
5531
5784
  }
5532
5785
  .modal-header {
5533
5786
  padding: 15px;
5534
- border-bottom: 1px solid #464545;
5787
+ border-bottom: 1px solid #e5e5e5;
5535
5788
  min-height: 16.42857143px;
5536
5789
  }
5537
5790
  .modal-header .close {
@@ -5548,7 +5801,7 @@ button.close {
5548
5801
  .modal-footer {
5549
5802
  padding: 20px;
5550
5803
  text-align: right;
5551
- border-top: 1px solid #464545;
5804
+ border-top: 1px solid #e5e5e5;
5552
5805
  }
5553
5806
  .modal-footer .btn + .btn {
5554
5807
  margin-left: 5px;
@@ -5589,7 +5842,6 @@ button.close {
5589
5842
  position: absolute;
5590
5843
  z-index: 1070;
5591
5844
  display: block;
5592
- visibility: visible;
5593
5845
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
5594
5846
  font-size: 13px;
5595
5847
  font-weight: normal;
@@ -5623,7 +5875,7 @@ button.close {
5623
5875
  color: #ffffff;
5624
5876
  text-align: center;
5625
5877
  text-decoration: none;
5626
- background-color: rgba(0, 0, 0, 0.9);
5878
+ background-color: #000000;
5627
5879
  border-radius: 4px;
5628
5880
  }
5629
5881
  .tooltip-arrow {
@@ -5638,56 +5890,56 @@ button.close {
5638
5890
  left: 50%;
5639
5891
  margin-left: -5px;
5640
5892
  border-width: 5px 5px 0;
5641
- border-top-color: rgba(0, 0, 0, 0.9);
5893
+ border-top-color: #000000;
5642
5894
  }
5643
5895
  .tooltip.top-left .tooltip-arrow {
5644
5896
  bottom: 0;
5645
5897
  right: 5px;
5646
5898
  margin-bottom: -5px;
5647
5899
  border-width: 5px 5px 0;
5648
- border-top-color: rgba(0, 0, 0, 0.9);
5900
+ border-top-color: #000000;
5649
5901
  }
5650
5902
  .tooltip.top-right .tooltip-arrow {
5651
5903
  bottom: 0;
5652
5904
  left: 5px;
5653
5905
  margin-bottom: -5px;
5654
5906
  border-width: 5px 5px 0;
5655
- border-top-color: rgba(0, 0, 0, 0.9);
5907
+ border-top-color: #000000;
5656
5908
  }
5657
5909
  .tooltip.right .tooltip-arrow {
5658
5910
  top: 50%;
5659
5911
  left: 0;
5660
5912
  margin-top: -5px;
5661
5913
  border-width: 5px 5px 5px 0;
5662
- border-right-color: rgba(0, 0, 0, 0.9);
5914
+ border-right-color: #000000;
5663
5915
  }
5664
5916
  .tooltip.left .tooltip-arrow {
5665
5917
  top: 50%;
5666
5918
  right: 0;
5667
5919
  margin-top: -5px;
5668
5920
  border-width: 5px 0 5px 5px;
5669
- border-left-color: rgba(0, 0, 0, 0.9);
5921
+ border-left-color: #000000;
5670
5922
  }
5671
5923
  .tooltip.bottom .tooltip-arrow {
5672
5924
  top: 0;
5673
5925
  left: 50%;
5674
5926
  margin-left: -5px;
5675
5927
  border-width: 0 5px 5px;
5676
- border-bottom-color: rgba(0, 0, 0, 0.9);
5928
+ border-bottom-color: #000000;
5677
5929
  }
5678
5930
  .tooltip.bottom-left .tooltip-arrow {
5679
5931
  top: 0;
5680
5932
  right: 5px;
5681
5933
  margin-top: -5px;
5682
5934
  border-width: 0 5px 5px;
5683
- border-bottom-color: rgba(0, 0, 0, 0.9);
5935
+ border-bottom-color: #000000;
5684
5936
  }
5685
5937
  .tooltip.bottom-right .tooltip-arrow {
5686
5938
  top: 0;
5687
5939
  left: 5px;
5688
5940
  margin-top: -5px;
5689
5941
  border-width: 0 5px 5px;
5690
- border-bottom-color: rgba(0, 0, 0, 0.9);
5942
+ border-bottom-color: #000000;
5691
5943
  }
5692
5944
  .popover {
5693
5945
  position: absolute;
@@ -5702,10 +5954,10 @@ button.close {
5702
5954
  font-weight: normal;
5703
5955
  line-height: 1.42857143;
5704
5956
  text-align: left;
5705
- background-color: #303030;
5957
+ background-color: #ffffff;
5706
5958
  -webkit-background-clip: padding-box;
5707
5959
  background-clip: padding-box;
5708
- border: 1px solid #999999;
5960
+ border: 1px solid #cccccc;
5709
5961
  border: 1px solid rgba(0, 0, 0, 0.2);
5710
5962
  border-radius: 6px;
5711
5963
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
@@ -5728,8 +5980,8 @@ button.close {
5728
5980
  margin: 0;
5729
5981
  padding: 8px 14px;
5730
5982
  font-size: 15px;
5731
- background-color: #282828;
5732
- border-bottom: 1px solid #1c1c1c;
5983
+ background-color: #f7f7f7;
5984
+ border-bottom: 1px solid #ebebeb;
5733
5985
  border-radius: 5px 5px 0 0;
5734
5986
  }
5735
5987
  .popover-content {
@@ -5755,7 +6007,7 @@ button.close {
5755
6007
  left: 50%;
5756
6008
  margin-left: -11px;
5757
6009
  border-bottom-width: 0;
5758
- border-top-color: #666666;
6010
+ border-top-color: #999999;
5759
6011
  border-top-color: rgba(0, 0, 0, 0.25);
5760
6012
  bottom: -11px;
5761
6013
  }
@@ -5764,14 +6016,14 @@ button.close {
5764
6016
  bottom: 1px;
5765
6017
  margin-left: -10px;
5766
6018
  border-bottom-width: 0;
5767
- border-top-color: #303030;
6019
+ border-top-color: #ffffff;
5768
6020
  }
5769
6021
  .popover.right > .arrow {
5770
6022
  top: 50%;
5771
6023
  left: -11px;
5772
6024
  margin-top: -11px;
5773
6025
  border-left-width: 0;
5774
- border-right-color: #666666;
6026
+ border-right-color: #999999;
5775
6027
  border-right-color: rgba(0, 0, 0, 0.25);
5776
6028
  }
5777
6029
  .popover.right > .arrow:after {
@@ -5779,13 +6031,13 @@ button.close {
5779
6031
  left: 1px;
5780
6032
  bottom: -10px;
5781
6033
  border-left-width: 0;
5782
- border-right-color: #303030;
6034
+ border-right-color: #ffffff;
5783
6035
  }
5784
6036
  .popover.bottom > .arrow {
5785
6037
  left: 50%;
5786
6038
  margin-left: -11px;
5787
6039
  border-top-width: 0;
5788
- border-bottom-color: #666666;
6040
+ border-bottom-color: #999999;
5789
6041
  border-bottom-color: rgba(0, 0, 0, 0.25);
5790
6042
  top: -11px;
5791
6043
  }
@@ -5794,21 +6046,21 @@ button.close {
5794
6046
  top: 1px;
5795
6047
  margin-left: -10px;
5796
6048
  border-top-width: 0;
5797
- border-bottom-color: #303030;
6049
+ border-bottom-color: #ffffff;
5798
6050
  }
5799
6051
  .popover.left > .arrow {
5800
6052
  top: 50%;
5801
6053
  right: -11px;
5802
6054
  margin-top: -11px;
5803
6055
  border-right-width: 0;
5804
- border-left-color: #666666;
6056
+ border-left-color: #999999;
5805
6057
  border-left-color: rgba(0, 0, 0, 0.25);
5806
6058
  }
5807
6059
  .popover.left > .arrow:after {
5808
6060
  content: " ";
5809
6061
  right: 1px;
5810
6062
  border-right-width: 0;
5811
- border-left-color: #303030;
6063
+ border-left-color: #ffffff;
5812
6064
  bottom: -10px;
5813
6065
  }
5814
6066
  .carousel {
@@ -5833,30 +6085,30 @@ button.close {
5833
6085
  @media all and (transform-3d), (-webkit-transform-3d) {
5834
6086
  .carousel-inner > .item {
5835
6087
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
5836
- -o-transition: -o-transform 0.6s ease-in-out;
5837
- transition: transform 0.6s ease-in-out;
6088
+ -o-transition: -o-transform 0.6s ease-in-out;
6089
+ transition: transform 0.6s ease-in-out;
5838
6090
  -webkit-backface-visibility: hidden;
5839
- backface-visibility: hidden;
6091
+ backface-visibility: hidden;
5840
6092
  -webkit-perspective: 1000;
5841
- perspective: 1000;
6093
+ perspective: 1000;
5842
6094
  }
5843
6095
  .carousel-inner > .item.next,
5844
6096
  .carousel-inner > .item.active.right {
5845
6097
  -webkit-transform: translate3d(100%, 0, 0);
5846
- transform: translate3d(100%, 0, 0);
6098
+ transform: translate3d(100%, 0, 0);
5847
6099
  left: 0;
5848
6100
  }
5849
6101
  .carousel-inner > .item.prev,
5850
6102
  .carousel-inner > .item.active.left {
5851
6103
  -webkit-transform: translate3d(-100%, 0, 0);
5852
- transform: translate3d(-100%, 0, 0);
6104
+ transform: translate3d(-100%, 0, 0);
5853
6105
  left: 0;
5854
6106
  }
5855
6107
  .carousel-inner > .item.next.left,
5856
6108
  .carousel-inner > .item.prev.right,
5857
6109
  .carousel-inner > .item.active {
5858
6110
  -webkit-transform: translate3d(0, 0, 0);
5859
- transform: translate3d(0, 0, 0);
6111
+ transform: translate3d(0, 0, 0);
5860
6112
  left: 0;
5861
6113
  }
5862
6114
  }
@@ -5953,6 +6205,7 @@ button.close {
5953
6205
  width: 20px;
5954
6206
  height: 20px;
5955
6207
  margin-top: -10px;
6208
+ line-height: 1;
5956
6209
  font-family: serif;
5957
6210
  }
5958
6211
  .carousel-control .icon-prev:before {
@@ -6111,7 +6364,6 @@ button.close {
6111
6364
  }
6112
6365
  .hidden {
6113
6366
  display: none !important;
6114
- visibility: hidden !important;
6115
6367
  }
6116
6368
  .affix {
6117
6369
  position: fixed;
@@ -6331,20 +6583,14 @@ button.close {
6331
6583
  }
6332
6584
  .navbar-default .badge {
6333
6585
  background-color: #fff;
6334
- color: #375a7f;
6586
+ color: #2c3e50;
6335
6587
  }
6336
6588
  .navbar-inverse .badge {
6337
6589
  background-color: #fff;
6338
- color: #00bc8c;
6590
+ color: #18bc9c;
6339
6591
  }
6340
6592
  .navbar-brand {
6341
- padding: 18.5px 15px 20.5px;
6342
- }
6343
- .navbar-form .form-control {
6344
- background-color: white;
6345
- }
6346
- .navbar-form .form-control:focus {
6347
- border-color: white;
6593
+ line-height: 1;
6348
6594
  }
6349
6595
  .btn:active {
6350
6596
  -webkit-box-shadow: none;
@@ -6356,11 +6602,11 @@ button.close {
6356
6602
  }
6357
6603
  .text-primary,
6358
6604
  .text-primary:hover {
6359
- color: #4673a3;
6605
+ color: #2c3e50;
6360
6606
  }
6361
6607
  .text-success,
6362
6608
  .text-success:hover {
6363
- color: #00bc8c;
6609
+ color: #18bc9c;
6364
6610
  }
6365
6611
  .text-danger,
6366
6612
  .text-danger:hover {
@@ -6392,14 +6638,30 @@ table .info,
6392
6638
  .table .info {
6393
6639
  color: #fff;
6394
6640
  }
6395
- table .success a,
6396
- .table .success a,
6397
- table .warning a,
6398
- .table .warning a,
6399
- table .danger a,
6400
- .table .danger a,
6401
- table .info a,
6402
- .table .info a {
6641
+ table .success > th > a,
6642
+ .table .success > th > a,
6643
+ table .warning > th > a,
6644
+ .table .warning > th > a,
6645
+ table .danger > th > a,
6646
+ .table .danger > th > a,
6647
+ table .info > th > a,
6648
+ .table .info > th > a,
6649
+ table .success > td > a,
6650
+ .table .success > td > a,
6651
+ table .warning > td > a,
6652
+ .table .warning > td > a,
6653
+ table .danger > td > a,
6654
+ .table .danger > td > a,
6655
+ table .info > td > a,
6656
+ .table .info > td > a,
6657
+ table .success > a,
6658
+ .table .success > a,
6659
+ table .warning > a,
6660
+ .table .warning > a,
6661
+ table .danger > a,
6662
+ .table .danger > a,
6663
+ table .info > a,
6664
+ .table .info > a {
6403
6665
  color: #fff;
6404
6666
  }
6405
6667
  table > thead > tr > th,
@@ -6428,22 +6690,16 @@ table-bordered > tbody > tr > td,
6428
6690
  .table-bordered > tbody > tr > td,
6429
6691
  table-bordered > tfoot > tr > td,
6430
6692
  .table-bordered > tfoot > tr > td {
6431
- border: 1px solid #464545;
6432
- }
6433
- input,
6434
- textarea {
6435
- color: #464545;
6693
+ border: 1px solid #ecf0f1;
6436
6694
  }
6437
6695
  .form-control,
6438
- input,
6439
- textarea {
6440
- border: none;
6696
+ input {
6697
+ border-width: 2px;
6441
6698
  -webkit-box-shadow: none;
6442
6699
  box-shadow: none;
6443
6700
  }
6444
6701
  .form-control:focus,
6445
- input:focus,
6446
- textarea:focus {
6702
+ input:focus {
6447
6703
  -webkit-box-shadow: none;
6448
6704
  box-shadow: none;
6449
6705
  }
@@ -6458,8 +6714,7 @@ textarea:focus {
6458
6714
  }
6459
6715
  .has-warning .form-control,
6460
6716
  .has-warning .form-control:focus {
6461
- -webkit-box-shadow: none;
6462
- box-shadow: none;
6717
+ border: 2px solid #f39c12;
6463
6718
  }
6464
6719
  .has-warning .input-group-addon {
6465
6720
  border-color: #f39c12;
@@ -6475,8 +6730,7 @@ textarea:focus {
6475
6730
  }
6476
6731
  .has-error .form-control,
6477
6732
  .has-error .form-control:focus {
6478
- -webkit-box-shadow: none;
6479
- box-shadow: none;
6733
+ border: 2px solid #e74c3c;
6480
6734
  }
6481
6735
  .has-error .input-group-addon {
6482
6736
  border-color: #e74c3c;
@@ -6488,27 +6742,19 @@ textarea:focus {
6488
6742
  .has-success .radio-inline,
6489
6743
  .has-success .checkbox-inline,
6490
6744
  .has-success .form-control-feedback {
6491
- color: #00bc8c;
6745
+ color: #18bc9c;
6492
6746
  }
6493
6747
  .has-success .form-control,
6494
6748
  .has-success .form-control:focus {
6495
- -webkit-box-shadow: none;
6496
- box-shadow: none;
6749
+ border: 2px solid #18bc9c;
6497
6750
  }
6498
6751
  .has-success .input-group-addon {
6499
- border-color: #00bc8c;
6500
- }
6501
- .input-group-addon {
6502
- color: #ffffff;
6752
+ border-color: #18bc9c;
6503
6753
  }
6504
6754
  .nav .open > a,
6505
6755
  .nav .open > a:hover,
6506
6756
  .nav .open > a:focus {
6507
- border-color: #464545;
6508
- }
6509
- .nav-tabs > li > a,
6510
- .nav-pills > li > a {
6511
- color: #fff;
6757
+ border-color: transparent;
6512
6758
  }
6513
6759
  .pager a,
6514
6760
  .pager a:hover {
@@ -6518,18 +6764,16 @@ textarea:focus {
6518
6764
  .pager .disabled > a:hover,
6519
6765
  .pager .disabled > a:focus,
6520
6766
  .pager .disabled > span {
6521
- background-color: #007053;
6522
- }
6523
- .breadcrumb a {
6524
- color: #fff;
6767
+ background-color: #3be6c4;
6525
6768
  }
6526
6769
  .close {
6770
+ color: #fff;
6527
6771
  text-decoration: none;
6528
- text-shadow: none;
6529
6772
  opacity: 0.4;
6530
6773
  }
6531
6774
  .close:hover,
6532
6775
  .close:focus {
6776
+ color: #fff;
6533
6777
  opacity: 1;
6534
6778
  }
6535
6779
  .alert .alert-link {
@@ -6552,14 +6796,14 @@ textarea:focus {
6552
6796
  a.list-group-item.active,
6553
6797
  a.list-group-item.active:hover,
6554
6798
  a.list-group-item.active:focus {
6555
- border-color: #464545;
6799
+ border-color: #ecf0f1;
6556
6800
  }
6557
6801
  a.list-group-item-success.active {
6558
- background-color: #00bc8c;
6802
+ background-color: #18bc9c;
6559
6803
  }
6560
6804
  a.list-group-item-success.active:hover,
6561
6805
  a.list-group-item-success.active:focus {
6562
- background-color: #00a379;
6806
+ background-color: #15a589;
6563
6807
  }
6564
6808
  a.list-group-item-warning.active {
6565
6809
  background-color: #f39c12;
@@ -6575,9 +6819,12 @@ a.list-group-item-danger.active:hover,
6575
6819
  a.list-group-item-danger.active:focus {
6576
6820
  background-color: #e43725;
6577
6821
  }
6578
- .popover {
6579
- color: #ffffff;
6822
+ .panel-default .close {
6823
+ color: #2c3e50;
6580
6824
  }
6581
- .panel-default > .panel-heading {
6582
- background-color: #464545;
6825
+ .modal .close {
6826
+ color: #2c3e50;
6827
+ }
6828
+ .popover {
6829
+ color: #2c3e50;
6583
6830
  }