system-phone 1.4.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (464) hide show
  1. package/.babelrc +5 -5
  2. package/.editorconfig +9 -9
  3. package/.eslintrc.js +16 -16
  4. package/.gradle/6.1/executionHistory/executionHistory.bin +0 -0
  5. package/.gradle/6.1/executionHistory/executionHistory.lock +0 -0
  6. package/.gradle/6.1/fileChanges/last-build.bin +0 -0
  7. package/.gradle/6.1/fileHashes/fileHashes.bin +0 -0
  8. package/.gradle/6.1/fileHashes/fileHashes.lock +0 -0
  9. package/.gradle/6.1/gc.properties +0 -0
  10. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  11. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  12. package/.gradle/checksums/checksums.lock +0 -0
  13. package/.gradle/checksums/sha1-checksums.bin +0 -0
  14. package/.gradle/vcs-1/gc.properties +0 -0
  15. package/CHANGELOG.md +1 -1
  16. package/Dockerfile +3 -3
  17. package/README.md +36 -36
  18. package/SystemPhone.iml +9 -0
  19. package/build/css-loaders.js +34 -34
  20. package/build/dev-client.js +8 -8
  21. package/build/dev-server.js +141 -121
  22. package/build/example-server.js +80 -80
  23. package/build/release.sh +28 -28
  24. package/build/utils.js +71 -71
  25. package/build/webpack.base.conf.js +82 -78
  26. package/build/webpack.dev.conf.js +31 -31
  27. package/build/webpack.example.conf.js +49 -49
  28. package/build/webpack.prod.conf.js +60 -60
  29. package/build/webpack.test.conf.js +31 -31
  30. package/build.gradle +27 -27
  31. package/config/dev.env.js +6 -6
  32. package/config/index.js +38 -38
  33. package/config/prod.env.js +3 -3
  34. package/config/test.env.js +6 -6
  35. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  36. package/gradle/wrapper/gradle-wrapper.properties +5 -0
  37. package/gradlew +183 -0
  38. package/gradlew.bat +100 -0
  39. package/index.html +21 -773
  40. package/nginx.conf +304 -304
  41. package/package.json +5 -3
  42. package/release.bat +5 -5
  43. package/src/App.vue +25 -25
  44. package/src/Util.js +415 -415
  45. package/src/android-bootstrap/fonts/glyphicons-halflings-regular.svg +287 -287
  46. package/src/android-bootstrap/less/.csscomb.json +304 -304
  47. package/src/android-bootstrap/less/.csslintrc +19 -19
  48. package/src/android-bootstrap/less/alerts.less +73 -73
  49. package/src/android-bootstrap/less/badges.less +66 -66
  50. package/src/android-bootstrap/less/bootstrap.less +56 -56
  51. package/src/android-bootstrap/less/breadcrumbs.less +26 -26
  52. package/src/android-bootstrap/less/button-groups.less +247 -247
  53. package/src/android-bootstrap/less/buttons.less +173 -173
  54. package/src/android-bootstrap/less/carousel.less +269 -269
  55. package/src/android-bootstrap/less/close.less +34 -34
  56. package/src/android-bootstrap/less/code.less +69 -69
  57. package/src/android-bootstrap/less/component-animations.less +33 -33
  58. package/src/android-bootstrap/less/dropdowns.less +216 -216
  59. package/src/android-bootstrap/less/forms.less +626 -626
  60. package/src/android-bootstrap/less/glyphicons.less +305 -305
  61. package/src/android-bootstrap/less/grid.less +84 -84
  62. package/src/android-bootstrap/less/input-groups.less +167 -167
  63. package/src/android-bootstrap/less/jumbotron.less +52 -52
  64. package/src/android-bootstrap/less/labels.less +64 -64
  65. package/src/android-bootstrap/less/list-group.less +141 -141
  66. package/src/android-bootstrap/less/media.less +66 -66
  67. package/src/android-bootstrap/less/mixins/alerts.less +14 -14
  68. package/src/android-bootstrap/less/mixins/background-variant.less +9 -9
  69. package/src/android-bootstrap/less/mixins/border-radius.less +18 -18
  70. package/src/android-bootstrap/less/mixins/buttons.less +69 -69
  71. package/src/android-bootstrap/less/mixins/center-block.less +7 -7
  72. package/src/android-bootstrap/less/mixins/clearfix.less +22 -22
  73. package/src/android-bootstrap/less/mixins/forms.less +90 -90
  74. package/src/android-bootstrap/less/mixins/gradients.less +59 -59
  75. package/src/android-bootstrap/less/mixins/grid-framework.less +92 -92
  76. package/src/android-bootstrap/less/mixins/grid.less +122 -122
  77. package/src/android-bootstrap/less/mixins/hide-text.less +21 -21
  78. package/src/android-bootstrap/less/mixins/image.less +33 -33
  79. package/src/android-bootstrap/less/mixins/labels.less +12 -12
  80. package/src/android-bootstrap/less/mixins/list-group.less +30 -30
  81. package/src/android-bootstrap/less/mixins/nav-divider.less +10 -10
  82. package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -9
  83. package/src/android-bootstrap/less/mixins/opacity.less +8 -8
  84. package/src/android-bootstrap/less/mixins/pagination.less +24 -24
  85. package/src/android-bootstrap/less/mixins/panels.less +24 -24
  86. package/src/android-bootstrap/less/mixins/progress-bar.less +10 -10
  87. package/src/android-bootstrap/less/mixins/reset-filter.less +8 -8
  88. package/src/android-bootstrap/less/mixins/reset-text.less +18 -18
  89. package/src/android-bootstrap/less/mixins/resize.less +6 -6
  90. package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -15
  91. package/src/android-bootstrap/less/mixins/size.less +10 -10
  92. package/src/android-bootstrap/less/mixins/tab-focus.less +9 -9
  93. package/src/android-bootstrap/less/mixins/table-row.less +44 -44
  94. package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -9
  95. package/src/android-bootstrap/less/mixins/text-overflow.less +8 -8
  96. package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -227
  97. package/src/android-bootstrap/less/mixins.less +40 -40
  98. package/src/android-bootstrap/less/modals.less +151 -151
  99. package/src/android-bootstrap/less/navbar.less +660 -660
  100. package/src/android-bootstrap/less/navs.less +290 -290
  101. package/src/android-bootstrap/less/normalize.less +424 -424
  102. package/src/android-bootstrap/less/pager.less +76 -76
  103. package/src/android-bootstrap/less/pagination.less +89 -89
  104. package/src/android-bootstrap/less/panels.less +274 -274
  105. package/src/android-bootstrap/less/popovers.less +131 -131
  106. package/src/android-bootstrap/less/print.less +101 -101
  107. package/src/android-bootstrap/less/progress-bars.less +87 -87
  108. package/src/android-bootstrap/less/responsive-embed.less +35 -35
  109. package/src/android-bootstrap/less/responsive-utilities.less +194 -194
  110. package/src/android-bootstrap/less/scaffolding.less +161 -161
  111. package/src/android-bootstrap/less/tables.less +262 -262
  112. package/src/android-bootstrap/less/theme.less +291 -291
  113. package/src/android-bootstrap/less/thumbnails.less +36 -36
  114. package/src/android-bootstrap/less/tooltip.less +102 -102
  115. package/src/android-bootstrap/less/type.less +303 -303
  116. package/src/android-bootstrap/less/utilities.less +55 -55
  117. package/src/android-bootstrap/less/variables.less +896 -896
  118. package/src/android-bootstrap/less/wells.less +29 -29
  119. package/src/assets/biaohao.png +0 -0
  120. package/src/assets/bieming.png +0 -0
  121. package/src/assets/caozuo.png +0 -0
  122. package/src/assets/guige.png +0 -0
  123. package/src/assets/images/back.png +0 -0
  124. package/src/assets/images//345/201/234/346/260/224/345/205/254/345/221/212.png +0 -0
  125. package/src/assets/images//345/256/242/346/234/215/344/273/212/346/227/245/345/267/245/345/215/225.png +0 -0
  126. package/src/assets/images//345/256/242/346/234/215/345/234/250/347/272/277/345/244/204/347/220/206.png +0 -0
  127. package/src/assets/images//345/256/242/346/234/215/345/244/204/347/220/206/344/270/255.png +0 -0
  128. package/src/assets/images//345/256/242/346/234/215/345/256/214/346/210/220/347/216/207.png +0 -0
  129. package/src/assets/images//345/256/242/346/234/215/345/267/245/345/215/225/351/207/217.png +0 -0
  130. package/src/assets/images//345/256/242/346/234/215/345/267/262/345/256/214/346/210/220.png +0 -0
  131. package/src/assets/images//345/256/242/346/234/215/345/276/205/345/244/204/347/220/206.png +0 -0
  132. package/src/assets/images//345/256/242/346/234/215/346/264/276/345/215/225/351/207/217.png +0 -0
  133. package/src/assets/images//345/256/242/346/234/215/347/275/221/345/216/205/351/242/204/347/272/246/346/264/276/345/215/225/351/207/217.png +0 -0
  134. package/src/assets/images//345/261/205/346/260/221/345/242/236/351/225/277/345/210/206/346/236/220.png +0 -0
  135. package/src/assets/images//345/261/205/346/260/221/347/224/250/346/210/267.png +0 -0
  136. package/src/assets/images//346/224/266/350/264/271total1.png +0 -0
  137. package/src/assets/images//346/224/266/350/264/271total2.png +0 -0
  138. package/src/assets/images//346/224/266/350/264/271total3.png +0 -0
  139. package/src/assets/images//346/224/266/350/264/271/345/205/266/344/273/226/344/270/232/345/212/241.png +0 -0
  140. package/src/assets/images//346/224/266/350/264/271/345/224/256/346/260/224/351/207/217/345/210/206/346/236/220.png +0 -0
  141. package/src/assets/images//346/224/266/350/264/271/347/254/224/346/225/260/345/260/217/346/240/207/351/242/230.png +0 -0
  142. package/src/assets/images//347/224/250/346/210/2671.png +0 -0
  143. package/src/assets/images//351/235/236/345/261/205/346/260/221/347/224/250/346/210/267.png +0 -0
  144. package/src/assets/leixing.png +0 -0
  145. package/src/assets/loging.gif +0 -0
  146. package/src/assets/mingwen.png +0 -0
  147. package/src/assets/miwen.png +0 -0
  148. package/src/assets/phone.png +0 -0
  149. package/src/assets/pinpai.png +0 -0
  150. package/src/assets/pos/346/224/266/350/264/271.png +0 -0
  151. package/src/assets/qiliang.png +0 -0
  152. package/src/assets/shuaxindaiban1.png +0 -0
  153. package/src/assets/xinghao.png +0 -0
  154. package/src/assets/yue.png +0 -0
  155. package/src/assets//344/270/212/344/274/240/345/267/245/344/275/234/346/234/252/351/200/211/344/270/255.png +0 -0
  156. package/src/assets//344/270/212/344/274/240/345/267/245/344/275/234/351/200/211/344/270/255.png +0 -0
  157. package/src/assets//344/270/213/350/275/275/350/256/241/345/210/222.png +0 -0
  158. package/src/assets//344/270/223/351/241/271/345/256/211/346/243/200.png +0 -0
  159. package/src/assets//344/270/252/344/272/272/344/270/255/345/277/203.png +0 -0
  160. package/src/assets//344/270/264/346/227/266/345/256/211/346/243/200.png +0 -0
  161. package/src/assets//344/273/273/345/212/241/346/237/245/350/257/242.png +0 -0
  162. package/src/assets//344/275/260/346/227/272/345/276/267/345/205/266/344/273/226/347/274/264/350/264/271.png +0 -0
  163. package/src/assets//344/276/233/346/232/226/347/274/264/350/264/271.png +0 -0
  164. package/src/assets//344/277/241/346/201/257/345/205/254/345/221/212.png +0 -0
  165. package/src/assets//344/277/241/346/201/257/346/237/245/350/257/242.png +0 -0
  166. package/src/assets//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
  167. package/src/assets//344/277/256/346/224/271/345/257/206/347/240/2011.png +0 -0
  168. package/src/assets//345/201/234/346/260/224/345/205/254/345/221/212.png +0 -0
  169. package/src/assets//345/205/254/345/221/212/346/237/245/347/234/213.png +0 -0
  170. package/src/assets//345/205/261/344/272/253/350/256/241/345/210/222.png +0 -0
  171. package/src/assets//345/205/266/344/273/226/347/274/264/350/264/271.png +0 -0
  172. package/src/assets//345/206/214/345/206/205/351/241/272/345/272/217/344/277/256/346/224/271.png +0 -0
  173. package/src/assets//345/207/272/345/205/267/350/256/276/350/256/241/345/233/276/347/272/270.png +0 -0
  174. package/src/assets//345/215/241/350/241/250/345/234/250/347/272/277/346/212/204/350/241/250.png +0 -0
  175. package/src/assets//345/217/226/346/266/210/350/207/252/345/212/250/347/231/273/345/275/225.png +0 -0
  176. package/src/assets//345/220/210/345/220/214/347/255/276/350/256/242.png +0 -0
  177. package/src/assets//345/234/250/347/272/277/344/270/232/345/212/241/346/234/252/351/200/211/344/270/255.png +0 -0
  178. package/src/assets//345/234/250/347/272/277/344/270/232/345/212/241/351/200/211/344/270/255.png +0 -0
  179. package/src/assets//345/234/250/347/272/277/345/256/211/346/243/200.png +0 -0
  180. package/src/assets//345/234/250/347/272/277/345/267/241/346/243/200.png +0 -0
  181. package/src/assets//345/234/250/347/272/277/346/212/204/350/241/250.png +0 -0
  182. package/src/assets//345/234/250/347/272/277/346/212/242/344/277/256.png +0 -0
  183. package/src/assets//345/234/250/347/272/277/346/212/245/350/243/205.png +0 -0
  184. package/src/assets//345/234/250/347/272/277/346/216/245/345/215/225.png +0 -0
  185. package/src/assets//345/234/250/347/272/277/346/223/215/344/275/234.png +0 -0
  186. package/src/assets//345/234/250/347/272/277/347/273/237/350/256/241.png +0 -0
  187. package/src/assets//345/234/250/347/272/277/347/273/264/344/277/256.png +0 -0
  188. package/src/assets//345/234/250/347/272/277/347/274/264/350/264/271.png +0 -0
  189. package/src/assets//345/234/250/347/272/277/351/200/232/346/260/224.png +0 -0
  190. package/src/assets//345/256/211/346/243/200/344/270/212/344/274/240.png +0 -0
  191. package/src/assets//345/256/211/346/243/200/345/234/250/347/272/277/347/273/237/350/256/241.png +0 -0
  192. package/src/assets//345/256/211/346/243/200/345/267/262/345/212/236.png +0 -0
  193. package/src/assets//345/256/211/346/243/200/345/276/205/345/212/236.png +0 -0
  194. package/src/assets//345/256/211/346/243/200/346/212/275/345/215/225.png +0 -0
  195. package/src/assets//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
  196. package/src/assets//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
  197. package/src/assets//345/256/211/346/243/200/350/256/241/345/210/222/345/210/227/350/241/250.png +0 -0
  198. package/src/assets//345/256/211/350/243/205/344/270/212/344/274/240.png +0 -0
  199. package/src/assets//345/256/211/350/243/205/345/267/262/345/212/236.png +0 -0
  200. package/src/assets//345/256/211/350/243/205/345/276/205/345/212/236.png +0 -0
  201. package/src/assets//345/256/217/350/257/255/351/232/220/346/202/243/345/244/204/347/220/206.png +0 -0
  202. package/src/assets//345/256/236/345/220/215/350/256/244/350/257/201.png +0 -0
  203. package/src/assets//345/256/242/346/234/215/347/256/241/347/220/206.png +0 -0
  204. package/src/assets//345/257/271/345/217/267.png +0 -0
  205. package/src/assets//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
  206. package/src/assets//345/257/274/345/207/272/346/225/260/346/215/2561.png +0 -0
  207. package/src/assets//345/267/241/346/243/200/344/270/212/344/274/240.png +0 -0
  208. package/src/assets//345/267/241/346/243/200/345/267/262/345/212/236.png +0 -0
  209. package/src/assets//345/267/245/345/215/225/344/270/212/344/274/240.png +0 -0
  210. package/src/assets//345/267/245/347/250/213/345/217/221/350/265/267.png +0 -0
  211. package/src/assets//345/267/245/347/250/213/346/212/245/344/273/267.png +0 -0
  212. package/src/assets//345/267/245/347/250/213/346/226/275/345/267/245.png +0 -0
  213. package/src/assets//345/267/245/347/250/213/346/264/276/345/267/245.png +0 -0
  214. package/src/assets//345/267/262/345/212/236/345/267/245/344/275/234/346/234/252/351/200/211/344/270/255.png +0 -0
  215. package/src/assets//345/267/262/345/212/236/345/267/245/344/275/234/351/200/211/344/270/255.png +0 -0
  216. package/src/assets//345/267/262/345/212/236/345/267/245/345/215/225.png +0 -0
  217. package/src/assets//345/274/200/345/205/263/351/230/200.png +0 -0
  218. package/src/assets//345/275/242/347/212/2664.png +0 -0
  219. package/src/assets//345/276/205/345/212/236/345/267/245/344/275/234/346/234/252/351/200/211/344/270/255.png +0 -0
  220. package/src/assets//345/276/205/345/212/236/345/267/245/344/275/234/351/200/211/344/270/255.png +0 -0
  221. package/src/assets//345/276/205/345/212/236/345/267/245/345/215/225.png +0 -0
  222. package/src/assets//346/211/271/351/207/217/346/212/204/350/241/250.png +0 -0
  223. package/src/assets//346/212/204/350/241/250/344/270/212/344/274/240.png +0 -0
  224. package/src/assets//346/212/204/350/241/250/345/267/262/345/212/236.png +0 -0
  225. package/src/assets//346/212/204/350/241/250/345/276/205/345/212/236.png +0 -0
  226. package/src/assets//346/212/204/350/241/250/346/261/207/346/200/273.png +0 -0
  227. package/src/assets//346/212/204/350/241/250/350/256/260/345/275/225.png +0 -0
  228. package/src/assets//346/212/245/345/273/272/345/267/262/345/212/236.png +0 -0
  229. package/src/assets//346/212/245/345/273/272/345/276/205/345/212/236.png +0 -0
  230. package/src/assets//346/212/245/345/273/272/346/234/215/345/212/241.png +0 -0
  231. package/src/assets//346/214/207/344/273/244/346/237/245/347/234/213.png +0 -0
  232. package/src/assets//346/224/266/350/264/271/346/261/207/346/200/273/350/241/250.png +0 -0
  233. package/src/assets//346/224/266/350/264/271/350/256/260/345/275/225.png +0 -0
  234. package/src/assets//346/225/264/346/224/271/344/270/212/344/274/240.png +0 -0
  235. package/src/assets//346/225/264/346/224/271/345/267/262/345/212/236.png +0 -0
  236. package/src/assets//346/227/240/350/256/241/345/210/222/345/256/211/346/243/200.png +0 -0
  237. package/src/assets//346/227/245/346/212/245/346/237/245/350/257/242.png +0 -0
  238. package/src/assets//346/241/243/346/241/210/344/277/256/346/224/271.png +0 -0
  239. package/src/assets//346/264/201/350/203/275/351/232/220/346/202/243/345/244/204/347/220/206.png +0 -0
  240. package/src/assets//346/265/201/346/260/264/346/237/245/350/257/242.png +0 -0
  241. package/src/assets//346/265/201/347/250/213/344/270/232/345/212/241.png +0 -0
  242. package/src/assets//346/265/201/347/250/213/347/233/221/346/216/247.png +0 -0
  243. package/src/assets//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
  244. package/src/assets//346/270/205/347/251/272/346/225/260/346/215/2561.png +0 -0
  245. package/src/assets//346/270/205/351/231/244/346/225/260/346/215/256.png +0 -0
  246. package/src/assets//347/202/271/347/201/253/345/267/262/345/212/236.png +0 -0
  247. package/src/assets//347/202/271/347/201/253/345/276/205/345/212/236.png +0 -0
  248. package/src/assets//347/216/260/345/234/272/345/213/230/345/257/237.png +0 -0
  249. package/src/assets//347/217/255/347/273/204/351/225/277/347/256/241/347/220/206/347/253/226/345/261/2173.png +0 -0
  250. package/src/assets//347/224/250/346/210/267/347/274/226/345/217/267.png +0 -0
  251. package/src/assets//347/247/273/345/212/250/346/212/204/350/241/250.png +0 -0
  252. package/src/assets//347/247/273/345/212/250/346/212/204/350/241/250/345/267/262/345/212/236.png +0 -0
  253. package/src/assets//347/253/231/347/202/271/345/267/245/345/215/225.png +0 -0
  254. package/src/assets//347/253/231/347/202/271/346/264/276/345/217/221.png +0 -0
  255. package/src/assets//347/255/276/345/255/227/345/276/205/345/212/236.png +0 -0
  256. package/src/assets//347/263/273/347/273/237/350/256/276/347/275/256/346/234/252/351/200/211/344/270/255.png +0 -0
  257. package/src/assets//347/263/273/347/273/237/350/256/276/347/275/256/351/200/211/344/270/255.png +0 -0
  258. package/src/assets//347/273/237/350/256/241/346/212/245/350/241/250.png +0 -0
  259. package/src/assets//347/273/264/344/277/256/344/270/212/344/274/240.png +0 -0
  260. package/src/assets//347/273/264/344/277/256/345/267/245/345/215/225/347/253/226/345/261/2173.png +0 -0
  261. package/src/assets//347/273/264/344/277/256/345/267/262/345/212/236.png +0 -0
  262. package/src/assets//347/273/264/344/277/256/345/276/205/345/212/236.png +0 -0
  263. package/src/assets//347/273/264/344/277/256/346/264/276/345/217/221.png +0 -0
  264. package/src/assets//347/275/256/346/215/242/344/270/212/344/274/240.png +0 -0
  265. package/src/assets//347/275/256/346/215/242/345/267/262/345/212/236.png +0 -0
  266. package/src/assets//347/275/256/346/215/242/345/276/205/345/212/236.png +0 -0
  267. package/src/assets//347/275/256/346/215/242/351/200/232/346/260/224/347/253/226/345/261/2173.png +0 -0
  268. package/src/assets//350/220/245/344/270/232/345/233/276/350/241/250.png +0 -0
  269. package/src/assets//350/241/250/345/206/214/351/241/272/345/272/217.png +0 -0
  270. package/src/assets//350/241/250/345/217/267 (7).png +0 -0
  271. package/src/assets//350/241/250/345/217/267.png +0 -0
  272. package/src/assets//350/260/203/344/273/267/350/241/245/345/267/256/347/274/264/350/264/271.png +0 -0
  273. package/src/assets//350/277/224/345/233/236.png +0 -0
  274. package/src/assets//350/277/224/345/233/236/346/241/214/351/235/242.png +0 -0
  275. package/src/assets//350/277/233/345/272/246/345/210/227/350/241/250.png +0 -0
  276. package/src/assets//351/200/200/345/207/272/347/231/273/345/275/225.png +0 -0
  277. package/src/assets//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
  278. package/src/assets//351/200/200/345/207/272/347/263/273/347/273/2371.png +0 -0
  279. package/src/assets//351/200/201/346/260/224/344/270/212/344/274/240.png +0 -0
  280. package/src/assets//351/200/201/346/260/224/345/267/262/345/212/236.png +0 -0
  281. package/src/assets//351/200/201/346/260/224/345/276/205/345/212/236.png +0 -0
  282. package/src/assets//351/200/232/346/260/224/347/202/271/347/201/253.png +0 -0
  283. package/src/assets//351/224/231/345/217/267.png +0 -0
  284. package/src/assets//351/232/220/346/202/243/345/244/204/347/220/206.png +0 -0
  285. package/src/assets//351/232/220/346/202/243/346/225/264/346/224/271.png +0 -0
  286. package/src/assets//351/233/206/344/270/255/345/256/211/346/243/200.png +0 -0
  287. package/src/assets//351/233/206/344/270/255/345/256/211/346/243/2002.png +0 -0
  288. package/src/assets//351/253/230/345/257/206/345/205/254/345/221/212.png +0 -0
  289. package/src/bootstrap/fonts/glyphicons-halflings-regular.svg +287 -287
  290. package/src/bootstrap/less/.csscomb.json +304 -304
  291. package/src/bootstrap/less/.csslintrc +19 -19
  292. package/src/bootstrap/less/alerts.less +73 -73
  293. package/src/bootstrap/less/badges.less +66 -66
  294. package/src/bootstrap/less/bootstrap.less +56 -56
  295. package/src/bootstrap/less/breadcrumbs.less +26 -26
  296. package/src/bootstrap/less/button-groups.less +247 -247
  297. package/src/bootstrap/less/buttons.less +172 -172
  298. package/src/bootstrap/less/carousel.less +269 -269
  299. package/src/bootstrap/less/close.less +34 -34
  300. package/src/bootstrap/less/code.less +69 -69
  301. package/src/bootstrap/less/component-animations.less +33 -33
  302. package/src/bootstrap/less/dropdowns.less +216 -216
  303. package/src/bootstrap/less/forms.less +626 -626
  304. package/src/bootstrap/less/glyphicons.less +305 -305
  305. package/src/bootstrap/less/grid.less +84 -84
  306. package/src/bootstrap/less/input-groups.less +167 -167
  307. package/src/bootstrap/less/jumbotron.less +52 -52
  308. package/src/bootstrap/less/labels.less +64 -64
  309. package/src/bootstrap/less/list-group.less +141 -141
  310. package/src/bootstrap/less/media.less +66 -66
  311. package/src/bootstrap/less/mixins/alerts.less +14 -14
  312. package/src/bootstrap/less/mixins/background-variant.less +9 -9
  313. package/src/bootstrap/less/mixins/border-radius.less +18 -18
  314. package/src/bootstrap/less/mixins/buttons.less +69 -69
  315. package/src/bootstrap/less/mixins/center-block.less +7 -7
  316. package/src/bootstrap/less/mixins/clearfix.less +22 -22
  317. package/src/bootstrap/less/mixins/forms.less +90 -90
  318. package/src/bootstrap/less/mixins/gradients.less +59 -59
  319. package/src/bootstrap/less/mixins/grid-framework.less +92 -92
  320. package/src/bootstrap/less/mixins/grid.less +122 -122
  321. package/src/bootstrap/less/mixins/hide-text.less +21 -21
  322. package/src/bootstrap/less/mixins/image.less +33 -33
  323. package/src/bootstrap/less/mixins/labels.less +12 -12
  324. package/src/bootstrap/less/mixins/list-group.less +30 -30
  325. package/src/bootstrap/less/mixins/nav-divider.less +10 -10
  326. package/src/bootstrap/less/mixins/nav-vertical-align.less +9 -9
  327. package/src/bootstrap/less/mixins/opacity.less +8 -8
  328. package/src/bootstrap/less/mixins/pagination.less +24 -24
  329. package/src/bootstrap/less/mixins/panels.less +24 -24
  330. package/src/bootstrap/less/mixins/progress-bar.less +10 -10
  331. package/src/bootstrap/less/mixins/reset-filter.less +8 -8
  332. package/src/bootstrap/less/mixins/reset-text.less +18 -18
  333. package/src/bootstrap/less/mixins/resize.less +6 -6
  334. package/src/bootstrap/less/mixins/responsive-visibility.less +15 -15
  335. package/src/bootstrap/less/mixins/size.less +10 -10
  336. package/src/bootstrap/less/mixins/tab-focus.less +9 -9
  337. package/src/bootstrap/less/mixins/table-row.less +44 -44
  338. package/src/bootstrap/less/mixins/text-emphasis.less +9 -9
  339. package/src/bootstrap/less/mixins/text-overflow.less +8 -8
  340. package/src/bootstrap/less/mixins/vendor-prefixes.less +227 -227
  341. package/src/bootstrap/less/mixins.less +40 -40
  342. package/src/bootstrap/less/modals.less +151 -151
  343. package/src/bootstrap/less/navbar.less +660 -660
  344. package/src/bootstrap/less/navs.less +286 -286
  345. package/src/bootstrap/less/normalize.less +424 -424
  346. package/src/bootstrap/less/pager.less +76 -76
  347. package/src/bootstrap/less/pagination.less +89 -89
  348. package/src/bootstrap/less/panels.less +275 -275
  349. package/src/bootstrap/less/popovers.less +131 -131
  350. package/src/bootstrap/less/print.less +101 -101
  351. package/src/bootstrap/less/progress-bars.less +87 -87
  352. package/src/bootstrap/less/responsive-embed.less +35 -35
  353. package/src/bootstrap/less/responsive-utilities.less +194 -194
  354. package/src/bootstrap/less/scaffolding.less +161 -161
  355. package/src/bootstrap/less/tables.less +262 -262
  356. package/src/bootstrap/less/theme.less +291 -291
  357. package/src/bootstrap/less/thumbnails.less +36 -36
  358. package/src/bootstrap/less/tooltip.less +102 -102
  359. package/src/bootstrap/less/type.less +303 -303
  360. package/src/bootstrap/less/utilities.less +55 -55
  361. package/src/bootstrap/less/variables.less +895 -895
  362. package/src/bootstrap/less/wells.less +29 -29
  363. package/src/components/AloneLoadParams.vue +26 -26
  364. package/src/components/AlreadyService.vue +193 -0
  365. package/src/components/AttendManage.vue +419 -0
  366. package/src/components/LoadAppdata.vue +38 -38
  367. package/src/components/LoginApp.vue +625 -509
  368. package/src/components/LoginAppNew.vue +587 -0
  369. package/src/components/ModifyPassWord.vue +192 -180
  370. package/src/components/NavBottom.vue +117 -118
  371. package/src/components/NavBottomV.vue +141 -140
  372. package/src/components/NavBottomVVV.vue +185 -0
  373. package/src/components/OnlineManage.vue +198 -0
  374. package/src/components/PhoneChangemeterInfo.vue +116 -119
  375. package/src/components/PhoneInfoTable.vue +39 -36
  376. package/src/components/PhoneRepairInfo.vue +146 -0
  377. package/src/components/PhoneSellInfo.vue +123 -122
  378. package/src/components/PhoneSellInfoLite.vue +112 -0
  379. package/src/components/PhoneUser.vue +202 -0
  380. package/src/components/PhoneUserDetil.vue +70 -0
  381. package/src/components/PhoneUserFind.vue +138 -137
  382. package/src/components/RightTree.vue +214 -0
  383. package/src/components/SystemSetUp.vue +298 -113
  384. package/src/components/TabBarPhone.vue +81 -0
  385. package/src/components/Test.vue +14 -14
  386. package/src/components/ToolsPage.vue +165 -163
  387. package/src/components/UploadManage.vue +194 -0
  388. package/src/components/gaomi/NavBottomV.vue +223 -0
  389. package/src/components/gaomi/NavBottomVVVV.vue +210 -0
  390. package/src/components/gaomi/Scroller.vue +63 -0
  391. package/src/components/gaomi/SystemSetUp.vue +186 -0
  392. package/src/components/gaomi/ToolsPage.vue +168 -0
  393. package/src/components/idea/feedBack.vue +150 -0
  394. package/src/components/idea/feedbackAdd.vue +366 -0
  395. package/src/components/iot/InstructMessage.vue +313 -0
  396. package/src/components/iot/IotBaseInfo.vue +97 -0
  397. package/src/components/iot/IotMeterInfo.vue +77 -0
  398. package/src/components/iot/iotMonitoringMain.vue +501 -0
  399. package/src/components/online/ApplyOnline.vue +582 -0
  400. package/src/components/online/BJZhongRan/ApplyOnline.vue +601 -0
  401. package/src/components/screen/ChargeContentPage.vue +656 -0
  402. package/src/components/screen/ContentPage.vue +611 -0
  403. package/src/components/screen/GongdanContentPage.vue +149 -0
  404. package/src/components/screen/ListCountItem.vue +93 -0
  405. package/src/components/screen/ModuleTitle.vue +48 -0
  406. package/src/components/screen/SafeOrderContentPage.vue +440 -0
  407. package/src/components/screen/SecurityCheckItem.vue +50 -0
  408. package/src/components/screen/TotalItem.vue +76 -0
  409. package/src/components/screen/TotalUserNumber.vue +77 -0
  410. package/src/components/screen/WorkOrderItem.vue +51 -0
  411. package/src/components/screen/WorkOrderRightDownItem.vue +103 -0
  412. package/src/components/screen/WorkOrderRightItem.vue +115 -0
  413. package/src/components/userinfo/paymentQuery.vue +189 -0
  414. package/src/components/userinfo/queryFile.vue +190 -0
  415. package/src/components/wasm.vue +18 -18
  416. package/src/expandcssAndroid.less +521 -517
  417. package/src/image/touxiang.jpg +0 -0
  418. package/src/index.js +9 -7
  419. package/src/main.js +38 -35
  420. package/src/plugins/GetStringData.js +18 -18
  421. package/src/plugins/LoadParams.js +24 -24
  422. package/src/plugins/const.js +404 -0
  423. package/src/plugins/vue-py.js +37 -0
  424. package/src/services/ConfigService.js +24 -24
  425. package/src/stores/AppData.js +63 -73
  426. package/src/systemphone-gaomi.js +105 -0
  427. package/src/systemphone.js +58 -42
  428. package/src/systemphonegrid.js +186 -62
  429. package/src/util/LdapHelper.js +75 -0
  430. package/static/app.json +4 -4
  431. package/static/const.js +404 -0
  432. package/static/globals.txt +74 -74
  433. package/static/layui/css/layui.css +1 -0
  434. package/static/layui/css/modules/code.css +1 -0
  435. package/static/layui/css/modules/laydate/default/laydate.css +1 -0
  436. package/static/layui/css/modules/layer/default/icon-ext.png +0 -0
  437. package/static/layui/css/modules/layer/default/icon.png +0 -0
  438. package/static/layui/css/modules/layer/default/layer.css +1 -0
  439. package/static/layui/css/modules/layer/default/loading-0.gif +0 -0
  440. package/static/layui/css/modules/layer/default/loading-1.gif +0 -0
  441. package/static/layui/css/modules/layer/default/loading-2.gif +0 -0
  442. package/static/layui/font/iconfont.eot +0 -0
  443. package/static/layui/font/iconfont.svg +554 -0
  444. package/static/layui/font/iconfont.ttf +0 -0
  445. package/static/layui/font/iconfont.woff +0 -0
  446. package/static/layui/font/iconfont.woff2 +0 -0
  447. package/static/layui/layui.js +1 -0
  448. package/static/vue-py.js +37 -0
  449. package/static/wasm_exec.js +465 -465
  450. package/test/unit/.eslintrc +5 -5
  451. package/test/unit/TestUtil.js +35 -35
  452. package/test/unit/context.html +20 -20
  453. package/test/unit/index.js +13 -13
  454. package/test/unit/init.js +13 -13
  455. package/test/unit/karma.conf.js +50 -50
  456. package/test/unit/specs/App.spec.js +17 -17
  457. package/test/unit/specs/Test.spec.js +28 -28
  458. package/test/unit/specs/components/LoginApp.spec.js +21 -21
  459. package/test/unit/specs/sevices/ConfigService.spec.js +23 -23
  460. package/test/unit/specs/sevices/GetDBTest.spec.js +28 -28
  461. package/.npmignore +0 -9
  462. package/src/assets//347/202/271/347/201/253/351/200/232/346/260/224/347/253/226/345/261/2173.png +0 -0
  463. package/yarn.lock +0 -6399
  464. /package/src/assets//347/253/231/347/202/271/{346/264/276 → 345/267/245}/345/215/225/347/253/226/345/261/2173.png" +0 -0
@@ -1,424 +1,424 @@
1
- /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
2
-
3
- //
4
- // 1. Set default font family to sans-serif.
5
- // 2. Prevent iOS and IE text size adjust after device orientation change,
6
- // without disabling user zoom.
7
- //
8
-
9
- html {
10
- font-family: sans-serif; // 1
11
- -ms-text-size-adjust: 100%; // 2
12
- -webkit-text-size-adjust: 100%; // 2
13
- }
14
-
15
- //
16
- // Remove default margin.
17
- //
18
-
19
- body {
20
- margin: 0;
21
- }
22
-
23
- // HTML5 display definitions
24
- // ==========================================================================
25
-
26
- //
27
- // Correct `block` display not defined for any HTML5 element in IE 8/9.
28
- // Correct `block` display not defined for `details` or `summary` in IE 10/11
29
- // and Firefox.
30
- // Correct `block` display not defined for `main` in IE 11.
31
- //
32
-
33
- article,
34
- aside,
35
- details,
36
- figcaption,
37
- figure,
38
- footer,
39
- header,
40
- hgroup,
41
- main,
42
- menu,
43
- nav,
44
- section,
45
- summary {
46
- display: block;
47
- }
48
-
49
- //
50
- // 1. Correct `inline-block` display not defined in IE 8/9.
51
- // 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
- //
53
-
54
- audio,
55
- canvas,
56
- progress,
57
- video {
58
- display: inline-block; // 1
59
- vertical-align: baseline; // 2
60
- }
61
-
62
- //
63
- // Prevent modern browsers from displaying `audio` without controls.
64
- // Remove excess height in iOS 5 devices.
65
- //
66
-
67
- audio:not([controls]) {
68
- display: none;
69
- height: 0;
70
- }
71
-
72
- //
73
- // Address `[hidden]` styling not present in IE 8/9/10.
74
- // Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
75
- //
76
-
77
- [hidden],
78
- template {
79
- display: none;
80
- }
81
-
82
- // Links
83
- // ==========================================================================
84
-
85
- //
86
- // Remove the gray background color from active links in IE 10.
87
- //
88
-
89
- a {
90
- background-color: transparent;
91
- }
92
-
93
- //
94
- // Improve readability of focused elements when they are also in an
95
- // active/hover state.
96
- //
97
-
98
- a:active,
99
- a:hover {
100
- outline: 0;
101
- }
102
-
103
- // Text-level semantics
104
- // ==========================================================================
105
-
106
- //
107
- // Address styling not present in IE 8/9/10/11, Safari, and Chrome.
108
- //
109
-
110
- abbr[title] {
111
- border-bottom: 1px dotted;
112
- }
113
-
114
- //
115
- // Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
116
- //
117
-
118
- b,
119
- strong {
120
- font-weight: bold;
121
- }
122
-
123
- //
124
- // Address styling not present in Safari and Chrome.
125
- //
126
-
127
- dfn {
128
- font-style: italic;
129
- }
130
-
131
- //
132
- // Address variable `h1` font-size and margin within `section` and `article`
133
- // contexts in Firefox 4+, Safari, and Chrome.
134
- //
135
-
136
- h1 {
137
- font-size: 2em;
138
- margin: 0.67em 0;
139
- }
140
-
141
- //
142
- // Address styling not present in IE 8/9.
143
- //
144
-
145
- mark {
146
- background: #ff0;
147
- color: #000;
148
- }
149
-
150
- //
151
- // Address inconsistent and variable font size in all browsers.
152
- //
153
-
154
- small {
155
- font-size: 80%;
156
- }
157
-
158
- //
159
- // Prevent `sub` and `sup` affecting `line-height` in all browsers.
160
- //
161
-
162
- sub,
163
- sup {
164
- font-size: 75%;
165
- line-height: 0;
166
- position: relative;
167
- vertical-align: baseline;
168
- }
169
-
170
- sup {
171
- top: -0.5em;
172
- }
173
-
174
- sub {
175
- bottom: -0.25em;
176
- }
177
-
178
- // Embedded content
179
- // ==========================================================================
180
-
181
- //
182
- // Remove border when inside `a` element in IE 8/9/10.
183
- //
184
-
185
- img {
186
- border: 0;
187
- }
188
-
189
- //
190
- // Correct overflow not hidden in IE 9/10/11.
191
- //
192
-
193
- svg:not(:root) {
194
- overflow: hidden;
195
- }
196
-
197
- // Grouping content
198
- // ==========================================================================
199
-
200
- //
201
- // Address margin not present in IE 8/9 and Safari.
202
- //
203
-
204
- figure {
205
- margin: 1em 40px;
206
- }
207
-
208
- //
209
- // Address differences between Firefox and other browsers.
210
- //
211
-
212
- hr {
213
- box-sizing: content-box;
214
- height: 0;
215
- }
216
-
217
- //
218
- // Contain overflow in all browsers.
219
- //
220
-
221
- pre {
222
- overflow: auto;
223
- }
224
-
225
- //
226
- // Address odd `em`-unit font size rendering in all browsers.
227
- //
228
-
229
- code,
230
- kbd,
231
- pre,
232
- samp {
233
- font-family: monospace, monospace;
234
- font-size: 1em;
235
- }
236
-
237
- // Forms
238
- // ==========================================================================
239
-
240
- //
241
- // Known limitation: by default, Chrome and Safari on OS X allow very limited
242
- // styling of `select`, unless a `border` property is set.
243
- //
244
-
245
- //
246
- // 1. Correct color not being inherited.
247
- // Known issue: affects color of disabled elements.
248
- // 2. Correct font properties not being inherited.
249
- // 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250
- //
251
-
252
- button,
253
- input,
254
- optgroup,
255
- select,
256
- textarea {
257
- color: inherit; // 1
258
- font: inherit; // 2
259
- margin: 0; // 3
260
- }
261
-
262
- //
263
- // Address `overflow` set to `hidden` in IE 8/9/10/11.
264
- //
265
-
266
- button {
267
- overflow: visible;
268
- }
269
-
270
- //
271
- // Address inconsistent `text-transform` inheritance for `button` and `select`.
272
- // All other form control elements do not inherit `text-transform` values.
273
- // Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
- // Correct `select` style inheritance in Firefox.
275
- //
276
-
277
- button,
278
- select {
279
- text-transform: none;
280
- }
281
-
282
- //
283
- // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
- // and `video` controls.
285
- // 2. Correct inability to style clickable `input` types in iOS.
286
- // 3. Improve usability and consistency of cursor style between image-type
287
- // `input` and others.
288
- //
289
-
290
- button,
291
- html input[type="button"], // 1
292
- input[type="reset"],
293
- input[type="submit"] {
294
- -webkit-appearance: button; // 2
295
- cursor: pointer; // 3
296
- }
297
-
298
- //
299
- // Re-set default cursor for disabled elements.
300
- //
301
-
302
- button[disabled],
303
- html input[disabled] {
304
- cursor: default;
305
- }
306
-
307
- //
308
- // Remove inner padding and border in Firefox 4+.
309
- //
310
-
311
- button::-moz-focus-inner,
312
- input::-moz-focus-inner {
313
- border: 0;
314
- padding: 0;
315
- }
316
-
317
- //
318
- // Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
- // the UA stylesheet.
320
- //
321
-
322
- input {
323
- line-height: normal;
324
- }
325
-
326
- //
327
- // It's recommended that you don't attempt to style these elements.
328
- // Firefox's implementation doesn't respect box-sizing, padding, or width.
329
- //
330
- // 1. Address box sizing set to `content-box` in IE 8/9/10.
331
- // 2. Remove excess padding in IE 8/9/10.
332
- //
333
-
334
- input[type="checkbox"],
335
- input[type="radio"] {
336
- box-sizing: border-box; // 1
337
- padding: 0; // 2
338
- }
339
-
340
- //
341
- // Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
- // `font-size` values of the `input`, it causes the cursor style of the
343
- // decrement button to change from `default` to `text`.
344
- //
345
-
346
- input[type="number"]::-webkit-inner-spin-button,
347
- input[type="number"]::-webkit-outer-spin-button {
348
- height: auto;
349
- }
350
-
351
- //
352
- // 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
- // 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
354
- //
355
-
356
- input[type="search"] {
357
- -webkit-appearance: textfield; // 1
358
- box-sizing: content-box; //2
359
- }
360
-
361
- //
362
- // Remove inner padding and search cancel button in Safari and Chrome on OS X.
363
- // Safari (but not Chrome) clips the cancel button when the search input has
364
- // padding (and `textfield` appearance).
365
- //
366
-
367
- input[type="search"]::-webkit-search-cancel-button,
368
- input[type="search"]::-webkit-search-decoration {
369
- -webkit-appearance: none;
370
- }
371
-
372
- //
373
- // Define consistent border, margin, and padding.
374
- //
375
-
376
- fieldset {
377
- border: 1px solid #c0c0c0;
378
- margin: 0 2px;
379
- padding: 0.35em 0.625em 0.75em;
380
- }
381
-
382
- //
383
- // 1. Correct `color` not being inherited in IE 8/9/10/11.
384
- // 2. Remove padding so people aren't caught out if they zero out fieldsets.
385
- //
386
-
387
- legend {
388
- border: 0; // 1
389
- padding: 0; // 2
390
- }
391
-
392
- //
393
- // Remove default vertical scrollbar in IE 8/9/10/11.
394
- //
395
-
396
- textarea {
397
- overflow: auto;
398
- }
399
-
400
- //
401
- // Don't inherit the `font-weight` (applied by a rule above).
402
- // NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
403
- //
404
-
405
- optgroup {
406
- font-weight: bold;
407
- }
408
-
409
- // Tables
410
- // ==========================================================================
411
-
412
- //
413
- // Remove most spacing between table cells.
414
- //
415
-
416
- table {
417
- border-collapse: collapse;
418
- border-spacing: 0;
419
- }
420
-
421
- td,
422
- th {
423
- padding: 0;
424
- }
1
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ //
4
+ // 1. Set default font family to sans-serif.
5
+ // 2. Prevent iOS and IE text size adjust after device orientation change,
6
+ // without disabling user zoom.
7
+ //
8
+
9
+ html {
10
+ font-family: sans-serif; // 1
11
+ -ms-text-size-adjust: 100%; // 2
12
+ -webkit-text-size-adjust: 100%; // 2
13
+ }
14
+
15
+ //
16
+ // Remove default margin.
17
+ //
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ // HTML5 display definitions
24
+ // ==========================================================================
25
+
26
+ //
27
+ // Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ // Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ // and Firefox.
30
+ // Correct `block` display not defined for `main` in IE 11.
31
+ //
32
+
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block;
47
+ }
48
+
49
+ //
50
+ // 1. Correct `inline-block` display not defined in IE 8/9.
51
+ // 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
+ //
53
+
54
+ audio,
55
+ canvas,
56
+ progress,
57
+ video {
58
+ display: inline-block; // 1
59
+ vertical-align: baseline; // 2
60
+ }
61
+
62
+ //
63
+ // Prevent modern browsers from displaying `audio` without controls.
64
+ // Remove excess height in iOS 5 devices.
65
+ //
66
+
67
+ audio:not([controls]) {
68
+ display: none;
69
+ height: 0;
70
+ }
71
+
72
+ //
73
+ // Address `[hidden]` styling not present in IE 8/9/10.
74
+ // Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
75
+ //
76
+
77
+ [hidden],
78
+ template {
79
+ display: none;
80
+ }
81
+
82
+ // Links
83
+ // ==========================================================================
84
+
85
+ //
86
+ // Remove the gray background color from active links in IE 10.
87
+ //
88
+
89
+ a {
90
+ background-color: transparent;
91
+ }
92
+
93
+ //
94
+ // Improve readability of focused elements when they are also in an
95
+ // active/hover state.
96
+ //
97
+
98
+ a:active,
99
+ a:hover {
100
+ outline: 0;
101
+ }
102
+
103
+ // Text-level semantics
104
+ // ==========================================================================
105
+
106
+ //
107
+ // Address styling not present in IE 8/9/10/11, Safari, and Chrome.
108
+ //
109
+
110
+ abbr[title] {
111
+ border-bottom: 1px dotted;
112
+ }
113
+
114
+ //
115
+ // Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
116
+ //
117
+
118
+ b,
119
+ strong {
120
+ font-weight: bold;
121
+ }
122
+
123
+ //
124
+ // Address styling not present in Safari and Chrome.
125
+ //
126
+
127
+ dfn {
128
+ font-style: italic;
129
+ }
130
+
131
+ //
132
+ // Address variable `h1` font-size and margin within `section` and `article`
133
+ // contexts in Firefox 4+, Safari, and Chrome.
134
+ //
135
+
136
+ h1 {
137
+ font-size: 2em;
138
+ margin: 0.67em 0;
139
+ }
140
+
141
+ //
142
+ // Address styling not present in IE 8/9.
143
+ //
144
+
145
+ mark {
146
+ background: #ff0;
147
+ color: #000;
148
+ }
149
+
150
+ //
151
+ // Address inconsistent and variable font size in all browsers.
152
+ //
153
+
154
+ small {
155
+ font-size: 80%;
156
+ }
157
+
158
+ //
159
+ // Prevent `sub` and `sup` affecting `line-height` in all browsers.
160
+ //
161
+
162
+ sub,
163
+ sup {
164
+ font-size: 75%;
165
+ line-height: 0;
166
+ position: relative;
167
+ vertical-align: baseline;
168
+ }
169
+
170
+ sup {
171
+ top: -0.5em;
172
+ }
173
+
174
+ sub {
175
+ bottom: -0.25em;
176
+ }
177
+
178
+ // Embedded content
179
+ // ==========================================================================
180
+
181
+ //
182
+ // Remove border when inside `a` element in IE 8/9/10.
183
+ //
184
+
185
+ img {
186
+ border: 0;
187
+ }
188
+
189
+ //
190
+ // Correct overflow not hidden in IE 9/10/11.
191
+ //
192
+
193
+ svg:not(:root) {
194
+ overflow: hidden;
195
+ }
196
+
197
+ // Grouping content
198
+ // ==========================================================================
199
+
200
+ //
201
+ // Address margin not present in IE 8/9 and Safari.
202
+ //
203
+
204
+ figure {
205
+ margin: 1em 40px;
206
+ }
207
+
208
+ //
209
+ // Address differences between Firefox and other browsers.
210
+ //
211
+
212
+ hr {
213
+ box-sizing: content-box;
214
+ height: 0;
215
+ }
216
+
217
+ //
218
+ // Contain overflow in all browsers.
219
+ //
220
+
221
+ pre {
222
+ overflow: auto;
223
+ }
224
+
225
+ //
226
+ // Address odd `em`-unit font size rendering in all browsers.
227
+ //
228
+
229
+ code,
230
+ kbd,
231
+ pre,
232
+ samp {
233
+ font-family: monospace, monospace;
234
+ font-size: 1em;
235
+ }
236
+
237
+ // Forms
238
+ // ==========================================================================
239
+
240
+ //
241
+ // Known limitation: by default, Chrome and Safari on OS X allow very limited
242
+ // styling of `select`, unless a `border` property is set.
243
+ //
244
+
245
+ //
246
+ // 1. Correct color not being inherited.
247
+ // Known issue: affects color of disabled elements.
248
+ // 2. Correct font properties not being inherited.
249
+ // 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250
+ //
251
+
252
+ button,
253
+ input,
254
+ optgroup,
255
+ select,
256
+ textarea {
257
+ color: inherit; // 1
258
+ font: inherit; // 2
259
+ margin: 0; // 3
260
+ }
261
+
262
+ //
263
+ // Address `overflow` set to `hidden` in IE 8/9/10/11.
264
+ //
265
+
266
+ button {
267
+ overflow: visible;
268
+ }
269
+
270
+ //
271
+ // Address inconsistent `text-transform` inheritance for `button` and `select`.
272
+ // All other form control elements do not inherit `text-transform` values.
273
+ // Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
+ // Correct `select` style inheritance in Firefox.
275
+ //
276
+
277
+ button,
278
+ select {
279
+ text-transform: none;
280
+ }
281
+
282
+ //
283
+ // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
+ // and `video` controls.
285
+ // 2. Correct inability to style clickable `input` types in iOS.
286
+ // 3. Improve usability and consistency of cursor style between image-type
287
+ // `input` and others.
288
+ //
289
+
290
+ button,
291
+ html input[type="button"], // 1
292
+ input[type="reset"],
293
+ input[type="submit"] {
294
+ -webkit-appearance: button; // 2
295
+ cursor: pointer; // 3
296
+ }
297
+
298
+ //
299
+ // Re-set default cursor for disabled elements.
300
+ //
301
+
302
+ button[disabled],
303
+ html input[disabled] {
304
+ cursor: default;
305
+ }
306
+
307
+ //
308
+ // Remove inner padding and border in Firefox 4+.
309
+ //
310
+
311
+ button::-moz-focus-inner,
312
+ input::-moz-focus-inner {
313
+ border: 0;
314
+ padding: 0;
315
+ }
316
+
317
+ //
318
+ // Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
+ // the UA stylesheet.
320
+ //
321
+
322
+ input {
323
+ line-height: normal;
324
+ }
325
+
326
+ //
327
+ // It's recommended that you don't attempt to style these elements.
328
+ // Firefox's implementation doesn't respect box-sizing, padding, or width.
329
+ //
330
+ // 1. Address box sizing set to `content-box` in IE 8/9/10.
331
+ // 2. Remove excess padding in IE 8/9/10.
332
+ //
333
+
334
+ input[type="checkbox"],
335
+ input[type="radio"] {
336
+ box-sizing: border-box; // 1
337
+ padding: 0; // 2
338
+ }
339
+
340
+ //
341
+ // Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
+ // `font-size` values of the `input`, it causes the cursor style of the
343
+ // decrement button to change from `default` to `text`.
344
+ //
345
+
346
+ input[type="number"]::-webkit-inner-spin-button,
347
+ input[type="number"]::-webkit-outer-spin-button {
348
+ height: auto;
349
+ }
350
+
351
+ //
352
+ // 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
+ // 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
354
+ //
355
+
356
+ input[type="search"] {
357
+ -webkit-appearance: textfield; // 1
358
+ box-sizing: content-box; //2
359
+ }
360
+
361
+ //
362
+ // Remove inner padding and search cancel button in Safari and Chrome on OS X.
363
+ // Safari (but not Chrome) clips the cancel button when the search input has
364
+ // padding (and `textfield` appearance).
365
+ //
366
+
367
+ input[type="search"]::-webkit-search-cancel-button,
368
+ input[type="search"]::-webkit-search-decoration {
369
+ -webkit-appearance: none;
370
+ }
371
+
372
+ //
373
+ // Define consistent border, margin, and padding.
374
+ //
375
+
376
+ fieldset {
377
+ border: 1px solid #c0c0c0;
378
+ margin: 0 2px;
379
+ padding: 0.35em 0.625em 0.75em;
380
+ }
381
+
382
+ //
383
+ // 1. Correct `color` not being inherited in IE 8/9/10/11.
384
+ // 2. Remove padding so people aren't caught out if they zero out fieldsets.
385
+ //
386
+
387
+ legend {
388
+ border: 0; // 1
389
+ padding: 0; // 2
390
+ }
391
+
392
+ //
393
+ // Remove default vertical scrollbar in IE 8/9/10/11.
394
+ //
395
+
396
+ textarea {
397
+ overflow: auto;
398
+ }
399
+
400
+ //
401
+ // Don't inherit the `font-weight` (applied by a rule above).
402
+ // NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
403
+ //
404
+
405
+ optgroup {
406
+ font-weight: bold;
407
+ }
408
+
409
+ // Tables
410
+ // ==========================================================================
411
+
412
+ //
413
+ // Remove most spacing between table cells.
414
+ //
415
+
416
+ table {
417
+ border-collapse: collapse;
418
+ border-spacing: 0;
419
+ }
420
+
421
+ td,
422
+ th {
423
+ padding: 0;
424
+ }