fontastic 0.1.3

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 (370) hide show
  1. package/.editorconfig +16 -0
  2. package/.eslintrc.json +54 -0
  3. package/.github/FUNDING.yml +12 -0
  4. package/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  6. package/.github/dependabot.yml +6 -0
  7. package/.github/pull_request_template.md +21 -0
  8. package/.github/stale.yml +17 -0
  9. package/.github/workflows/macos.yml +58 -0
  10. package/.github/workflows/ubuntu.yml +70 -0
  11. package/.github/workflows/windows.yml +64 -0
  12. package/.node-version +1 -0
  13. package/.vscode/launch.json +46 -0
  14. package/.vscode/tasks.json +49 -0
  15. package/CODE_OF_CONDUCT.md +45 -0
  16. package/CONTRIBUTING.md +72 -0
  17. package/LICENSE +21 -0
  18. package/README.md +111 -0
  19. package/_config.yml +1 -0
  20. package/angular.json +194 -0
  21. package/angular.webpack.js +32 -0
  22. package/app/Application.js +40 -0
  23. package/app/Application.ts +38 -0
  24. package/app/config/alert.ts +32 -0
  25. package/app/config/database.js +203 -0
  26. package/app/config/database.ts +202 -0
  27. package/app/config/index.js +20 -0
  28. package/app/config/index.ts +3 -0
  29. package/app/config/mimes.js +49 -0
  30. package/app/config/mimes.ts +54 -0
  31. package/app/config/system.js +497 -0
  32. package/app/config/system.ts +498 -0
  33. package/app/config/themes.ts +38 -0
  34. package/app/core/AppLogger.js +31 -0
  35. package/app/core/AppLogger.ts +38 -0
  36. package/app/core/ConfigManager.js +114 -0
  37. package/app/core/ConfigManager.ts +137 -0
  38. package/app/core/ConnectionManager.js +83 -0
  39. package/app/core/ConnectionManager.ts +95 -0
  40. package/app/core/FontCatalog.js +51 -0
  41. package/app/core/FontCatalog.ts +42 -0
  42. package/app/core/FontFinder.js +86 -0
  43. package/app/core/FontFinder.ts +96 -0
  44. package/app/core/FontInstaller.js +67 -0
  45. package/app/core/FontInstaller.ts +63 -0
  46. package/app/core/FontManager.js +165 -0
  47. package/app/core/FontManager.ts +172 -0
  48. package/app/core/FontObject.js +54 -0
  49. package/app/core/FontObject.ts +62 -0
  50. package/app/core/MessageHandler.js +272 -0
  51. package/app/core/MessageHandler.ts +337 -0
  52. package/app/core/SystemManager.js +140 -0
  53. package/app/core/SystemManager.ts +171 -0
  54. package/app/core/menu/Example.ts +280 -0
  55. package/app/core/menu/MenuBuilder.js +45 -0
  56. package/app/core/menu/MenuBuilder.ts +53 -0
  57. package/app/core/menu/templates/DarwinTemplate.js +127 -0
  58. package/app/core/menu/templates/DarwinTemplate.ts +142 -0
  59. package/app/core/menu/templates/SystemTemplate.js +124 -0
  60. package/app/core/menu/templates/SystemTemplate.ts +139 -0
  61. package/app/database/entity/Collection.schema.js +99 -0
  62. package/app/database/entity/Collection.schema.ts +68 -0
  63. package/app/database/entity/Logger.schema.js +50 -0
  64. package/app/database/entity/Logger.schema.ts +26 -0
  65. package/app/database/entity/Store.schema.js +165 -0
  66. package/app/database/entity/Store.schema.ts +116 -0
  67. package/app/database/entity/index.js +20 -0
  68. package/app/database/entity/index.ts +3 -0
  69. package/app/database/repository/Collection.repository.js +181 -0
  70. package/app/database/repository/Collection.repository.ts +190 -0
  71. package/app/database/repository/Logger.repository.js +25 -0
  72. package/app/database/repository/Logger.repository.ts +11 -0
  73. package/app/database/repository/Store.repository.js +328 -0
  74. package/app/database/repository/Store.repository.ts +358 -0
  75. package/app/database/repository/User.repository.js +12 -0
  76. package/app/database/repository/User.repository.ts +8 -0
  77. package/app/database/repository/index.js +20 -0
  78. package/app/database/repository/index.ts +3 -0
  79. package/app/enums/ChannelType.js +62 -0
  80. package/app/enums/ChannelType.ts +65 -0
  81. package/app/enums/StorageType.js +19 -0
  82. package/app/enums/index.js +19 -0
  83. package/app/enums/index.ts +2 -0
  84. package/app/enums/storageType.ts +14 -0
  85. package/app/helpers/command.js +28 -0
  86. package/app/helpers/command.ts +20 -0
  87. package/app/helpers/random.js +16 -0
  88. package/app/helpers/random.ts +12 -0
  89. package/app/main.js +82 -0
  90. package/app/main.ts +94 -0
  91. package/app/package-lock.json +2649 -0
  92. package/app/package.json +35 -0
  93. package/app/types/AppAlert.js +3 -0
  94. package/app/types/AppAlert.ts +8 -0
  95. package/app/types/AuthUser.js +7 -0
  96. package/app/types/AuthUser.ts +5 -0
  97. package/app/types/Breadcrumb.js +3 -0
  98. package/app/types/Breadcrumb.ts +5 -0
  99. package/app/types/ImportOptions.js +7 -0
  100. package/app/types/ImportOptions.ts +3 -0
  101. package/app/types/QueryOptions.js +3 -0
  102. package/app/types/QueryOptions.ts +12 -0
  103. package/app/types/SystemConfig.js +3 -0
  104. package/app/types/SystemConfig.ts +132 -0
  105. package/app/types/SystemStats.js +3 -0
  106. package/app/types/SystemStats.ts +7 -0
  107. package/app/types/SystemTheme.js +3 -0
  108. package/app/types/SystemTheme.ts +5 -0
  109. package/app/types/index.js +25 -0
  110. package/app/types/index.ts +8 -0
  111. package/docs/logo.png +0 -0
  112. package/docs/screenshots/readme.md +7 -0
  113. package/docs/screenshots/screen-grab1.png +0 -0
  114. package/docs/screenshots/screen-grab2.png +0 -0
  115. package/docs/screenshots/screen-grab3.png +0 -0
  116. package/e2e/main.spec.ts +59 -0
  117. package/e2e/playwright.config.ts +19 -0
  118. package/e2e/tsconfig.e2e.json +13 -0
  119. package/electron-builder.json +71 -0
  120. package/package.json +121 -0
  121. package/src/app/app-routing.module.ts +15 -0
  122. package/src/app/app.component.html +1 -0
  123. package/src/app/app.component.scss +0 -0
  124. package/src/app/app.component.spec.ts.dist +33 -0
  125. package/src/app/app.component.ts +37 -0
  126. package/src/app/app.module.ts +63 -0
  127. package/src/app/core/core.module.ts +11 -0
  128. package/src/app/core/model/AuthUserModel.ts +7 -0
  129. package/src/app/core/model/CustomThemeModel.ts +7 -0
  130. package/src/app/core/model/DbConnectionModel.ts +16 -0
  131. package/src/app/core/model/ImportOptionsModel.ts +5 -0
  132. package/src/app/core/model/LatestNewsModel.ts +7 -0
  133. package/src/app/core/model/SearchFormModel.ts +10 -0
  134. package/src/app/core/model/index.ts +6 -0
  135. package/src/app/core/services/alert/alert.service.spec.ts +22 -0
  136. package/src/app/core/services/alert/alert.service.ts +71 -0
  137. package/src/app/core/services/auth/auth.service.ts +30 -0
  138. package/src/app/core/services/boot/boot.service.ts +33 -0
  139. package/src/app/core/services/breadcrumb/breadcrumb.service.spec.ts +22 -0
  140. package/src/app/core/services/breadcrumb/breadcrumb.service.ts +30 -0
  141. package/src/app/core/services/config/config.service.ts +63 -0
  142. package/src/app/core/services/database/database.service.ts +286 -0
  143. package/src/app/core/services/electron/electron.service.spec.ts +12 -0
  144. package/src/app/core/services/electron/electron.service.ts +62 -0
  145. package/src/app/core/services/font/font.service.ts +79 -0
  146. package/src/app/core/services/gravatar/gravatar.service.spec.ts +16 -0
  147. package/src/app/core/services/gravatar/gravatar.service.ts +18 -0
  148. package/src/app/core/services/index.ts +14 -0
  149. package/src/app/core/services/message/message.service.ts +289 -0
  150. package/src/app/core/services/modal/modal.service.spec.ts +16 -0
  151. package/src/app/core/services/modal/modal.service.ts +34 -0
  152. package/src/app/core/services/news/news.service.ts +94 -0
  153. package/src/app/core/services/presentation/presentation.service.ts +341 -0
  154. package/src/app/core/services/utils/utils.service.spec.ts +12 -0
  155. package/src/app/core/services/utils/utils.service.ts +144 -0
  156. package/src/app/layout/aside/aside.component.html +9 -0
  157. package/src/app/layout/aside/aside.component.scss +1 -0
  158. package/src/app/layout/aside/aside.component.ts +26 -0
  159. package/src/app/layout/footer/footer.component.html +11 -0
  160. package/src/app/layout/footer/footer.component.scss +27 -0
  161. package/src/app/layout/footer/footer.component.ts +32 -0
  162. package/src/app/layout/header/header.component.html +35 -0
  163. package/src/app/layout/header/header.component.scss +60 -0
  164. package/src/app/layout/header/header.component.ts +229 -0
  165. package/src/app/layout/layout.component.html +14 -0
  166. package/src/app/layout/layout.component.scss +119 -0
  167. package/src/app/layout/layout.component.ts +23 -0
  168. package/src/app/layout/layout.module.ts +32 -0
  169. package/src/app/layout/layout.service.ts +13 -0
  170. package/src/app/layout/navigation/navigation.component.html +142 -0
  171. package/src/app/layout/navigation/navigation.component.scss +0 -0
  172. package/src/app/layout/navigation/navigation.component.ts +302 -0
  173. package/src/app/pages/main/grid/grid.component.html +160 -0
  174. package/src/app/pages/main/grid/grid.component.scss +3 -0
  175. package/src/app/pages/main/grid/grid.component.ts +98 -0
  176. package/src/app/pages/main/inspect/inspect.component.html +7 -0
  177. package/src/app/pages/main/inspect/inspect.component.scss +3 -0
  178. package/src/app/pages/main/inspect/inspect.component.ts +66 -0
  179. package/src/app/pages/main/main-routing.module.ts +30 -0
  180. package/src/app/pages/main/main.component.html +6 -0
  181. package/src/app/pages/main/main.component.scss +191 -0
  182. package/src/app/pages/main/main.component.ts +35 -0
  183. package/src/app/pages/main/main.module.ts +28 -0
  184. package/src/app/pages/main/preview/preview.component.html +46 -0
  185. package/src/app/pages/main/preview/preview.component.scss +0 -0
  186. package/src/app/pages/main/preview/preview.component.ts +239 -0
  187. package/src/app/pages/main/toolbar/toolbar.component.html +78 -0
  188. package/src/app/pages/main/toolbar/toolbar.component.scss +3 -0
  189. package/src/app/pages/main/toolbar/toolbar.component.ts +132 -0
  190. package/src/app/shared/components/alert/alert.component.html +9 -0
  191. package/src/app/shared/components/alert/alert.component.scss +0 -0
  192. package/src/app/shared/components/alert/alert.component.ts +37 -0
  193. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.html +14 -0
  194. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.scss +0 -0
  195. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.ts +36 -0
  196. package/src/app/shared/components/button/button.component.html +3 -0
  197. package/src/app/shared/components/button/button.component.scss +2 -0
  198. package/src/app/shared/components/button/button.component.ts +22 -0
  199. package/src/app/shared/components/collection/create-collection/create-collection.component.html +41 -0
  200. package/src/app/shared/components/collection/create-collection/create-collection.component.scss +0 -0
  201. package/src/app/shared/components/collection/create-collection/create-collection.component.ts +68 -0
  202. package/src/app/shared/components/collection/form-collection/form-collection.component.html +1 -0
  203. package/src/app/shared/components/collection/form-collection/form-collection.component.scss +0 -0
  204. package/src/app/shared/components/collection/form-collection/form-collection.component.ts +15 -0
  205. package/src/app/shared/components/collection/update-collection/update-collection.component.html +40 -0
  206. package/src/app/shared/components/collection/update-collection/update-collection.component.scss +0 -0
  207. package/src/app/shared/components/collection/update-collection/update-collection.component.ts +71 -0
  208. package/src/app/shared/components/glyph-list/glyph-list.component.html +40 -0
  209. package/src/app/shared/components/glyph-list/glyph-list.component.scss +1 -0
  210. package/src/app/shared/components/glyph-list/glyph-list.component.ts +165 -0
  211. package/src/app/shared/components/glyph-view/glyph-view.component.html +23 -0
  212. package/src/app/shared/components/glyph-view/glyph-view.component.scss +0 -0
  213. package/src/app/shared/components/glyph-view/glyph-view.component.ts +228 -0
  214. package/src/app/shared/components/index.ts +16 -0
  215. package/src/app/shared/components/loading/loading.component.html +1 -0
  216. package/src/app/shared/components/loading/loading.component.scss +0 -0
  217. package/src/app/shared/components/loading/loading.component.ts +26 -0
  218. package/src/app/shared/components/modal/modal.component.html +31 -0
  219. package/src/app/shared/components/modal/modal.component.scss +0 -0
  220. package/src/app/shared/components/modal/modal.component.ts +51 -0
  221. package/src/app/shared/components/page-not-found/page-not-found.component.html +3 -0
  222. package/src/app/shared/components/page-not-found/page-not-found.component.scss +0 -0
  223. package/src/app/shared/components/page-not-found/page-not-found.component.ts +12 -0
  224. package/src/app/shared/components/paginator/paginator.component.html +21 -0
  225. package/src/app/shared/components/paginator/paginator.component.scss +3 -0
  226. package/src/app/shared/components/paginator/paginator.component.ts +133 -0
  227. package/src/app/shared/components/pairing/pairing.component.html +20 -0
  228. package/src/app/shared/components/pairing/pairing.component.scss +0 -0
  229. package/src/app/shared/components/pairing/pairing.component.ts +33 -0
  230. package/src/app/shared/components/search/search.component.html +54 -0
  231. package/src/app/shared/components/search/search.component.scss +10 -0
  232. package/src/app/shared/components/search/search.component.ts +77 -0
  233. package/src/app/shared/components/settings/database/database.component.html +151 -0
  234. package/src/app/shared/components/settings/database/database.component.scss +0 -0
  235. package/src/app/shared/components/settings/database/database.component.ts +145 -0
  236. package/src/app/shared/components/settings/general/general.component.html +170 -0
  237. package/src/app/shared/components/settings/general/general.component.scss +0 -0
  238. package/src/app/shared/components/settings/general/general.component.ts +150 -0
  239. package/src/app/shared/components/settings/logs/logs.component.html +44 -0
  240. package/src/app/shared/components/settings/logs/logs.component.scss +0 -0
  241. package/src/app/shared/components/settings/logs/logs.component.ts +37 -0
  242. package/src/app/shared/components/settings/news/news.component.html +41 -0
  243. package/src/app/shared/components/settings/news/news.component.scss +0 -0
  244. package/src/app/shared/components/settings/news/news.component.ts +52 -0
  245. package/src/app/shared/components/settings/settings.component.html +46 -0
  246. package/src/app/shared/components/settings/settings.component.scss +0 -0
  247. package/src/app/shared/components/settings/settings.component.ts +23 -0
  248. package/src/app/shared/components/settings/system/system.component.html +30 -0
  249. package/src/app/shared/components/settings/system/system.component.scss +0 -0
  250. package/src/app/shared/components/settings/system/system.component.ts +43 -0
  251. package/src/app/shared/components/settings/theme/theme.component.html +22 -0
  252. package/src/app/shared/components/settings/theme/theme.component.scss +0 -0
  253. package/src/app/shared/components/settings/theme/theme.component.ts +50 -0
  254. package/src/app/shared/components/spinner/spinner.component.html +1 -0
  255. package/src/app/shared/components/spinner/spinner.component.scss +0 -0
  256. package/src/app/shared/components/spinner/spinner.component.ts +26 -0
  257. package/src/app/shared/components/store/store.component.html +22 -0
  258. package/src/app/shared/components/store/store.component.scss +10 -0
  259. package/src/app/shared/components/store/store.component.ts +58 -0
  260. package/src/app/shared/components/tables/tables.component.html +47 -0
  261. package/src/app/shared/components/tables/tables.component.scss +10 -0
  262. package/src/app/shared/components/tables/tables.component.ts +81 -0
  263. package/src/app/shared/components/typescale/typescale.component.html +53 -0
  264. package/src/app/shared/components/typescale/typescale.component.scss +0 -0
  265. package/src/app/shared/components/typescale/typescale.component.ts +168 -0
  266. package/src/app/shared/directives/gravatar/gravatar.directive.ts +29 -0
  267. package/src/app/shared/directives/index.ts +2 -0
  268. package/src/app/shared/directives/webview/webview.directive.ts +8 -0
  269. package/src/app/shared/pipes/installable.pipe.ts +10 -0
  270. package/src/app/shared/pipes/prettybytes.pipe.ts +10 -0
  271. package/src/app/shared/pipes/safehtml.pipe.ts +10 -0
  272. package/src/app/shared/shared.module.ts +92 -0
  273. package/src/assets/.gitkeep +0 -0
  274. package/src/assets/fonts/fa/fa-brands-400.eot +0 -0
  275. package/src/assets/fonts/fa/fa-brands-400.svg +3535 -0
  276. package/src/assets/fonts/fa/fa-brands-400.ttf +0 -0
  277. package/src/assets/fonts/fa/fa-brands-400.woff +0 -0
  278. package/src/assets/fonts/fa/fa-brands-400.woff2 +0 -0
  279. package/src/assets/fonts/fa/fa-regular-400.eot +0 -0
  280. package/src/assets/fonts/fa/fa-regular-400.svg +803 -0
  281. package/src/assets/fonts/fa/fa-regular-400.ttf +0 -0
  282. package/src/assets/fonts/fa/fa-regular-400.woff +0 -0
  283. package/src/assets/fonts/fa/fa-regular-400.woff2 +0 -0
  284. package/src/assets/fonts/fa/fa-solid-900.eot +0 -0
  285. package/src/assets/fonts/fa/fa-solid-900.svg +4700 -0
  286. package/src/assets/fonts/fa/fa-solid-900.ttf +0 -0
  287. package/src/assets/fonts/fa/fa-solid-900.woff +0 -0
  288. package/src/assets/fonts/fa/fa-solid-900.woff2 +0 -0
  289. package/src/assets/fonts/md/MaterialIcons-Regular.eot +0 -0
  290. package/src/assets/fonts/md/MaterialIcons-Regular.ijmap +1 -0
  291. package/src/assets/fonts/md/MaterialIcons-Regular.svg +2373 -0
  292. package/src/assets/fonts/md/MaterialIcons-Regular.ttf +0 -0
  293. package/src/assets/fonts/md/MaterialIcons-Regular.woff +0 -0
  294. package/src/assets/fonts/md/MaterialIcons-Regular.woff2 +0 -0
  295. package/src/assets/fonts/md/README.md +9 -0
  296. package/src/assets/fonts/md/codepoints +932 -0
  297. package/src/assets/fonts/md/material-icons.css +36 -0
  298. package/src/assets/fonts/octicon/octicon.eot +0 -0
  299. package/src/assets/fonts/octicon/octicon.svg +378 -0
  300. package/src/assets/fonts/octicon/octicon.ttf +0 -0
  301. package/src/assets/fonts/octicon/octicon.woff +0 -0
  302. package/src/assets/fonts/octicon/octicon.woff2 +0 -0
  303. package/src/assets/fonts/roboto/Roboto-Bold-webfont.eot +0 -0
  304. package/src/assets/fonts/roboto/Roboto-Bold-webfont.svg +607 -0
  305. package/src/assets/fonts/roboto/Roboto-Bold-webfont.ttf +0 -0
  306. package/src/assets/fonts/roboto/Roboto-Bold-webfont.woff +0 -0
  307. package/src/assets/fonts/roboto/Roboto-Medium-webfont.eot +0 -0
  308. package/src/assets/fonts/roboto/Roboto-Medium-webfont.svg +607 -0
  309. package/src/assets/fonts/roboto/Roboto-Medium-webfont.ttf +0 -0
  310. package/src/assets/fonts/roboto/Roboto-Medium-webfont.woff +0 -0
  311. package/src/assets/fonts/roboto/Roboto-Regular-webfont.eot +0 -0
  312. package/src/assets/fonts/roboto/Roboto-Regular-webfont.svg +635 -0
  313. package/src/assets/fonts/roboto/Roboto-Regular-webfont.ttf +0 -0
  314. package/src/assets/fonts/roboto/Roboto-Regular-webfont.woff +0 -0
  315. package/src/assets/i18n/en.json +12 -0
  316. package/src/assets/icons/android-chrome-192x192.png +0 -0
  317. package/src/assets/icons/android-chrome-512x512.png +0 -0
  318. package/src/assets/icons/apple-touch-icon.png +0 -0
  319. package/src/assets/icons/favicon-16x16.png +0 -0
  320. package/src/assets/icons/favicon-32x32.png +0 -0
  321. package/src/assets/icons/favicon.ico +0 -0
  322. package/src/assets/icons/site.webmanifest +1 -0
  323. package/src/assets/images/electron.bmp +0 -0
  324. package/src/bin/activator +0 -0
  325. package/src/bin/activator.exe +0 -0
  326. package/src/environments/environment.dev.ts +4 -0
  327. package/src/environments/environment.prod.ts +4 -0
  328. package/src/environments/environment.ts +4 -0
  329. package/src/environments/environment.web.prod.ts +4 -0
  330. package/src/environments/environment.web.ts +4 -0
  331. package/src/favicon.ico +0 -0
  332. package/src/index.html +55 -0
  333. package/src/karma.conf.js +50 -0
  334. package/src/main.ts +15 -0
  335. package/src/polyfills-test.ts +1 -0
  336. package/src/polyfills.ts +53 -0
  337. package/src/styles/base/loading.scss +87 -0
  338. package/src/styles/base/reset.scss +408 -0
  339. package/src/styles/components/alert.scss +54 -0
  340. package/src/styles/components/buttons.scss +93 -0
  341. package/src/styles/components/forms.scss +96 -0
  342. package/src/styles/components/inputs.scss +113 -0
  343. package/src/styles/components/modal.scss +52 -0
  344. package/src/styles/components/paginator.scss +108 -0
  345. package/src/styles/components/scrollbox.scss +71 -0
  346. package/src/styles/components/spinner.scss +11 -0
  347. package/src/styles/components/tables.scss +42 -0
  348. package/src/styles/components/tabs.scss +44 -0
  349. package/src/styles/components/toolbar.scss +130 -0
  350. package/src/styles/fonts/md.scss +54 -0
  351. package/src/styles/fonts/octicons.scss +1351 -0
  352. package/src/styles/fonts/roboto.scss +32 -0
  353. package/src/styles/themes/dashboard.scss +294 -0
  354. package/src/styles/themes/euphoria.scss +283 -0
  355. package/src/styles/themes/mellow.scss +280 -0
  356. package/src/styles/themes/midnight.scss +283 -0
  357. package/src/styles/themes/passion.scss +280 -0
  358. package/src/styles/themes/swiss.scss +283 -0
  359. package/src/styles/tools/_functions.scss +5 -0
  360. package/src/styles/tools/_mixins.scss +159 -0
  361. package/src/styles/tools/_placeholders.scss +17 -0
  362. package/src/styles/tools/_variables.scss +67 -0
  363. package/src/styles.scss +37 -0
  364. package/src/test.ts +22 -0
  365. package/src/tsconfig.app.json +20 -0
  366. package/src/tsconfig.spec.json +23 -0
  367. package/src/typings.d.ts +9 -0
  368. package/tailwind.config.js +67 -0
  369. package/tsconfig.json +42 -0
  370. package/tsconfig.serve.json +27 -0
@@ -0,0 +1,1351 @@
1
+ @font-face {
2
+ font-family: 'octicon';
3
+ src: url('../../assets/fonts/octicon/octicon.eot?15389122');
4
+ src: url('../../assets/fonts/octicon/octicon.eot?15389122#iefix') format('embedded-opentype'),
5
+ url('../../assets/fonts/octicon/octicon.woff2?15389122') format('woff2'),
6
+ url('../../assets/fonts/octicon/octicon.woff?15389122') format('woff'),
7
+ url('../../assets/fonts/octicon/octicon.ttf?15389122') format('truetype'),
8
+ url('../../assets/fonts/octicon/octicon.svg?15389122#octicon') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ // @font-face {
14
+ // font-family: 'octicon';
15
+ // src: url('../../assets/fonts/octicon/octicon.woff2?15389122') format('woff2');
16
+ // font-weight: normal;
17
+ // font-style: normal;
18
+ // }
19
+
20
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
21
+
22
+
23
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
24
+
25
+
26
+ /*
27
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
28
+ @font-face {
29
+ font-family: 'octicon';
30
+ src: url('../font/octicon.svg?15389122#octicon') format('svg');
31
+ }
32
+ }
33
+ */
34
+
35
+ [class^="icon-"]:before,
36
+ [class*=" icon-"]:before {
37
+ font-family: "octicon";
38
+ font-style: normal;
39
+ font-weight: normal;
40
+ speak: none;
41
+ display: inline-block;
42
+ cursor: pointer;
43
+ text-decoration: inherit;
44
+ width: 1em;
45
+ margin-right: .2em;
46
+ text-align: center;
47
+ /* opacity: .8; */
48
+ /* For safety - reset parent styles, that can break glyph codes*/
49
+ font-variant: normal;
50
+ text-transform: none;
51
+ /* fix buttons height, for twitter bootstrap */
52
+ line-height: 1em;
53
+ /* Animation center compensation - margins should be symmetric */
54
+ /* remove if not needed */
55
+ margin-left: .2em;
56
+ /* you can be more comfortable with increased icons size */
57
+ /* font-size: 120%; */
58
+ /* Font smoothing. That was taken from TWBS */
59
+ -webkit-font-smoothing: antialiased;
60
+ -moz-osx-font-smoothing: grayscale;
61
+ /* Uncomment for 3D effect */
62
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
63
+ }
64
+
65
+ .icon-alert:before {
66
+ content: '\e800';
67
+ }
68
+
69
+
70
+ /* '' */
71
+
72
+ .icon-archive:before {
73
+ content: '\e801';
74
+ }
75
+
76
+
77
+ /* '' */
78
+
79
+ .icon-arrow-both:before {
80
+ content: '\e802';
81
+ }
82
+
83
+
84
+ /* '' */
85
+
86
+ .icon-arrow-down:before {
87
+ content: '\e803';
88
+ }
89
+
90
+
91
+ /* '' */
92
+
93
+ .icon-arrow-left:before {
94
+ content: '\e804';
95
+ }
96
+
97
+
98
+ /* '' */
99
+
100
+ .icon-arrow-right:before {
101
+ content: '\e805';
102
+ }
103
+
104
+
105
+ /* '' */
106
+
107
+ .icon-arrow-small-down:before {
108
+ content: '\e806';
109
+ }
110
+
111
+
112
+ /* '' */
113
+
114
+ .icon-arrow-small-left:before {
115
+ content: '\e807';
116
+ }
117
+
118
+
119
+ /* '' */
120
+
121
+ .icon-arrow-small-right:before {
122
+ content: '\e808';
123
+ }
124
+
125
+
126
+ /* '' */
127
+
128
+ .icon-arrow-small-up:before {
129
+ content: '\e809';
130
+ }
131
+
132
+
133
+ /* '' */
134
+
135
+ .icon-arrow-up:before {
136
+ content: '\e80a';
137
+ }
138
+
139
+
140
+ /* '' */
141
+
142
+ .icon-beaker:before {
143
+ content: '\e80b';
144
+ }
145
+
146
+
147
+ /* '' */
148
+
149
+ .icon-bell:before {
150
+ content: '\e80c';
151
+ }
152
+
153
+
154
+ /* '' */
155
+
156
+ .icon-bold:before {
157
+ content: '\e80d';
158
+ }
159
+
160
+
161
+ /* '' */
162
+
163
+ .icon-book:before {
164
+ content: '\e80e';
165
+ }
166
+
167
+
168
+ /* '' */
169
+
170
+ .icon-bookmark:before {
171
+ content: '\e80f';
172
+ }
173
+
174
+
175
+ /* '' */
176
+
177
+ .icon-briefcase:before {
178
+ content: '\e810';
179
+ }
180
+
181
+
182
+ /* '' */
183
+
184
+ .icon-broadcast:before {
185
+ content: '\e811';
186
+ }
187
+
188
+
189
+ /* '' */
190
+
191
+ .icon-browser:before {
192
+ content: '\e812';
193
+ }
194
+
195
+
196
+ /* '' */
197
+
198
+ .icon-bug:before {
199
+ content: '\e813';
200
+ }
201
+
202
+
203
+ /* '' */
204
+
205
+ .icon-calendar:before {
206
+ content: '\e814';
207
+ }
208
+
209
+
210
+ /* '' */
211
+
212
+ .icon-check:before {
213
+ content: '\e815';
214
+ }
215
+
216
+
217
+ /* '' */
218
+
219
+ .icon-checklist:before {
220
+ content: '\e816';
221
+ }
222
+
223
+
224
+ /* '' */
225
+
226
+ .icon-chevron-down:before {
227
+ content: '\e817';
228
+ }
229
+
230
+
231
+ /* '' */
232
+
233
+ .icon-chevron-left:before {
234
+ content: '\e818';
235
+ }
236
+
237
+
238
+ /* '' */
239
+
240
+ .icon-chevron-right:before {
241
+ content: '\e819';
242
+ }
243
+
244
+
245
+ /* '' */
246
+
247
+ .icon-chevron-up:before {
248
+ content: '\e81a';
249
+ }
250
+
251
+
252
+ /* '' */
253
+
254
+ .icon-circle-slash:before {
255
+ content: '\e81b';
256
+ }
257
+
258
+
259
+ /* '' */
260
+
261
+ .icon-circuit-board:before {
262
+ content: '\e81c';
263
+ }
264
+
265
+
266
+ /* '' */
267
+
268
+ .icon-clippy:before {
269
+ content: '\e81d';
270
+ }
271
+
272
+
273
+ /* '' */
274
+
275
+ .icon-clock:before {
276
+ content: '\e81e';
277
+ }
278
+
279
+
280
+ /* '' */
281
+
282
+ .icon-cloud-download:before {
283
+ content: '\e81f';
284
+ }
285
+
286
+
287
+ /* '' */
288
+
289
+ .icon-cloud-upload:before {
290
+ content: '\e820';
291
+ }
292
+
293
+
294
+ /* '' */
295
+
296
+ .icon-code:before {
297
+ content: '\e821';
298
+ }
299
+
300
+
301
+ /* '' */
302
+
303
+ .icon-comment-discussion:before {
304
+ content: '\e822';
305
+ }
306
+
307
+
308
+ /* '' */
309
+
310
+ .icon-comment:before {
311
+ content: '\e823';
312
+ }
313
+
314
+
315
+ /* '' */
316
+
317
+ .icon-credit-card:before {
318
+ content: '\e824';
319
+ }
320
+
321
+
322
+ /* '' */
323
+
324
+ .icon-dash:before {
325
+ content: '\e825';
326
+ }
327
+
328
+
329
+ /* '' */
330
+
331
+ .icon-dashboard:before {
332
+ content: '\e826';
333
+ }
334
+
335
+
336
+ /* '' */
337
+
338
+ .icon-database:before {
339
+ content: '\e827';
340
+ }
341
+
342
+
343
+ /* '' */
344
+
345
+ .icon-desktop-download:before {
346
+ content: '\e828';
347
+ }
348
+
349
+
350
+ /* '' */
351
+
352
+ .icon-device-camera-video:before {
353
+ content: '\e829';
354
+ }
355
+
356
+
357
+ /* '' */
358
+
359
+ .icon-device-camera:before {
360
+ content: '\e82a';
361
+ }
362
+
363
+
364
+ /* '' */
365
+
366
+ .icon-device-desktop:before {
367
+ content: '\e82b';
368
+ }
369
+
370
+
371
+ /* '' */
372
+
373
+ .icon-device-mobile:before {
374
+ content: '\e82c';
375
+ }
376
+
377
+
378
+ /* '' */
379
+
380
+ .icon-diff-added:before {
381
+ content: '\e82d';
382
+ }
383
+
384
+
385
+ /* '' */
386
+
387
+ .icon-diff-ignored:before {
388
+ content: '\e82e';
389
+ }
390
+
391
+
392
+ /* '' */
393
+
394
+ .icon-diff-modified:before {
395
+ content: '\e82f';
396
+ }
397
+
398
+
399
+ /* '' */
400
+
401
+ .icon-diff-removed:before {
402
+ content: '\e830';
403
+ }
404
+
405
+
406
+ /* '' */
407
+
408
+ .icon-diff-renamed:before {
409
+ content: '\e831';
410
+ }
411
+
412
+
413
+ /* '' */
414
+
415
+ .icon-diff:before {
416
+ content: '\e832';
417
+ }
418
+
419
+
420
+ /* '' */
421
+
422
+ .icon-ellipsis:before {
423
+ content: '\e833';
424
+ }
425
+
426
+
427
+ /* '' */
428
+
429
+ .icon-eye-closed:before {
430
+ content: '\e834';
431
+ }
432
+
433
+
434
+ /* '' */
435
+
436
+ .icon-eye:before {
437
+ content: '\e835';
438
+ }
439
+
440
+
441
+ /* '' */
442
+
443
+ .icon-file-binary:before {
444
+ content: '\e836';
445
+ }
446
+
447
+
448
+ /* '' */
449
+
450
+ .icon-file-code:before {
451
+ content: '\e837';
452
+ }
453
+
454
+
455
+ /* '' */
456
+
457
+ .icon-file-directory:before {
458
+ content: '\e838';
459
+ }
460
+
461
+
462
+ /* '' */
463
+
464
+ .icon-file-media:before {
465
+ content: '\e839';
466
+ }
467
+
468
+
469
+ /* '' */
470
+
471
+ .icon-file-pdf:before {
472
+ content: '\e83a';
473
+ }
474
+
475
+
476
+ /* '' */
477
+
478
+ .icon-file-submodule:before {
479
+ content: '\e83b';
480
+ }
481
+
482
+
483
+ /* '' */
484
+
485
+ .icon-file-symlink-directory:before {
486
+ content: '\e83c';
487
+ }
488
+
489
+
490
+ /* '' */
491
+
492
+ .icon-file-symlink-file:before {
493
+ content: '\e83d';
494
+ }
495
+
496
+
497
+ /* '' */
498
+
499
+ .icon-file-zip:before {
500
+ content: '\e83e';
501
+ }
502
+
503
+
504
+ /* '' */
505
+
506
+ .icon-file:before {
507
+ content: '\e83f';
508
+ }
509
+
510
+
511
+ /* '' */
512
+
513
+ .icon-flame:before {
514
+ content: '\e840';
515
+ }
516
+
517
+
518
+ /* '' */
519
+
520
+ .icon-fold-down:before {
521
+ content: '\e841';
522
+ }
523
+
524
+
525
+ /* '' */
526
+
527
+ .icon-fold-up:before {
528
+ content: '\e842';
529
+ }
530
+
531
+
532
+ /* '' */
533
+
534
+ .icon-fold:before {
535
+ content: '\e843';
536
+ }
537
+
538
+
539
+ /* '' */
540
+
541
+ .icon-gear:before {
542
+ content: '\e844';
543
+ }
544
+
545
+
546
+ /* '' */
547
+
548
+ .icon-gift:before {
549
+ content: '\e845';
550
+ }
551
+
552
+
553
+ /* '' */
554
+
555
+ .icon-gist-secret:before {
556
+ content: '\e846';
557
+ }
558
+
559
+
560
+ /* '' */
561
+
562
+ .icon-gist:before {
563
+ content: '\e847';
564
+ }
565
+
566
+
567
+ /* '' */
568
+
569
+ .icon-git-branch:before {
570
+ content: '\e848';
571
+ }
572
+
573
+
574
+ /* '' */
575
+
576
+ .icon-git-commit:before {
577
+ content: '\e849';
578
+ }
579
+
580
+
581
+ /* '' */
582
+
583
+ .icon-git-compare:before {
584
+ content: '\e84a';
585
+ }
586
+
587
+
588
+ /* '' */
589
+
590
+ .icon-git-merge:before {
591
+ content: '\e84b';
592
+ }
593
+
594
+
595
+ /* '' */
596
+
597
+ .icon-git-pull-request:before {
598
+ content: '\e84c';
599
+ }
600
+
601
+
602
+ /* '' */
603
+
604
+ .icon-github-action:before {
605
+ content: '\e84d';
606
+ }
607
+
608
+
609
+ /* '' */
610
+
611
+ .icon-globe:before {
612
+ content: '\e84e';
613
+ }
614
+
615
+
616
+ /* '' */
617
+
618
+ .icon-grabber:before {
619
+ content: '\e84f';
620
+ }
621
+
622
+
623
+ /* '' */
624
+
625
+ .icon-graph:before {
626
+ content: '\e850';
627
+ }
628
+
629
+
630
+ /* '' */
631
+
632
+ .icon-heart:before {
633
+ content: '\e851';
634
+ }
635
+
636
+
637
+ /* '' */
638
+
639
+ .icon-history:before {
640
+ content: '\e852';
641
+ }
642
+
643
+
644
+ /* '' */
645
+
646
+ .icon-home:before {
647
+ content: '\e853';
648
+ }
649
+
650
+
651
+ /* '' */
652
+
653
+ .icon-horizontal-rule:before {
654
+ content: '\e854';
655
+ }
656
+
657
+
658
+ /* '' */
659
+
660
+ .icon-hubot:before {
661
+ content: '\e855';
662
+ }
663
+
664
+
665
+ /* '' */
666
+
667
+ .icon-inbox:before {
668
+ content: '\e856';
669
+ }
670
+
671
+
672
+ /* '' */
673
+
674
+ .icon-info:before {
675
+ content: '\e857';
676
+ }
677
+
678
+
679
+ /* '' */
680
+
681
+ .icon-issue-closed:before {
682
+ content: '\e858';
683
+ }
684
+
685
+
686
+ /* '' */
687
+
688
+ .icon-issue-opened:before {
689
+ content: '\e859';
690
+ }
691
+
692
+
693
+ /* '' */
694
+
695
+ .icon-issue-reopened:before {
696
+ content: '\e85a';
697
+ }
698
+
699
+
700
+ /* '' */
701
+
702
+ .icon-italic:before {
703
+ content: '\e85b';
704
+ }
705
+
706
+
707
+ /* '' */
708
+
709
+ .icon-jersey:before {
710
+ content: '\e85c';
711
+ }
712
+
713
+
714
+ /* '' */
715
+
716
+ .icon-kebab-horizontal:before {
717
+ content: '\e85d';
718
+ }
719
+
720
+
721
+ /* '' */
722
+
723
+ .icon-kebab-vertical:before {
724
+ content: '\e85e';
725
+ }
726
+
727
+
728
+ /* '' */
729
+
730
+ .icon-link-external:before {
731
+ content: '\e85f';
732
+ }
733
+
734
+
735
+ /* '' */
736
+
737
+ .icon-law:before {
738
+ content: '\e860';
739
+ }
740
+
741
+
742
+ /* '' */
743
+
744
+ .icon-light-bulb:before {
745
+ content: '\e861';
746
+ }
747
+
748
+
749
+ /* '' */
750
+
751
+ .icon-key:before {
752
+ content: '\e862';
753
+ }
754
+
755
+
756
+ /* '' */
757
+
758
+ .icon-keyboard:before {
759
+ content: '\e863';
760
+ }
761
+
762
+
763
+ /* '' */
764
+
765
+ .icon-link:before {
766
+ content: '\e864';
767
+ }
768
+
769
+
770
+ /* '' */
771
+
772
+ .icon-list-ordered:before {
773
+ content: '\e865';
774
+ }
775
+
776
+
777
+ /* '' */
778
+
779
+ .icon-list-unordered:before {
780
+ content: '\e866';
781
+ }
782
+
783
+
784
+ /* '' */
785
+
786
+ .icon-location:before {
787
+ content: '\e867';
788
+ }
789
+
790
+
791
+ /* '' */
792
+
793
+ .icon-lock:before {
794
+ content: '\e868';
795
+ }
796
+
797
+
798
+ /* '' */
799
+
800
+ .icon-logo-gist:before {
801
+ content: '\e869';
802
+ }
803
+
804
+
805
+ /* '' */
806
+
807
+ .icon-logo-github:before {
808
+ content: '\e86a';
809
+ }
810
+
811
+
812
+ /* '' */
813
+
814
+ .icon-mail-read:before {
815
+ content: '\e86b';
816
+ }
817
+
818
+
819
+ /* '' */
820
+
821
+ .icon-mail:before {
822
+ content: '\e86c';
823
+ }
824
+
825
+
826
+ /* '' */
827
+
828
+ .icon-mark-github:before {
829
+ content: '\e86d';
830
+ }
831
+
832
+
833
+ /* '' */
834
+
835
+ .icon-markdown:before {
836
+ content: '\e86e';
837
+ }
838
+
839
+
840
+ /* '' */
841
+
842
+ .icon-megaphone:before {
843
+ content: '\e86f';
844
+ }
845
+
846
+
847
+ /* '' */
848
+
849
+ .icon-mention:before {
850
+ content: '\e870';
851
+ }
852
+
853
+
854
+ /* '' */
855
+
856
+ .icon-milestone:before {
857
+ content: '\e871';
858
+ }
859
+
860
+
861
+ /* '' */
862
+
863
+ .icon-mirror:before {
864
+ content: '\e872';
865
+ }
866
+
867
+
868
+ /* '' */
869
+
870
+ .icon-mortar-board:before {
871
+ content: '\e873';
872
+ }
873
+
874
+
875
+ /* '' */
876
+
877
+ .icon-mute:before {
878
+ content: '\e874';
879
+ }
880
+
881
+
882
+ /* '' */
883
+
884
+ .icon-no-newline:before {
885
+ content: '\e875';
886
+ }
887
+
888
+
889
+ /* '' */
890
+
891
+ .icon-note:before {
892
+ content: '\e876';
893
+ }
894
+
895
+
896
+ /* '' */
897
+
898
+ .icon-octoface:before {
899
+ content: '\e877';
900
+ }
901
+
902
+
903
+ /* '' */
904
+
905
+ .icon-organization:before {
906
+ content: '\e878';
907
+ }
908
+
909
+
910
+ /* '' */
911
+
912
+ .icon-package:before {
913
+ content: '\e879';
914
+ }
915
+
916
+
917
+ /* '' */
918
+
919
+ .icon-paintcan:before {
920
+ content: '\e87a';
921
+ }
922
+
923
+
924
+ /* '' */
925
+
926
+ .icon-pencil:before {
927
+ content: '\e87b';
928
+ }
929
+
930
+
931
+ /* '' */
932
+
933
+ .icon-person:before {
934
+ content: '\e87c';
935
+ }
936
+
937
+
938
+ /* '' */
939
+
940
+ .icon-pin:before {
941
+ content: '\e87d';
942
+ }
943
+
944
+
945
+ /* '' */
946
+
947
+ .icon-play:before {
948
+ content: '\e87e';
949
+ }
950
+
951
+
952
+ /* '' */
953
+
954
+ .icon-plug:before {
955
+ content: '\e87f';
956
+ }
957
+
958
+
959
+ /* '' */
960
+
961
+ .icon-plus-small:before {
962
+ content: '\e880';
963
+ }
964
+
965
+
966
+ /* '' */
967
+
968
+ .icon-plus:before {
969
+ content: '\e881';
970
+ }
971
+
972
+
973
+ /* '' */
974
+
975
+ .icon-primitive-dot:before {
976
+ content: '\e882';
977
+ }
978
+
979
+
980
+ /* '' */
981
+
982
+ .icon-primitive-square:before {
983
+ content: '\e883';
984
+ }
985
+
986
+
987
+ /* '' */
988
+
989
+ .icon-project:before {
990
+ content: '\e884';
991
+ }
992
+
993
+
994
+ /* '' */
995
+
996
+ .icon-pulse:before {
997
+ content: '\e885';
998
+ }
999
+
1000
+
1001
+ /* '' */
1002
+
1003
+ .icon-question:before {
1004
+ content: '\e886';
1005
+ }
1006
+
1007
+
1008
+ /* '' */
1009
+
1010
+ .icon-quote:before {
1011
+ content: '\e887';
1012
+ }
1013
+
1014
+
1015
+ /* '' */
1016
+
1017
+ .icon-radio-tower:before {
1018
+ content: '\e888';
1019
+ }
1020
+
1021
+
1022
+ /* '' */
1023
+
1024
+ .icon-reply:before {
1025
+ content: '\e889';
1026
+ }
1027
+
1028
+
1029
+ /* '' */
1030
+
1031
+ .icon-repo-clone:before {
1032
+ content: '\e88a';
1033
+ }
1034
+
1035
+
1036
+ /* '' */
1037
+
1038
+ .icon-repo-force-push:before {
1039
+ content: '\e88b';
1040
+ }
1041
+
1042
+
1043
+ /* '' */
1044
+
1045
+ .icon-repo-forked:before {
1046
+ content: '\e88c';
1047
+ }
1048
+
1049
+
1050
+ /* '' */
1051
+
1052
+ .icon-repo-pull:before {
1053
+ content: '\e88d';
1054
+ }
1055
+
1056
+
1057
+ /* '' */
1058
+
1059
+ .icon-repo-push:before {
1060
+ content: '\e88e';
1061
+ }
1062
+
1063
+
1064
+ /* '' */
1065
+
1066
+ .icon-repo:before {
1067
+ content: '\e88f';
1068
+ }
1069
+
1070
+
1071
+ /* '' */
1072
+
1073
+ .icon-report:before {
1074
+ content: '\e890';
1075
+ }
1076
+
1077
+
1078
+ /* '' */
1079
+
1080
+ .icon-request-changes:before {
1081
+ content: '\e891';
1082
+ }
1083
+
1084
+
1085
+ /* '' */
1086
+
1087
+ .icon-rocket:before {
1088
+ content: '\e892';
1089
+ }
1090
+
1091
+
1092
+ /* '' */
1093
+
1094
+ .icon-rss:before {
1095
+ content: '\e893';
1096
+ }
1097
+
1098
+
1099
+ /* '' */
1100
+
1101
+ .icon-ruby:before {
1102
+ content: '\e894';
1103
+ }
1104
+
1105
+
1106
+ /* '' */
1107
+
1108
+ .icon-screen-full:before {
1109
+ content: '\e895';
1110
+ }
1111
+
1112
+
1113
+ /* '' */
1114
+
1115
+ .icon-screen-normal:before {
1116
+ content: '\e896';
1117
+ }
1118
+
1119
+
1120
+ /* '' */
1121
+
1122
+ .icon-search:before {
1123
+ content: '\e897';
1124
+ }
1125
+
1126
+
1127
+ /* '' */
1128
+
1129
+ .icon-server:before {
1130
+ content: '\e898';
1131
+ }
1132
+
1133
+
1134
+ /* '' */
1135
+
1136
+ .icon-settings:before {
1137
+ content: '\e899';
1138
+ }
1139
+
1140
+
1141
+ /* '' */
1142
+
1143
+ .icon-shield:before {
1144
+ content: '\e89a';
1145
+ }
1146
+
1147
+
1148
+ /* '' */
1149
+
1150
+ .icon-sign-in:before {
1151
+ content: '\e89b';
1152
+ }
1153
+
1154
+
1155
+ /* '' */
1156
+
1157
+ .icon-sign-out:before {
1158
+ content: '\e89c';
1159
+ }
1160
+
1161
+
1162
+ /* '' */
1163
+
1164
+ .icon-smiley:before {
1165
+ content: '\e89d';
1166
+ }
1167
+
1168
+
1169
+ /* '' */
1170
+
1171
+ .icon-squirrel:before {
1172
+ content: '\e89e';
1173
+ }
1174
+
1175
+
1176
+ /* '' */
1177
+
1178
+ .icon-star:before {
1179
+ content: '\e89f';
1180
+ }
1181
+
1182
+
1183
+ /* '' */
1184
+
1185
+ .icon-stop:before {
1186
+ content: '\e8a0';
1187
+ }
1188
+
1189
+
1190
+ /* '' */
1191
+
1192
+ .icon-sync:before {
1193
+ content: '\e8a1';
1194
+ }
1195
+
1196
+
1197
+ /* '' */
1198
+
1199
+ .icon-tag:before {
1200
+ content: '\e8a2';
1201
+ }
1202
+
1203
+
1204
+ /* '' */
1205
+
1206
+ .icon-tasklist:before {
1207
+ content: '\e8a3';
1208
+ }
1209
+
1210
+
1211
+ /* '' */
1212
+
1213
+ .icon-telescope:before {
1214
+ content: '\e8a4';
1215
+ }
1216
+
1217
+
1218
+ /* '' */
1219
+
1220
+ .icon-terminal:before {
1221
+ content: '\e8a5';
1222
+ }
1223
+
1224
+
1225
+ /* '' */
1226
+
1227
+ .icon-text-size:before {
1228
+ content: '\e8a6';
1229
+ }
1230
+
1231
+
1232
+ /* '' */
1233
+
1234
+ .icon-three-bars:before {
1235
+ content: '\e8a7';
1236
+ }
1237
+
1238
+
1239
+ /* '' */
1240
+
1241
+ .icon-thumbsdown:before {
1242
+ content: '\e8a8';
1243
+ }
1244
+
1245
+
1246
+ /* '' */
1247
+
1248
+ .icon-thumbsup:before {
1249
+ content: '\e8a9';
1250
+ }
1251
+
1252
+
1253
+ /* '' */
1254
+
1255
+ .icon-tools:before {
1256
+ content: '\e8aa';
1257
+ }
1258
+
1259
+
1260
+ /* '' */
1261
+
1262
+ .icon-trashcan:before {
1263
+ content: '\e8ab';
1264
+ }
1265
+
1266
+
1267
+ /* '' */
1268
+
1269
+ .icon-triangle-down:before {
1270
+ content: '\e8ac';
1271
+ }
1272
+
1273
+
1274
+ /* '' */
1275
+
1276
+ .icon-triangle-left:before {
1277
+ content: '\e8ad';
1278
+ }
1279
+
1280
+
1281
+ /* '' */
1282
+
1283
+ .icon-triangle-right:before {
1284
+ content: '\e8ae';
1285
+ }
1286
+
1287
+
1288
+ /* '' */
1289
+
1290
+ .icon-triangle-up:before {
1291
+ content: '\e8af';
1292
+ }
1293
+
1294
+
1295
+ /* '' */
1296
+
1297
+ .icon-unfold:before {
1298
+ content: '\e8b0';
1299
+ }
1300
+
1301
+
1302
+ /* '' */
1303
+
1304
+ .icon-unmute:before {
1305
+ content: '\e8b1';
1306
+ }
1307
+
1308
+
1309
+ /* '' */
1310
+
1311
+ .icon-unverified:before {
1312
+ content: '\e8b2';
1313
+ }
1314
+
1315
+
1316
+ /* '' */
1317
+
1318
+ .icon-verified:before {
1319
+ content: '\e8b3';
1320
+ }
1321
+
1322
+
1323
+ /* '' */
1324
+
1325
+ .icon-versions:before {
1326
+ content: '\e8b4';
1327
+ }
1328
+
1329
+
1330
+ /* '' */
1331
+
1332
+ .icon-watch:before {
1333
+ content: '\e8b5';
1334
+ }
1335
+
1336
+
1337
+ /* '' */
1338
+
1339
+ .icon-x:before {
1340
+ content: '\e8b6';
1341
+ }
1342
+
1343
+
1344
+ /* '' */
1345
+
1346
+ .icon-zap:before {
1347
+ content: '\e8b7';
1348
+ }
1349
+
1350
+
1351
+ /* '' */