@allurereport/web-classic 3.0.0-beta.8 → 3.0.0

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 (579) hide show
  1. package/.babelrc.js +46 -0
  2. package/.eslintrc.cjs +16 -119
  3. package/dist/multi/10.app-897d4cad2ca206583e32.js +1 -0
  4. package/dist/multi/222.app-897d4cad2ca206583e32.js +1 -0
  5. package/dist/multi/26.app-897d4cad2ca206583e32.js +1 -0
  6. package/dist/multi/302.app-897d4cad2ca206583e32.js +1 -0
  7. package/dist/multi/304.app-897d4cad2ca206583e32.js +1 -0
  8. package/dist/multi/369.app-897d4cad2ca206583e32.js +1 -0
  9. package/dist/multi/389.app-897d4cad2ca206583e32.js +1 -0
  10. package/dist/multi/498.app-897d4cad2ca206583e32.js +1 -0
  11. package/dist/multi/60.app-897d4cad2ca206583e32.js +1 -0
  12. package/dist/multi/643.app-897d4cad2ca206583e32.js +1 -0
  13. package/dist/multi/671.app-897d4cad2ca206583e32.js +1 -0
  14. package/dist/multi/725.app-897d4cad2ca206583e32.js +1 -0
  15. package/dist/multi/770.app-897d4cad2ca206583e32.js +1 -0
  16. package/dist/multi/848.app-897d4cad2ca206583e32.js +1 -0
  17. package/dist/multi/853.app-897d4cad2ca206583e32.js +1 -0
  18. package/dist/multi/872.app-897d4cad2ca206583e32.js +1 -0
  19. package/dist/multi/895.app-897d4cad2ca206583e32.js +1 -0
  20. package/dist/multi/920.app-897d4cad2ca206583e32.js +1 -0
  21. package/dist/multi/979.app-897d4cad2ca206583e32.js +1 -0
  22. package/dist/multi/991.app-897d4cad2ca206583e32.js +1 -0
  23. package/dist/multi/JetBrainsMono_vf.woff +0 -0
  24. package/dist/multi/JetBrainsMono_vf.woff2 +0 -0
  25. package/dist/multi/app-897d4cad2ca206583e32.js +2 -0
  26. package/dist/multi/app-897d4cad2ca206583e32.js.LICENSE.txt +25 -0
  27. package/dist/multi/manifest.json +26 -25
  28. package/dist/multi/pt-root-ui_vf.woff +0 -0
  29. package/dist/multi/pt-root-ui_vf.woff2 +0 -0
  30. package/dist/multi/styles-cf5cd8299b71a6d78e3e.css +284 -0
  31. package/dist/single/app-db9badbaf3040ca25425.js +2 -0
  32. package/dist/single/app-db9badbaf3040ca25425.js.LICENSE.txt +25 -0
  33. package/dist/single/manifest.json +1 -8
  34. package/package.json +50 -49
  35. package/postcss.config.js +5 -0
  36. package/src/assets/scss/_common.scss +142 -0
  37. package/src/assets/scss/code.scss +71 -0
  38. package/src/assets/scss/day.scss +51 -0
  39. package/src/assets/scss/fonts.scss +3 -0
  40. package/src/assets/scss/index.scss +9 -0
  41. package/src/assets/scss/night.scss +61 -0
  42. package/src/assets/scss/palette.scss +393 -0
  43. package/src/assets/scss/theme.scss +326 -0
  44. package/src/assets/scss/typography.scss +218 -0
  45. package/src/assets/scss/vars.scss +8 -0
  46. package/src/components/ArrowButton/index.tsx +36 -0
  47. package/src/components/ArrowButton/styles.scss +35 -0
  48. package/src/components/BaseLayout/index.tsx +23 -0
  49. package/src/components/BaseLayout/styles.scss +63 -0
  50. package/src/components/Behaviors/BehaviorsList.tsx +67 -0
  51. package/src/components/Behaviors/index.tsx +60 -0
  52. package/src/components/Behaviors/styles.scss +196 -0
  53. package/src/components/Categories/CategoriesList.tsx +67 -0
  54. package/src/components/Categories/index.tsx +60 -0
  55. package/src/components/Categories/styles.scss +196 -0
  56. package/src/components/Footer/FooterLogo.tsx +15 -0
  57. package/src/components/Footer/FooterVersion.tsx +33 -0
  58. package/src/components/Footer/index.tsx +13 -0
  59. package/src/components/Footer/styles.scss +14 -0
  60. package/src/components/Graphs/index.tsx +2 -0
  61. package/src/components/Header/index.tsx +14 -0
  62. package/src/components/Header/styles.scss +26 -0
  63. package/src/components/HeaderActions/Filters.tsx +90 -0
  64. package/src/components/HeaderActions/HeaderActions.tsx +58 -0
  65. package/src/components/HeaderActions/SortBy.tsx +128 -0
  66. package/src/components/HeaderActions/styles.scss +82 -0
  67. package/src/components/LanguagePicker/index.tsx +41 -0
  68. package/src/components/LanguagePicker/styles.scss +3 -0
  69. package/src/components/MainReport/index.tsx +19 -0
  70. package/src/components/Metadata/index.tsx +121 -0
  71. package/src/components/Metadata/styles.scss +146 -0
  72. package/src/components/MetadataButton/index.tsx +32 -0
  73. package/src/components/MetadataButton/styles.scss +53 -0
  74. package/src/components/Modal/index.tsx +174 -0
  75. package/src/components/Modal/styles.scss +126 -0
  76. package/src/components/Overview/Overview.module.scss +29 -0
  77. package/src/components/Overview/index.tsx +105 -0
  78. package/src/components/Packages/PackagesList.tsx +67 -0
  79. package/src/components/Packages/index.tsx +59 -0
  80. package/src/components/Packages/styles.scss +196 -0
  81. package/src/components/ReportBody/Filters.tsx +92 -0
  82. package/src/components/ReportBody/HeaderActions.tsx +21 -0
  83. package/src/components/ReportBody/SortBy.tsx +132 -0
  84. package/src/components/ReportBody/context.tsx +106 -0
  85. package/src/components/ReportBody/index.tsx +69 -0
  86. package/src/components/ReportBody/styles.scss +64 -0
  87. package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
  88. package/src/components/ReportHeader/ReportHeaderLogo.tsx +14 -0
  89. package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
  90. package/src/components/ReportHeader/index.tsx +33 -0
  91. package/src/components/ReportHeader/styles.scss +49 -0
  92. package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
  93. package/src/components/ReportMetadata/MetadataSummary.tsx +80 -0
  94. package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
  95. package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
  96. package/src/components/ReportMetadata/index.tsx +46 -0
  97. package/src/components/ReportMetadata/styles.scss +99 -0
  98. package/src/components/SideBySide/index.tsx +54 -0
  99. package/src/components/SideBySide/styles.scss +59 -0
  100. package/src/components/SideNav/SideNav.tsx +78 -0
  101. package/src/components/{side-nav → SideNav}/styles.scss +54 -46
  102. package/src/components/Suites/index.tsx +62 -0
  103. package/src/components/Suites/styles.scss +10 -0
  104. package/src/components/Tabs/index.tsx +33 -0
  105. package/src/components/Tabs/styles.scss +56 -0
  106. package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
  107. package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
  108. package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
  109. package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
  110. package/src/components/TestResult/TestResultDropdown/index.tsx +23 -0
  111. package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
  112. package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
  113. package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
  114. package/src/components/TestResult/TestResultError/index.tsx +48 -0
  115. package/src/components/TestResult/TestResultError/styles.scss +51 -0
  116. package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
  117. package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
  118. package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -0
  119. package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
  120. package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
  121. package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
  122. package/src/components/TestResult/TestResultInfo/index.tsx +79 -0
  123. package/src/components/TestResult/TestResultInfo/styles.scss +50 -0
  124. package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
  125. package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
  126. package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
  127. package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
  128. package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
  129. package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
  130. package/src/components/TestResult/TestResultOverview.tsx +40 -0
  131. package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
  132. package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
  133. package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
  134. package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
  135. package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +65 -0
  136. package/src/components/TestResult/TestResultRetriesView/index.tsx +27 -0
  137. package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
  138. package/src/components/TestResult/TestResultSetup/index.tsx +49 -0
  139. package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
  140. package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
  141. package/src/components/TestResult/TestResultStatus/index.tsx +26 -0
  142. package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
  143. package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +38 -0
  144. package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
  145. package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
  146. package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
  147. package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
  148. package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
  149. package/src/components/TestResult/TestResultSteps/styles.scss +221 -0
  150. package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
  151. package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
  152. package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -0
  153. package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
  154. package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
  155. package/src/components/TestResult/TestResultTabs/index.tsx +59 -0
  156. package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
  157. package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
  158. package/src/components/{testresult → TestResult}/TestResultView.js +1 -1
  159. package/src/components/TestResult/index.tsx +54 -0
  160. package/src/components/TestResultView/index.tsx +31 -0
  161. package/src/components/ThemeButton/ThemeButton.tsx +20 -0
  162. package/src/components/Timeline/index.tsx +2 -0
  163. package/src/components/Tree/Tree.tsx +76 -0
  164. package/src/components/Tree/TreeHeader.tsx +82 -0
  165. package/src/components/Tree/TreeItem.tsx +49 -0
  166. package/src/components/Tree/TreeItemIcon.tsx +32 -0
  167. package/src/components/Tree/index.tsx +60 -0
  168. package/src/components/Tree/styles.scss +185 -0
  169. package/src/index.html +27 -4
  170. package/src/index.tsx +60 -0
  171. package/src/stores/behaviors.ts +127 -0
  172. package/src/stores/categories.ts +127 -0
  173. package/src/stores/chart.ts +32 -0
  174. package/src/stores/charts.ts +22 -0
  175. package/src/stores/envInfo.ts +34 -0
  176. package/src/stores/index.ts +4 -0
  177. package/src/stores/locale.ts +84 -0
  178. package/src/stores/packages.ts +127 -0
  179. package/src/stores/router.ts +55 -0
  180. package/src/stores/stats.ts +36 -0
  181. package/src/stores/tabs.ts +7 -0
  182. package/src/stores/testResults.ts +66 -0
  183. package/src/stores/theme.ts +30 -0
  184. package/src/stores/tree.ts +127 -0
  185. package/src/stores/trend.ts +36 -0
  186. package/src/stores/types.ts +5 -0
  187. package/src/translations/am.json +128 -0
  188. package/src/translations/az.json +116 -205
  189. package/src/translations/br.json +9 -0
  190. package/src/translations/constants.ts +124 -0
  191. package/src/translations/de.json +113 -190
  192. package/src/translations/en.json +118 -203
  193. package/src/translations/es.json +106 -196
  194. package/src/translations/fr.json +107 -205
  195. package/src/translations/he.json +104 -190
  196. package/src/translations/it.json +119 -0
  197. package/src/translations/ja.json +104 -195
  198. package/src/translations/ka.json +119 -0
  199. package/src/translations/kr.json +104 -195
  200. package/src/translations/nl.json +107 -205
  201. package/src/translations/pl.json +105 -208
  202. package/src/translations/pt.json +119 -0
  203. package/src/translations/ru.json +102 -200
  204. package/src/translations/sv.json +107 -210
  205. package/src/translations/tr.json +107 -205
  206. package/src/translations/zh.json +105 -177
  207. package/src/types/globals.d.ts +13 -0
  208. package/src/types/window.d.ts +8 -0
  209. package/src/utils/attachments.ts +156 -0
  210. package/src/utils/copyToClipboard.ts +16 -0
  211. package/src/utils/isMac.ts +8 -0
  212. package/src/utils/navigate.ts +7 -0
  213. package/src/utils/statuses.ts +55 -0
  214. package/src/utils/time.ts +17 -0
  215. package/src/utils/treeFilters.ts +139 -0
  216. package/test/dummy.test.ts +7 -0
  217. package/test/utils/treeFilters.test.ts +448 -0
  218. package/tsconfig.json +25 -0
  219. package/types.d.ts +83 -1
  220. package/vitest.config.ts +18 -0
  221. package/webpack.config.js +42 -56
  222. package/.babelrc.cjs +0 -18
  223. package/dist/multi/154.app-4abea52a.js +0 -1
  224. package/dist/multi/216.app-4abea52a.js +0 -1
  225. package/dist/multi/232.app-4abea52a.js +0 -1
  226. package/dist/multi/250.app-4abea52a.js +0 -1
  227. package/dist/multi/256.app-4abea52a.js +0 -1
  228. package/dist/multi/301.app-4abea52a.js +0 -1
  229. package/dist/multi/323.app-4abea52a.js +0 -1
  230. package/dist/multi/353.app-4abea52a.js +0 -1
  231. package/dist/multi/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
  232. package/dist/multi/564.app-4abea52a.js +0 -1
  233. package/dist/multi/594.app-4abea52a.js +0 -1
  234. package/dist/multi/623.app-4abea52a.js +0 -1
  235. package/dist/multi/7.app-4abea52a.js +0 -1
  236. package/dist/multi/729.app-4abea52a.js +0 -1
  237. package/dist/multi/783.app-4abea52a.js +0 -1
  238. package/dist/multi/826.app-4abea52a.js +0 -1
  239. package/dist/multi/925.app-4abea52a.js +0 -1
  240. package/dist/multi/app-4abea52a.js +0 -2
  241. package/dist/multi/app-4abea52a.js.LICENSE.txt +0 -29
  242. package/dist/multi/checkmark-c8e83eb1.svg +0 -8
  243. package/dist/multi/sort-down-icon-2f1625c8.svg +0 -8
  244. package/dist/multi/sort-icon-dc2db9af.svg +0 -8
  245. package/dist/multi/sort-up-icon-e10d3fa9.svg +0 -8
  246. package/dist/multi/sprite.svg +0 -4
  247. package/dist/multi/styles-4abea52a.css +0 -558
  248. package/dist/multi/vertical-5e6d1df4.png +0 -0
  249. package/dist/single/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
  250. package/dist/single/app-69c4b948.js +0 -2
  251. package/dist/single/app-69c4b948.js.LICENSE.txt +0 -29
  252. package/dist/single/checkmark-c8e83eb1.svg +0 -8
  253. package/dist/single/sort-down-icon-2f1625c8.svg +0 -8
  254. package/dist/single/sort-icon-dc2db9af.svg +0 -8
  255. package/dist/single/sort-up-icon-e10d3fa9.svg +0 -8
  256. package/dist/single/sprite.svg +0 -4
  257. package/dist/single/styles-69c4b948.css +0 -558
  258. package/src/app.js +0 -69
  259. package/src/assets/icons/allure-logo.svg +0 -45
  260. package/src/assets/icons/bamboo.svg +0 -31
  261. package/src/assets/icons/bitbucket.svg +0 -10
  262. package/src/assets/icons/bomb.svg +0 -7
  263. package/src/assets/icons/broken.svg +0 -10
  264. package/src/assets/icons/bug.svg +0 -10
  265. package/src/assets/icons/chevron-down.svg +0 -10
  266. package/src/assets/icons/chevron-left.svg +0 -10
  267. package/src/assets/icons/chevron-right-fat.svg +0 -10
  268. package/src/assets/icons/chevron-right.svg +0 -10
  269. package/src/assets/icons/chevron-up.svg +0 -10
  270. package/src/assets/icons/circleci.svg +0 -1
  271. package/src/assets/icons/close.svg +0 -10
  272. package/src/assets/icons/collapse.svg +0 -5
  273. package/src/assets/icons/compare.svg +0 -10
  274. package/src/assets/icons/copy.svg +0 -11
  275. package/src/assets/icons/csv.svg +0 -13
  276. package/src/assets/icons/download.svg +0 -11
  277. package/src/assets/icons/draggable.svg +0 -15
  278. package/src/assets/icons/expand.svg +0 -5
  279. package/src/assets/icons/failed.svg +0 -10
  280. package/src/assets/icons/file.svg +0 -3
  281. package/src/assets/icons/folder.svg +0 -10
  282. package/src/assets/icons/github.svg +0 -4
  283. package/src/assets/icons/gitlab.svg +0 -12
  284. package/src/assets/icons/graphs.svg +0 -11
  285. package/src/assets/icons/history.svg +0 -11
  286. package/src/assets/icons/image.svg +0 -3
  287. package/src/assets/icons/info.svg +0 -12
  288. package/src/assets/icons/jenkins.svg +0 -327
  289. package/src/assets/icons/jobs.svg +0 -12
  290. package/src/assets/icons/link.svg +0 -11
  291. package/src/assets/icons/list.svg +0 -13
  292. package/src/assets/icons/maximize.svg +0 -11
  293. package/src/assets/icons/new-broken.svg +0 -6
  294. package/src/assets/icons/new-failed.svg +0 -6
  295. package/src/assets/icons/new-passed.svg +0 -5
  296. package/src/assets/icons/overview.svg +0 -5
  297. package/src/assets/icons/passed.svg +0 -10
  298. package/src/assets/icons/pdf.svg +0 -13
  299. package/src/assets/icons/refresh.svg +0 -4
  300. package/src/assets/icons/retries.svg +0 -11
  301. package/src/assets/icons/save.svg +0 -10
  302. package/src/assets/icons/skipped.svg +0 -3
  303. package/src/assets/icons/sort-down.svg +0 -10
  304. package/src/assets/icons/sort-up.svg +0 -10
  305. package/src/assets/icons/sort.svg +0 -11
  306. package/src/assets/icons/table.svg +0 -10
  307. package/src/assets/icons/task.svg +0 -11
  308. package/src/assets/icons/teamcity.svg +0 -40
  309. package/src/assets/icons/timeline.svg +0 -12
  310. package/src/assets/icons/tree.svg +0 -10
  311. package/src/assets/icons/txt.svg +0 -11
  312. package/src/assets/icons/unknown.svg +0 -10
  313. package/src/behaviors/ClipboardBehavior.js +0 -34
  314. package/src/behaviors/DownloadBehavior.js +0 -42
  315. package/src/behaviors/GaBehavior.js +0 -27
  316. package/src/behaviors/LoadBehavior.js +0 -18
  317. package/src/behaviors/TooltipBehavior.js +0 -25
  318. package/src/behaviors/index.js +0 -7
  319. package/src/blocks/alert/styles.scss +0 -8
  320. package/src/blocks/arrow/styles.scss +0 -21
  321. package/src/blocks/attachment-row/attachment-row.hbs +0 -34
  322. package/src/blocks/attachment-row/styles.scss +0 -71
  323. package/src/blocks/bar/styles.scss +0 -22
  324. package/src/blocks/button/styles.scss +0 -60
  325. package/src/blocks/clipboard-copy/clipboard-copy.hbs +0 -5
  326. package/src/blocks/executor-icon/bamboo.svg +0 -31
  327. package/src/blocks/executor-icon/bitbucket.svg +0 -10
  328. package/src/blocks/executor-icon/circleci.svg +0 -1
  329. package/src/blocks/executor-icon/default-icon.png +0 -0
  330. package/src/blocks/executor-icon/github.svg +0 -4
  331. package/src/blocks/executor-icon/gitlab.svg +0 -12
  332. package/src/blocks/executor-icon/jenkins.svg +0 -327
  333. package/src/blocks/executor-icon/styles.scss +0 -15
  334. package/src/blocks/executor-icon/teamcity.svg +0 -40
  335. package/src/blocks/island/styles.scss +0 -7
  336. package/src/blocks/label/styles.scss +0 -15
  337. package/src/blocks/link/styles.scss +0 -10
  338. package/src/blocks/pane/styles.scss +0 -52
  339. package/src/blocks/pane-header/pane-header.hbs +0 -15
  340. package/src/blocks/parameters-table/parameters-table.hbs +0 -10
  341. package/src/blocks/parameters-table/styles.scss +0 -22
  342. package/src/blocks/spinner/styles.scss +0 -30
  343. package/src/blocks/splash/styles.scss +0 -13
  344. package/src/blocks/status-details/status-details.hbs +0 -13
  345. package/src/blocks/status-details/styles.scss +0 -32
  346. package/src/blocks/step-stats/step-stats.hbs +0 -15
  347. package/src/blocks/step-stats/styles.scss +0 -19
  348. package/src/blocks/table/sort-down-icon.svg +0 -1
  349. package/src/blocks/table/sort-icon.svg +0 -1
  350. package/src/blocks/table/sort-up-icon.svg +0 -1
  351. package/src/blocks/table/sortable-col.hbs +0 -4
  352. package/src/blocks/table/styles.scss +0 -64
  353. package/src/blocks/tabs/styles.scss +0 -29
  354. package/src/blocks/tabs/tabs.hbs +0 -5
  355. package/src/blocks/text/styles.scss +0 -5
  356. package/src/blocks/widget/draggable.svg +0 -1
  357. package/src/blocks/widget/styles.scss +0 -76
  358. package/src/components/attachment/AttachmentView.hbs +0 -58
  359. package/src/components/attachment/AttachmentView.js +0 -90
  360. package/src/components/attachment/styles.scss +0 -78
  361. package/src/components/empty/EmptyView.hbs +0 -3
  362. package/src/components/empty/EmptyView.js +0 -18
  363. package/src/components/empty/styles.scss +0 -4
  364. package/src/components/error-splash/ErrorSplashView.hbs +0 -4
  365. package/src/components/error-splash/ErrorSplashView.js +0 -19
  366. package/src/components/error-splash/styles.scss +0 -4
  367. package/src/components/graph-base/BaseChartView.hbs +0 -5
  368. package/src/components/graph-base/BaseChartView.js +0 -78
  369. package/src/components/graph-base/styles.scss +0 -66
  370. package/src/components/graph-duration-chart/DurationChartView.js +0 -100
  371. package/src/components/graph-pie-chart/PieChartView.js +0 -155
  372. package/src/components/graph-severity-chart/SeverityChartView.js +0 -100
  373. package/src/components/graph-trend-chart/TrendChartView.js +0 -202
  374. package/src/components/graph-trend-chart/styles.scss +0 -16
  375. package/src/components/graph-trend-chart/trend-tooltip.hbs +0 -9
  376. package/src/components/language-select/LanguageSelectView.hbs +0 -5
  377. package/src/components/language-select/LanguageSelectView.js +0 -42
  378. package/src/components/language-select/checkmark.svg +0 -1
  379. package/src/components/language-select/styles.scss +0 -34
  380. package/src/components/loader/LoaderView.hbs +0 -6
  381. package/src/components/loader/LoaderView.js +0 -21
  382. package/src/components/loader/styles.scss +0 -26
  383. package/src/components/marks-toggle/MarksToggleView.hbs +0 -14
  384. package/src/components/marks-toggle/MarksToggleView.js +0 -41
  385. package/src/components/marks-toggle/styles.scss +0 -38
  386. package/src/components/modal/styles.scss +0 -31
  387. package/src/components/node-search/NodeSearchView.hbs +0 -4
  388. package/src/components/node-search/NodeSearchView.js +0 -32
  389. package/src/components/node-search/styles.scss +0 -29
  390. package/src/components/node-sorter/NodeSorterView.hbs +0 -22
  391. package/src/components/node-sorter/NodeSorterView.js +0 -43
  392. package/src/components/node-sorter/styles.scss +0 -26
  393. package/src/components/popover/PopoverView.js +0 -8
  394. package/src/components/popover/styles.scss +0 -32
  395. package/src/components/side-by-side/SideBySideView.hbs +0 -2
  396. package/src/components/side-by-side/SideBySideView.js +0 -42
  397. package/src/components/side-by-side/styles.scss +0 -59
  398. package/src/components/side-by-side/vertical.png +0 -0
  399. package/src/components/status-toggle/StatusToggleView.hbs +0 -16
  400. package/src/components/status-toggle/StatusToggleView.js +0 -42
  401. package/src/components/status-toggle/styles.scss +0 -35
  402. package/src/components/testresult-execution/TestResultExecutionView.hbs +0 -13
  403. package/src/components/testresult-execution/TestResultExecutionView.js +0 -85
  404. package/src/components/testresult-execution/stages-block.hbs +0 -47
  405. package/src/components/testresult-execution/steps-list.hbs +0 -31
  406. package/src/components/testresult-execution/styles.scss +0 -70
  407. package/src/components/testresult-overview/TestResultOverviewView.hbs +0 -8
  408. package/src/components/testresult-overview/TestResultOverviewView.js +0 -46
  409. package/src/components/testresult-overview/styles.scss +0 -22
  410. package/src/components/testresult-tree/TestResultTreeView.js +0 -60
  411. package/src/components/tooltip/TooltipView.js +0 -111
  412. package/src/components/tooltip/styles.scss +0 -43
  413. package/src/components/tree/TreeView.hbs +0 -9
  414. package/src/components/tree/TreeView.js +0 -200
  415. package/src/components/tree/styles.scss +0 -141
  416. package/src/components/tree/tree-group.hbs +0 -36
  417. package/src/components/tree/tree-leaf.hbs +0 -53
  418. package/src/components/tree/tree-time.hbs +0 -6
  419. package/src/components/tree-view-container/TreeViewContainer.hbs +0 -34
  420. package/src/components/tree-view-container/TreeViewContainer.js +0 -103
  421. package/src/components/tree-view-container/styles.scss +0 -38
  422. package/src/components/widget-status/WidgetStatusView.hbs +0 -21
  423. package/src/components/widget-status/WidgetStatusView.js +0 -17
  424. package/src/components/widgets-grid/WidgetsGridView.js +0 -90
  425. package/src/components/widgets-grid/styles.scss +0 -34
  426. package/src/data/localstorage/LocalStorageModel.js +0 -23
  427. package/src/data/testresult/TestResultModel.js +0 -36
  428. package/src/data/tree/TreeCollection.js +0 -153
  429. package/src/data/tree/comparator.js +0 -63
  430. package/src/data/tree/filter.js +0 -66
  431. package/src/data/trend/TrendCollection.js +0 -36
  432. package/src/data/widgets/WidgetsModel.js +0 -25
  433. package/src/decorators/index.js +0 -53
  434. package/src/helpers/allure-icon.js +0 -228
  435. package/src/helpers/and.js +0 -3
  436. package/src/helpers/angle.js +0 -15
  437. package/src/helpers/arrow.js +0 -17
  438. package/src/helpers/b.js +0 -6
  439. package/src/helpers/concat.js +0 -3
  440. package/src/helpers/date.js +0 -11
  441. package/src/helpers/default.js +0 -8
  442. package/src/helpers/duration.js +0 -60
  443. package/src/helpers/eq.js +0 -3
  444. package/src/helpers/fileicon.js +0 -5
  445. package/src/helpers/filesize.js +0 -8
  446. package/src/helpers/gt.js +0 -3
  447. package/src/helpers/inc.js +0 -3
  448. package/src/helpers/is-def.js +0 -3
  449. package/src/helpers/job-icon.js +0 -8
  450. package/src/helpers/linky.js +0 -7
  451. package/src/helpers/not.js +0 -3
  452. package/src/helpers/or.js +0 -3
  453. package/src/helpers/sort-class.js +0 -6
  454. package/src/helpers/statistic-bar.js +0 -12
  455. package/src/helpers/status-bar.js +0 -14
  456. package/src/helpers/t.js +0 -5
  457. package/src/helpers/text-with-links.js +0 -18
  458. package/src/helpers/time.js +0 -18
  459. package/src/helpers/timeago.js +0 -10
  460. package/src/layouts/application/AppLayout.hbs +0 -2
  461. package/src/layouts/application/AppLayout.js +0 -50
  462. package/src/layouts/application/styles.scss +0 -17
  463. package/src/layouts/error/ErrorLayout.js +0 -11
  464. package/src/layouts/overview/OverviewLayout.js +0 -8
  465. package/src/layouts/testresult/TestResultLayout.js +0 -43
  466. package/src/layouts/tree/TreeLayout.js +0 -45
  467. package/src/pluginApi.js +0 -26
  468. package/src/plugins/.eslintrc +0 -5
  469. package/src/plugins/default/index.js +0 -11
  470. package/src/plugins/screen-diff/index.js +0 -186
  471. package/src/plugins/screen-diff/styles.css +0 -30
  472. package/src/plugins/tab-behaviors/index.js +0 -239
  473. package/src/plugins/tab-category/index.js +0 -15
  474. package/src/plugins/tab-graph/GraphCollection.js +0 -12
  475. package/src/plugins/tab-graph/GraphLayout.js +0 -17
  476. package/src/plugins/tab-graph/index.js +0 -8
  477. package/src/plugins/tab-packages/index.js +0 -137
  478. package/src/plugins/tab-suites/index.js +0 -15
  479. package/src/plugins/tab-timeline/TimelineLayout.js +0 -18
  480. package/src/plugins/tab-timeline/TimelineView.hbs +0 -17
  481. package/src/plugins/tab-timeline/TimelineView.js +0 -250
  482. package/src/plugins/tab-timeline/index.js +0 -12
  483. package/src/plugins/tab-timeline/styles.scss +0 -76
  484. package/src/plugins/testresult-category/CategoryView.hbs +0 -6
  485. package/src/plugins/testresult-category/CategoryView.js +0 -17
  486. package/src/plugins/testresult-category/index.js +0 -3
  487. package/src/plugins/testresult-description/DescriptionView.hbs +0 -4
  488. package/src/plugins/testresult-description/DescriptionView.js +0 -16
  489. package/src/plugins/testresult-description/index.js +0 -3
  490. package/src/plugins/testresult-duration/DurationView.hbs +0 -7
  491. package/src/plugins/testresult-duration/DurationView.js +0 -16
  492. package/src/plugins/testresult-duration/index.js +0 -3
  493. package/src/plugins/testresult-history/HistoryView.hbs +0 -27
  494. package/src/plugins/testresult-history/HistoryView.js +0 -33
  495. package/src/plugins/testresult-history/index.js +0 -3
  496. package/src/plugins/testresult-history/styles.scss +0 -10
  497. package/src/plugins/testresult-links/LinksView.hbs +0 -17
  498. package/src/plugins/testresult-links/LinksView.js +0 -17
  499. package/src/plugins/testresult-links/index.js +0 -3
  500. package/src/plugins/testresult-links/styles.scss +0 -19
  501. package/src/plugins/testresult-owner/OwnerView.hbs +0 -4
  502. package/src/plugins/testresult-owner/OwnerView.js +0 -17
  503. package/src/plugins/testresult-owner/index.js +0 -3
  504. package/src/plugins/testresult-parameters/ParametersView.hbs +0 -13
  505. package/src/plugins/testresult-parameters/ParametersView.js +0 -22
  506. package/src/plugins/testresult-parameters/index.js +0 -3
  507. package/src/plugins/testresult-parameters/styles.scss +0 -8
  508. package/src/plugins/testresult-retries/RetriesView.hbs +0 -13
  509. package/src/plugins/testresult-retries/RetriesView.js +0 -28
  510. package/src/plugins/testresult-retries/index.js +0 -3
  511. package/src/plugins/testresult-retries/styles.scss +0 -11
  512. package/src/plugins/testresult-severity/SeverityView.hbs +0 -4
  513. package/src/plugins/testresult-severity/SeverityView.js +0 -17
  514. package/src/plugins/testresult-severity/index.js +0 -3
  515. package/src/plugins/testresult-tags/TagsView.hbs +0 -5
  516. package/src/plugins/testresult-tags/TagsView.js +0 -17
  517. package/src/plugins/testresult-tags/index.js +0 -3
  518. package/src/plugins/widget-categories/index.js +0 -12
  519. package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.hbs +0 -4
  520. package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.js +0 -33
  521. package/src/plugins/widget-categories-trend/index.js +0 -4
  522. package/src/plugins/widget-categories-trend/styles.scss +0 -6
  523. package/src/plugins/widget-duration/DurationWidgetView.hbs +0 -4
  524. package/src/plugins/widget-duration/DurationWidgetView.js +0 -23
  525. package/src/plugins/widget-duration/index.js +0 -3
  526. package/src/plugins/widget-duration-trend/DurationTrendWidgetView.hbs +0 -4
  527. package/src/plugins/widget-duration-trend/DurationTrendWidgetView.js +0 -49
  528. package/src/plugins/widget-duration-trend/index.js +0 -4
  529. package/src/plugins/widget-duration-trend/styles.scss +0 -6
  530. package/src/plugins/widget-environment/EnvironmentWidget.hbs +0 -27
  531. package/src/plugins/widget-environment/EnvironmentWidget.js +0 -25
  532. package/src/plugins/widget-environment/index.js +0 -3
  533. package/src/plugins/widget-executor/ExecutorsWidgetView.hbs +0 -40
  534. package/src/plugins/widget-executor/ExecutorsWidgetView.js +0 -8
  535. package/src/plugins/widget-executor/index.js +0 -3
  536. package/src/plugins/widget-history-trend/HistoryTrendWidgetView.hbs +0 -4
  537. package/src/plugins/widget-history-trend/HistoryTrendWidgetView.js +0 -30
  538. package/src/plugins/widget-history-trend/index.js +0 -6
  539. package/src/plugins/widget-history-trend/styles.scss +0 -6
  540. package/src/plugins/widget-launch/LaunchesWidgetView.hbs +0 -23
  541. package/src/plugins/widget-launch/LaunchesWidgetView.js +0 -8
  542. package/src/plugins/widget-launch/index.js +0 -3
  543. package/src/plugins/widget-retry-trend/RetryTrendWidgetView.hbs +0 -4
  544. package/src/plugins/widget-retry-trend/RetryTrendWidgetView.js +0 -33
  545. package/src/plugins/widget-retry-trend/index.js +0 -4
  546. package/src/plugins/widget-retry-trend/styles.scss +0 -6
  547. package/src/plugins/widget-severity/SeverityWidgetView.hbs +0 -4
  548. package/src/plugins/widget-severity/SeverityWidgetView.js +0 -23
  549. package/src/plugins/widget-severity/index.js +0 -3
  550. package/src/plugins/widget-status/StatusWidgetView.hbs +0 -4
  551. package/src/plugins/widget-status/StatusWidgetView.js +0 -44
  552. package/src/plugins/widget-status/index.js +0 -3
  553. package/src/plugins/widget-suites/index.js +0 -12
  554. package/src/plugins/widget-summary/SummaryWidgetView.hbs +0 -20
  555. package/src/plugins/widget-summary/SummaryWidgetView.js +0 -33
  556. package/src/plugins/widget-summary/index.js +0 -3
  557. package/src/plugins/widget-summary/styles.scss +0 -14
  558. package/src/router.js +0 -52
  559. package/src/utils/arrays.js +0 -3
  560. package/src/utils/attachmentType.js +0 -101
  561. package/src/utils/clipboard.js +0 -38
  562. package/src/utils/escape.js +0 -5
  563. package/src/utils/gtag.js +0 -8
  564. package/src/utils/highlight.js +0 -14
  565. package/src/utils/hotkeys.js +0 -25
  566. package/src/utils/loading.js +0 -9
  567. package/src/utils/marks.js +0 -1
  568. package/src/utils/pluginsRegistry.js +0 -56
  569. package/src/utils/settings.js +0 -4
  570. package/src/utils/settingsFactory.js +0 -149
  571. package/src/utils/sorting.js +0 -21
  572. package/src/utils/translation.js +0 -63
  573. package/webpack/utils.js +0 -10
  574. /package/src/components/{modal → Modal}/ModalView.hbs +0 -0
  575. /package/src/components/{modal → Modal}/ModalView.js +0 -0
  576. /package/src/components/{side-nav → SideNav}/SideNavView.hbs +0 -0
  577. /package/src/components/{side-nav → SideNav}/SideNavView.js +0 -0
  578. /package/src/components/{testresult → TestResult}/TestResultView.hbs +0 -0
  579. /package/src/components/{testresult → TestResult}/styles.scss +0 -0
@@ -1,327 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- id="svg2"
13
- version="1.1"
14
- inkscape:version="0.48.0 r9654"
15
- width="180"
16
- height="180"
17
- xml:space="preserve"
18
- sodipodi:docname="headshot.svg"><metadata
19
- id="metadata8"><rdf:RDF><cc:Work
20
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
21
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
22
- id="defs6"><clipPath
23
- clipPathUnits="userSpaceOnUse"
24
- id="clipPath18"><path
25
- d="M 0,2494.84 0,0 l 1804.34,0 0,2494.84 -1804.34,0 z"
26
- id="path20"
27
- inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
28
- pagecolor="#ffffff"
29
- bordercolor="#666666"
30
- borderopacity="1"
31
- objecttolerance="10"
32
- gridtolerance="10"
33
- guidetolerance="10"
34
- inkscape:pageopacity="0"
35
- inkscape:pageshadow="2"
36
- inkscape:window-width="1500"
37
- inkscape:window-height="844"
38
- id="namedview4"
39
- showgrid="false"
40
- inkscape:zoom="2.67"
41
- inkscape:cx="85.437483"
42
- inkscape:cy="28.333333"
43
- inkscape:window-x="2281"
44
- inkscape:window-y="562"
45
- inkscape:window-maximized="0"
46
- inkscape:current-layer="g10" /><g
47
- inkscape:groupmode="layer"
48
- id="layer1"
49
- inkscape:label="background"
50
- style="display:none"><path
51
- inkscape:connector-curvature="0"
52
- id="path26-6"
53
- style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
54
- d="M 21.510285,69.510582 C 3.511457,87.926788 -7.6263961,113.354 -7.6263961,141.48362 l 0,0 c 0,28.12375 11.1378531,53.55425 29.1366811,71.96705 l 0,0 c 18.007502,18.41281 42.824476,29.77463 70.260725,29.77463 l 0,0 c 27.43696,0 52.25569,-11.36182 70.26155,-29.77463 l 0,0 c 17.99766,-18.4128 29.13789,-43.8433 29.13789,-71.96705 l 0,0 c 0,-28.12962 -11.14023,-53.556832 -29.13789,-71.973038 l 0,0 C 144.0267,51.101408 119.20797,39.739596 91.77101,39.737246 l 0,0 c -27.436249,0.0023 -52.253223,11.364162 -70.260725,29.773336 l 0,0 z M 16.954302,217.90489 C -2.174259,198.34219 -14,171.30619 -14,141.48362 l 0,0 c 0,-29.82727 11.825741,-56.860682 30.954303,-76.424675 l 0,0 C 36.078408,45.491433 62.551059,33.362858 91.77101,33.366371 l 0,0 c 29.2202,-0.0038 55.69554,12.125062 74.81636,31.692574 l 0,0 c 19.1302,19.563993 30.95748,46.599755 30.95513,76.424675 l 0,0 c 0.002,29.82257 -11.82493,56.85857 -30.95513,76.42127 l 0,0 c -19.12082,19.56646 -45.59616,31.69351 -74.81636,31.69351 l 0,0 c -29.219951,0 -55.692603,-12.12705 -74.816708,-31.69351 l 0,0" /><path
55
- inkscape:connector-curvature="0"
56
- id="path22"
57
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
58
- d="m 194.35824,141.09204 c 0,57.95078 -45.92914,104.92969 -102.585822,104.92969 -56.655737,0 -102.58493,-46.97891 -102.58493,-104.92969 0,-57.952192 45.929193,-104.9318 102.58493,-104.9318 56.656682,0 102.585822,46.979608 102.585822,104.9318" /><path
59
- inkscape:connector-curvature="0"
60
- id="path24"
61
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
62
- d="m -6.6321341,167.07966 c 0,0 -7.4264859,-109.424481 93.4011831,-112.551302 L 79.735062,42.80427 25.02294,61.172406 9.390504,79.148959 -4.2873155,105.33355 l -7.8166755,30.48264 2.3448186,20.32137" /><path
63
- inkscape:connector-curvature="0"
64
- id="path26"
65
- style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
66
- d="M 21.510285,69.510582 C 3.511457,87.926788 -7.6263961,113.354 -7.6263961,141.48362 l 0,0 c 0,28.12375 11.1378531,53.55425 29.1366811,71.96705 l 0,0 c 18.007502,18.41281 42.824476,29.77463 70.260725,29.77463 l 0,0 c 27.43696,0 52.25569,-11.36182 70.26155,-29.77463 l 0,0 c 17.99766,-18.4128 29.13789,-43.8433 29.13789,-71.96705 l 0,0 c 0,-28.12962 -11.14023,-53.556832 -29.13789,-71.973038 l 0,0 C 144.0267,51.101408 119.20797,39.739596 91.77101,39.737246 l 0,0 c -27.436249,0.0023 -52.253223,11.364162 -70.260725,29.773336 l 0,0 z M 16.954302,217.90489 C -2.174259,198.34219 -14,171.30619 -14,141.48362 l 0,0 c 0,-29.82727 11.825741,-56.860682 30.954303,-76.424675 l 0,0 C 36.078408,45.491433 62.551059,33.362858 91.77101,33.366371 l 0,0 c 29.2202,-0.0038 55.69554,12.125062 74.81636,31.692574 l 0,0 c 19.1302,19.563993 30.95748,46.599755 30.95513,76.424675 l 0,0 c 0.002,29.82257 -11.82493,56.85857 -30.95513,76.42127 l 0,0 c -19.12082,19.56646 -45.59616,31.69351 -74.81636,31.69351 l 0,0 c -29.219951,0 -55.692603,-12.12705 -74.816708,-31.69351 l 0,0" /></g><g
67
- id="g10"
68
- inkscape:groupmode="layer"
69
- inkscape:label="front"
70
- transform="matrix(1.25,0,0,-1.25,0,180)"
71
- style="display:inline"><path
72
- inkscape:connector-curvature="0"
73
- id="path28"
74
- style="fill:#f0d6b7;fill-opacity:1;fill-rule:evenodd;stroke:none"
75
- d="m 107.96462,30.661159 -12.506325,-1.875855 -16.882882,-1.875855 -10.942987,-0.31233 -10.629344,0.31233 -8.129205,2.501453 -7.190902,7.815749 -5.627564,15.944766 -1.250445,3.43938 -7.50342,2.500515 -4.37712,7.191089 -3.126299,10.317202 3.439567,9.066945 8.128079,2.813782 6.565493,-3.12705 3.12705,-6.877822 3.751709,0.625598 1.25007,1.562587 -1.25007,7.19109 -0.313267,9.066944 1.875854,12.505383 -0.07325,7.14326 5.700817,9.11384 10.004685,7.19109 17.508479,7.50342 19.383396,-2.81378 16.882691,-12.19306 7.81669,-12.50539 5.00196,-9.06694 1.25026,-22.510259 -3.75171,-19.384147 -6.87782,-17.195024 -6.56549,-9.066944" /><path
76
- inkscape:connector-curvature="0"
77
- id="path30"
78
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
79
- d="m 97.33415,-23.425365 -44.708563,-1.875855 0,-7.503419 3.75171,-26.261969 -1.875855,-2.189122 -31.263748,10.630469 -2.189122,3.75171 -3.1263,35.327975 -7.189777,21.2600013 -1.5637124,5.0019667 25.0107734,17.195024 7.816687,3.12705 6.877634,-8.441347 5.940082,-5.315235 6.87876,-2.188184 3.125925,-0.937928 3.75171,-16.2570961 2.813782,-3.4391923 7.191277,2.50126486 -5.002905,-9.69254216 27.200082,-12.8177163 -3.43844,-1.875855" /><path
80
- inkscape:connector-curvature="0"
81
- id="path32"
82
- style="fill:#6d6b6d;fill-opacity:1;fill-rule:evenodd;stroke:none"
83
- d="m 23.237694,85.686548 8.128079,2.813782 6.565493,-3.12705 3.12705,-6.877822 3.751709,0.625598 0.937928,3.75171 -1.875855,7.190151 1.875855,17.195963 -1.563713,9.37927 5.627565,6.5655 12.193057,9.6916 -3.439193,4.68964 -17.195211,-8.44135 -7.190902,-5.62756 -4.064227,-8.75368 -6.252975,-8.44135 -1.875855,-10.00487 1.251195,-10.629532" /><path
84
- inkscape:connector-curvature="0"
85
- id="path34"
86
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
87
- d="m 36.055411,115.07463 c 0,0 4.689637,11.56746 23.448186,17.19502 18.758548,5.62757 0.937927,4.06498 0.937927,4.06498 l -20.321136,-7.81669 -7.816687,-7.81575 -3.438442,-6.25316 7.190152,0.6256" /><path
88
- inkscape:connector-curvature="0"
89
- id="path36"
90
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
91
- d="m 26.676136,87.874733 c 0,0 -6.565492,21.885597 18.446032,25.011707 l -0.937928,3.75171 -17.194836,-4.06497 -5.002905,-16.2571 1.251195,-10.629532 3.438442,2.188185" /><path
92
- inkscape:connector-curvature="0"
93
- id="path38"
94
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
95
- d="m 36.680821,58.798982 4.093584,3.966495 c 0,0 1.847623,-0.214785 2.159765,-2.40297 0.312143,-2.189123 1.25007,-21.885599 14.693572,-32.516068 1.226246,-0.969817 -10.003934,1.564463 -10.003934,1.564463 L 37.618748,45.0424" /><path
96
- inkscape:connector-curvature="0"
97
- id="path40"
98
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
99
- d="m 94.208975,64.738876 c 0,0 0.72877,9.476819 3.280871,8.74805 2.552104,-0.72877 2.552104,-3.28087 2.552104,-3.28087 0,0 -6.197828,-4.00964 -5.832975,-5.46718" /><path
100
- inkscape:connector-curvature="0"
101
- id="path42"
102
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:nonzero;stroke:none"
103
- d="m 120.15674,99.442192 c 0,0 -5.15298,-1.087996 -5.62757,-5.627565 -0.47459,-4.540507 5.62757,-0.937927 6.5655,-0.625598" /><path
104
- inkscape:connector-curvature="0"
105
- id="path44"
106
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:nonzero;stroke:none"
107
- d="m 82.327123,99.128924 c 0,0 -6.87876,-0.937927 -6.87876,-5.314297 0,-4.377307 7.816875,-4.064977 10.00506,-2.189123" /><path
108
- inkscape:connector-curvature="0"
109
- id="path46"
110
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
111
- d="m 39.80712,78.807788 c 0,0 -11.880914,7.19109 -13.130984,0.31233 -1.250445,-6.877822 -4.064977,-11.880727 1.875855,-19.070879 l -4.064227,1.250258 -3.75171,9.691604 -1.25007,9.379274 7.190152,7.504358 8.12883,-0.625598 4.689637,-3.75171 0.312517,-4.689637" /><path
112
- inkscape:connector-curvature="0"
113
- id="path48"
114
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
115
- d="m 45.434685,98.504264 c 0,0 5.315047,27.512226 32.202801,32.827456 22.136213,4.37544 33.764634,-0.93792 38.141944,-5.93989 0,0 -19.696476,23.44725 -38.455212,16.2571 -18.758549,-7.19109 -32.514193,-20.32208 -32.20205,-28.76249 0.532367,-14.376548 0.312517,-14.382176 0.312517,-14.382176" /><path
116
- inkscape:connector-curvature="0"
117
- id="path50"
118
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
119
- d="m 117.96855,122.26572 c 0,0 -9.066,0.31233 -9.37927,-7.81669 0,0 -9.4e-4,-1.25026 0.62466,-2.50051 0,0 7.19203,8.12901 11.5684,3.75171" /><path
120
- inkscape:connector-curvature="0"
121
- id="path52"
122
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
123
- d="m 78.267679,111.10157 c 0,0 -1.560805,12.47725 -12.19859,5.22332 -6.87801,-4.68964 -6.252225,-11.25513 -5.002155,-12.50539 1.250445,-1.2512 0.910446,-3.76953 1.862349,-2.04093 0.951433,1.7286 0.638166,7.35616 4.077733,8.91875 3.439192,1.56353 9.076981,3.30995 11.260663,0.40425" /><path
124
- inkscape:connector-curvature="0"
125
- id="path54"
126
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
127
- d="M 48.873877,26.597119 19.485984,13.466135 c 0,0 12.193057,-48.459897 5.939707,-63.466736 l -4.377119,1.562587 -0.312518,18.446407 L 12.60835,5.0238501 9.1687826,14.716392 39.80712,35.349858 48.873877,26.597119" /><path
128
- inkscape:connector-curvature="0"
129
- id="path56"
130
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
131
- d="m 51.895786,-0.20622086 4.169369,-5.08713084 0,-18.7585493 -5.002905,0 c 0,0 -0.62466,13.130985 -0.62466,14.6946973 0,1.5633374 0.62466,7.1909021 0.62466,7.1909021" /><path
132
- inkscape:connector-curvature="0"
133
- id="path58"
134
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
135
- d="m 52.000177,-26.865683 -14.068911,-0.62466 4.064977,-2.813782 10.003934,-1.563337" /><path
136
- inkscape:connector-curvature="0"
137
- id="path60"
138
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
139
- d="m 100.14793,-23.738633 11.56746,0.312518 2.81378,-28.763609 -11.88072,-1.562587 -2.50052,30.013678" /><path
140
- inkscape:connector-curvature="0"
141
- id="path62"
142
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
143
- d="m 103.27404,-23.738633 17.5083,0.937928 c 0,0 7.19015,18.1331385 7.19015,19.0710659 0,0.9379275 6.25316,26.2617811 6.25316,26.2617811 l -14.06891,14.693571 -2.81378,2.501452 -7.50342,-7.503419 0,-29.0757507 -6.5655,-26.8866283" /><path
144
- inkscape:connector-curvature="0"
145
- id="path64"
146
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
147
- d="m 111.08979,-21.55026 -10.94186,-2.188373 1.56259,-8.754614 c 4.06404,-1.875855 10.9428,3.12705 10.9428,3.12705" /><path
148
- inkscape:connector-curvature="0"
149
- id="path66"
150
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
151
- d="m 111.40306,33.161673 21.88466,-16.257096 0.6256,7.50342 -16.57036,15.319168 -5.9399,-6.565492" /><path
152
- inkscape:connector-curvature="0"
153
- id="path68"
154
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
155
- d="m 62.850122,-85.332281 -6.472825,26.265673 -3.219342,19.380207 -0.532368,14.385181 29.295976,1.559586 18.226367,0.003 -1.657316,-32.830462 2.813786,-25.324003 -0.31233,-4.689637 -23.760144,-1.875855 -14.381804,3.126309" /><path
156
- inkscape:connector-curvature="0"
157
- id="path70"
158
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
159
- d="m 96.082954,-23.426115 c 0,0 -1.562587,-32.515318 3.12705,-55.650237 0,0 -9.379274,-5.940851 -23.136231,-7.503447 l 26.262347,0.937927 3.12611,1.875855 -3.75171,51.27277 -0.93793,10.943737" /><path
160
- inkscape:connector-curvature="0"
161
- id="path72"
162
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
163
- d="m 115.06192,-49.691085 12.19305,3.439192 23.13492,1.250445 3.43938,10.629438 -6.25316,18.446313 -7.19015,0.937927 -10.00488,-3.126299 -9.59874,-4.686636 -5.09576,0.934926 -3.97119,-1.560336" /><path
164
- inkscape:connector-curvature="0"
165
- id="path74"
166
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
167
- d="m 114.8415,-43.435109 c 0,0 8.12808,3.750959 9.37928,3.438442 l -3.43844,17.195962 4.06404,1.562587 c 0,0 2.81378,-16.256909 2.81378,-18.132764 0,0 17.50735,-0.937927 19.07088,-0.937927 0,0 3.75171,7.190902 2.81378,14.694321 l 3.43938,-10.004684 0.31233,-5.627565 -5.00197,-7.503419 -5.62756,-1.250445 -9.37928,0.312517 -3.12611,4.063852 -10.9428,-1.562587 -3.43938,-1.251195" /><path
168
- inkscape:connector-curvature="0"
169
- id="path76"
170
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
171
- d="M 102.55559,-21.241026 95.67777,-3.7326404 88.48668,6.5845614 c 0,0 1.562587,4.3773076 3.75171,4.3773076 2.189122,0 7.191089,0 7.191089,0 L 106.3073,8.4604163 105.68264,-3.1072304 102.55559,-21.241026" /><path
172
- inkscape:connector-curvature="0"
173
- id="path78"
174
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
175
- d="m 103.89964,-15.297286 c 0,0 -8.754613,16.8819438 -8.754613,19.3832087 0,0 1.562587,3.7517098 3.75171,2.8137823 2.189123,-0.9379274 6.878763,-3.438442 6.878763,-3.438442 l 0,5.9398945 -10.630473,2.1891225 -7.190152,-0.937927 12.193055,-28.763421 2.50052,-0.313268" /><path
176
- inkscape:connector-curvature="0"
177
- id="path80"
178
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
179
- d="m 65.664279,25.96777 -8.661197,0.941679 -8.129205,2.501453 0,-2.813783 3.971935,-4.380121 12.505575,-5.627565" /><path
180
- inkscape:connector-curvature="0"
181
- id="path82"
182
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
183
- d="m 51.688785,25.03078 c 0,0 9.692542,-4.064977 12.818842,-3.12705 l 0.311017,-3.747958 -8.752364,1.872103 -5.315422,3.75171 0.937927,1.251195" /><path
184
- inkscape:connector-curvature="0"
185
- id="path84"
186
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
187
- d="m 115.02815,9.8973211 c -5.30492,0.1556959 -10.09773,0.7859829 -14.29401,1.9696479 0.28513,1.720159 -0.24855,3.408428 0.18008,4.64743 1.16959,0.842259 3.12986,0.829128 4.89786,1.027031 -1.52883,0.75128 -3.67668,1.048603 -5.44092,0.614342 -0.0413,1.193982 -0.576827,1.934007 -0.90135,2.868182 2.98261,1.064548 10.02363,8.043666 13.9845,5.732613 1.88711,-1.099251 2.68904,-7.377737 2.83535,-10.430691 0.12193,-2.532404 -0.22979,-5.087319 -1.26151,-6.4285549" /><path
188
- inkscape:connector-curvature="0"
189
- id="path86"
190
- style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
191
- d="m 115.02815,9.8973211 c -5.30492,0.1556959 -10.09773,0.7859829 -14.29401,1.9696479 0.28513,1.720159 -0.24855,3.408428 0.18008,4.64743 1.16959,0.842259 3.12986,0.829128 4.89786,1.027031 -1.52883,0.75128 -3.67668,1.048603 -5.44092,0.614342 -0.0413,1.193982 -0.576827,1.934007 -0.90135,2.868182 2.98261,1.064548 10.02363,8.043666 13.9845,5.732613 1.88711,-1.099251 2.68904,-7.377737 2.83535,-10.430691 0.12193,-2.532404 -0.22979,-5.087319 -1.26151,-6.4285549 z" /><path
192
- inkscape:connector-curvature="0"
193
- id="path88"
194
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
195
- d="m 89.660027,18.569398 c -0.01407,-0.401433 -0.03095,-0.805679 -0.0469,-1.210864 -1.65638,-1.087996 -4.330411,-1.074865 -6.148114,-1.989344 2.679658,-0.117241 4.789057,-0.762535 6.614264,-1.672325 -0.04033,-1.011086 -0.07879,-2.021233 -0.118179,-3.032319 C 86.925031,8.5860986 84.151579,5.490938 80.57695,3.541831 78.886805,2.6200359 72.955164,0.24811119 71.15697,0.66727097 70.1396,0.90353489 70.047964,2.166079 69.641279,3.3561214 68.774822,5.904564 66.77985,9.9611002 66.605865,13.797223 c -0.221633,4.845334 -0.710762,12.965909 4.510868,11.967955 4.212607,-0.803804 9.112152,-2.744376 12.373608,-4.526438 1.993095,-1.089872 3.145808,-2.436736 6.169686,-2.669342" /><path
196
- inkscape:connector-curvature="0"
197
- id="path90"
198
- style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
199
- d="m 89.660027,18.569398 c -0.01407,-0.401433 -0.03095,-0.805679 -0.0469,-1.210864 -1.65638,-1.087996 -4.330411,-1.074865 -6.148114,-1.989344 2.679658,-0.117241 4.789057,-0.762535 6.614264,-1.672325 -0.04033,-1.011086 -0.07879,-2.021233 -0.118179,-3.032319 C 86.925031,8.5860986 84.151579,5.490938 80.57695,3.541831 78.886805,2.6200359 72.955164,0.24811119 71.15697,0.66727097 70.1396,0.90353489 70.047964,2.166079 69.641279,3.3561214 68.774822,5.904564 66.77985,9.9611002 66.605865,13.797223 c -0.221633,4.845334 -0.710762,12.965909 4.510868,11.967955 4.212607,-0.803804 9.112152,-2.744376 12.373608,-4.526438 1.993095,-1.089872 3.145808,-2.436736 6.169686,-2.669342 z" /><path
200
- inkscape:connector-curvature="0"
201
- id="path92"
202
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
203
- d="m 92.675464,12.788013 c -0.463336,2.639328 -0.998893,3.392484 -0.791611,5.695096 7.039146,4.693389 8.360687,-8.061486 0.791611,-5.695096" /><path
204
- inkscape:connector-curvature="0"
205
- id="path94"
206
- style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
207
- d="m 92.675464,12.788013 c -0.463336,2.639328 -0.998893,3.392484 -0.791611,5.695096 7.039146,4.693389 8.360687,-8.061486 0.791611,-5.695096 z" /><path
208
- inkscape:connector-curvature="0"
209
- id="path96"
210
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:evenodd;stroke:none"
211
- d="m 102.86792,10.648601 c 0,0 -2.18912,3.12705 -0.6256,4.064978 1.56353,0.937927 3.12705,-9.38e-4 4.06498,1.562587 0.93793,1.563525 0,2.501452 0.31233,4.377307 0.31233,1.875855 1.87679,2.189123 3.43938,2.501452 1.56259,0.31233 5.94083,0.937928 6.56549,-0.625597 l -1.87585,5.627565 -3.75171,1.250257 -11.880728,-6.877822 -0.625598,-3.43938 0,-6.877822" /><path
212
- inkscape:connector-curvature="0"
213
- id="path98"
214
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:evenodd;stroke:none"
215
- d="M 70.040649,0.33130536 C 69.665103,5.2104977 69.267609,10.083031 68.825376,14.95744 c -0.661708,7.278317 1.748297,6.008363 8.05736,6.008363 0.963626,0 5.933235,-1.148961 6.288709,-1.875855 1.705152,-3.482525 -2.851299,-2.708734 1.96402,-5.334931 4.064978,-2.216323 11.24575,1.345926 9.603439,6.272858 -0.919169,1.0955 -4.789057,0.341406 -6.176252,1.060796 -2.442363,1.266202 -4.884726,2.532404 -7.32737,3.798606 C 78.12774,26.499575 70.945561,28.850021 67.632426,26.597119 59.2376,20.887955 68.162261,6.6230164 71.15697,0.66727097" /><path
216
- inkscape:connector-curvature="0"
217
- id="path100"
218
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
219
- d="m 78.267679,111.10157 c -8.521258,1.98465 -12.755438,-3.566 -15.338396,-9.323 -2.306364,0.559 -1.388602,3.69543 -0.806055,5.29366 1.525258,4.19441 7.671965,9.7779 12.694285,9.02099 2.161266,-0.32546 5.086005,-2.30168 3.450166,-4.99165" /><path
220
- inkscape:connector-curvature="0"
221
- id="path102"
222
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
223
- d="m 119.78626,101.39777 c 0.13412,-0.006 0.27012,-0.0103 0.40424,-0.0159 1.92557,-4.000265 3.59227,-8.237821 6.0215,-11.769118 -1.62731,-3.790165 -12.32249,-7.144193 -12.15742,-0.338592 2.31293,1.011086 6.30569,0.206344 8.356,1.49787 -1.18554,3.253671 -2.89632,6.02337 -2.62432,10.62578" /><path
224
- inkscape:connector-curvature="0"
225
- id="path104"
226
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
227
- d="m 82.630261,101.29366 c 1.827083,-3.349338 2.421729,-6.868442 5.01885,-9.399908 1.169595,-1.139582 3.444069,-2.528653 2.316681,-5.697909 -0.263558,-0.747529 -2.189123,-2.414226 -3.300567,-2.741562 -4.060288,-1.198672 -13.52135,-0.247613 -10.317389,4.814381 3.357874,-0.156634 7.871274,-2.180681 10.381168,0.256992 -1.927441,3.081092 -5.363632,9.176682 -4.098743,12.768006" /><path
228
- inkscape:connector-curvature="0"
229
- id="path106"
230
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
231
- d="m 118.26212,67.252522 c -6.11341,-3.927102 -12.93026,-8.197486 -22.947328,-7.207034 -2.140351,1.860848 -2.956347,6.001797 -0.876962,8.736794 1.082368,-1.860848 0.402371,-5.283346 3.418745,-5.798268 5.683845,-0.972631 12.299045,3.476897 16.387465,5.031981 2.53522,4.274135 -0.21853,5.846102 -2.50239,8.597043 -4.67557,5.636006 -10.94749,12.621689 -10.71957,21.059285 1.88992,1.370312 2.05312,-2.091579 2.32418,-2.721866 2.44143,-5.713854 8.58579,-13.021246 13.07002,-17.9116 1.10113,-1.204299 2.91414,-2.359826 3.1158,-3.156126 0.58151,-2.315743 -1.51288,-5.090132 -1.26996,-6.630209" /><path
232
- inkscape:connector-curvature="0"
233
- id="path108"
234
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
235
- d="m 37.66752,71.386906 c -1.916185,1.093624 -2.3723,5.910819 -4.621919,6.047756 -3.214933,0.195089 -2.628729,-6.24941 -2.615879,-10.018003 -2.212946,2.009041 -2.602092,8.194672 -0.976383,11.371433 -1.852781,0.909789 -2.680127,-1.003583 -3.707814,-1.677953 1.320789,9.594998 14.03599,4.450466 11.921995,-5.723233" /><path
236
- inkscape:connector-curvature="0"
237
- id="path110"
238
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
239
- d="m 122.15452,63.256951 c -2.84567,-5.416531 -6.87125,-11.381749 -15.22162,-11.555266 -0.16977,1.749235 -0.30014,4.411073 0.009,5.464365 6.38353,0.613405 10.3247,3.862386 15.21224,6.090901" /><path
240
- inkscape:connector-curvature="0"
241
- id="path112"
242
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
243
- d="m 82.148729,59.745351 c 5.325927,-2.800652 15.114138,-3.101726 22.353061,-2.889755 0.3883,-1.586035 0.37892,-3.545365 0.39393,-5.479372 -9.305178,-0.464274 -20.307066,1.838338 -22.746991,8.369127" /><path
244
- inkscape:connector-curvature="0"
245
- id="path114"
246
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
247
- d="m 81.136424,54.522971 c 3.68296,-9.247027 16.341228,-8.182479 27.015776,-7.927363 -0.4699,-1.200547 -1.48849,-2.618693 -2.75469,-3.13174 -3.42062,-1.391884 -12.855232,-2.44799 -17.603958,0.0741 -3.011685,1.601042 -4.94663,5.218628 -6.596725,7.339282 -0.796864,1.024217 -4.764766,3.640096 -0.0604,3.645724" /><path
248
- inkscape:connector-curvature="0"
249
- id="path116"
250
- style="fill:#81b0c4;fill-opacity:1;fill-rule:evenodd;stroke:none"
251
- d="m 117.81755,3.5158504 c -4.32197,-7.4023109 -8.45729,-15.0050574 -13.58494,-21.5342514 2.14973,6.320787 3.06983,16.8999519 3.39436,24.9650024 4.49736,2.1047092 8.34849,-0.4736534 10.19058,-3.430751" /><path
252
- inkscape:connector-curvature="0"
253
- id="path118"
254
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
255
- d="m 141.0744,-23.088743 c -4.83877,-0.968691 -8.23876,-5.671459 -12.95935,-5.369634 2.59431,3.65726 7.14044,5.198931 12.95935,5.369634" /><path
256
- inkscape:connector-curvature="0"
257
- id="path120"
258
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
259
- d="m 143.20912,-30.661381 c -3.94399,-0.416534 -8.57641,-1.055169 -12.57667,-0.726144 1.89368,2.892568 9.18981,1.89452 12.57667,0.726144" /><path
260
- inkscape:connector-curvature="0"
261
- id="path122"
262
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
263
- d="m 144.57568,-37.190201 c -4.43265,-0.09604 -9.94203,-0.0077 -14.1552,0.345814 2.49207,2.676751 11.28045,0.993266 14.1552,-0.345814" /><path
264
- inkscape:connector-curvature="0"
265
- id="path124"
266
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
267
- d="m 109.4775,-55.056968 c 0.63591,-5.566787 2.84285,-11.207201 2.56617,-17.303729 -2.45081,-0.826502 -3.85864,-1.549363 -7.14232,-1.544955 -0.23167,5.181299 -0.9248,13.102003 -0.71752,18.041129 1.61511,-0.106924 3.99651,1.153744 5.29367,0.807555" /><path
268
- inkscape:connector-curvature="0"
269
- id="path126"
270
- style="fill:#f0d6b7;fill-opacity:1;fill-rule:evenodd;stroke:none"
271
- d="m 102.33143,26.985421 c -2.2257,-1.452849 -4.121256,-3.266801 -6.258793,-4.818133 -4.740285,-0.234482 -7.327089,0.328274 -10.809614,3.05014 0.05721,0.218537 0.407061,0.120993 0.420192,0.38924 5.074187,-2.261343 11.524314,0.921045 16.648215,1.378753" /><path
272
- inkscape:connector-curvature="0"
273
- id="path128"
274
- style="fill:#81b0c4;fill-opacity:1;fill-rule:evenodd;stroke:none"
275
- d="m 75.693819,-7.6033732 c 1.394135,6.0411906 6.856812,9.1700228 11.817416,12.4968514 5.120146,-6.4981489 8.234065,-14.8548948 11.663128,-22.9191952 -8.101817,2.44227 -16.379965,6.405013 -23.480544,10.4223438" /><path
276
- inkscape:connector-curvature="0"
277
- id="path130"
278
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
279
- d="m 104.18383,-55.864523 c -0.20728,-4.939126 0.48585,-12.85983 0.71752,-18.041129 3.28368,-0.0044 4.69151,0.718453 7.14232,1.544955 0.27668,6.096528 -1.93026,11.736942 -2.56617,17.303729 -1.29716,0.346189 -3.67856,-0.914479 -5.29367,-0.807555 z m -51.130267,28.089801 c 2.1653,-19.905634 5.301448,-36.638822 11.053569,-54.265659 12.766412,-3.876276 28.156582,-4.214079 39.440788,-0.716267 -2.07188,9.948653 -1.16678,22.060673 -2.37765,32.677261 -0.9126,7.979699 -0.44739,16.008546 -1.698584,24.149756 -13.673106,2.844546 -32.99957,0.66499 -46.418123,-1.845091 z m 49.651157,1.720159 c -0.11536,-8.549021 0.38268,-16.981927 1.03547,-25.54164 3.28275,0.492787 5.51033,0.821812 8.56047,1.49046 -0.99045,8.240537 -0.86852,17.513169 -2.886,24.802647 -2.33169,-0.02232 -4.38482,0.02711 -6.70994,-0.751467 z m 16.6529,1.378003 c -1.55789,0.357163 -3.37185,0.01388 -4.86034,-0.01501 0.6997,-6.968895 2.39735,-14.658868 2.99481,-21.973952 2.342,-0.07288 3.5932,1.031721 5.5197,1.403234 0.10317,6.421145 -0.56088,15.267676 -3.65417,20.585725 z m 25.21525,-23.038218 c 4.88191,1.18554 7.95174,7.164828 6.58612,13.305345 -0.91635,4.126881 -2.54835,11.897797 -4.29477,14.537875 -1.29059,1.952765 -4.78999,4.509368 -7.58408,2.71999 -4.5452,-2.910483 -12.55228,-3.755368 -15.86692,-7.278411 1.66201,-5.533772 2.17787,-13.134642 2.86349,-20.1464 5.67822,-0.353974 12.66484,1.562587 17.3873,-0.471215 -3.29681,-1.067924 -7.5747,-1.076365 -10.42318,-2.632762 2.32793,-1.124388 7.77823,-0.897222 11.33204,-0.03442 z M 99.174363,-18.025717 C 95.7453,-9.9614166 92.631381,-1.6046707 87.511235,4.8934782 82.550631,1.5666496 77.087954,-1.5621826 75.693819,-7.6033732 82.794398,-11.620704 91.072546,-15.583447 99.174363,-18.025717 z m 8.452607,24.9723184 c -0.32453,-8.0650505 -1.24463,-18.6442154 -3.39436,-24.9650024 5.12765,6.529194 9.26297,14.1319405 13.58494,21.5342514 -1.84209,2.9570976 -5.69322,5.5354602 -10.19058,3.430751 z M 98.045099,10.351278 C 96.102651,10.560436 94.453774,8.1180728 91.927936,9.1741791 91.349235,8.5345125 90.823057,7.8413842 90.233101,7.2167245 c 5.578792,-6.72315769 8.11401,-16.261786 12.422849,-24.1626995 2.31199,7.5895216 2.04562,15.904436 2.55491,24.1880235 -3.17676,-0.2016544 -4.93912,2.8728715 -7.165761,3.1092295 z m -6.161246,8.131831 c -0.207282,-2.302612 0.328275,-3.055768 0.791611,-5.695096 7.569076,-2.36639 6.247535,10.388485 -0.791611,5.695096 z M 83.490341,21.23874 C 80.228885,23.020802 75.32934,24.961374 71.116733,25.765178 65.895103,26.76407 66.384232,18.642557 66.605865,13.797223 66.77985,9.9611002 68.774822,5.904564 69.641279,3.3561214 70.047964,2.166079 70.1396,0.90353489 71.15697,0.66727097 72.955164,0.24811119 78.886805,2.6200359 80.57695,3.541831 c 3.574629,1.949107 6.348081,5.0442676 9.384152,7.122715 0.03939,1.011086 0.07785,2.021233 0.118179,3.032319 -1.825207,0.90979 -3.934606,1.555084 -6.614264,1.672325 1.817703,0.914479 4.491734,0.901348 6.148114,1.989344 0.01595,0.405185 0.03283,0.809431 0.0469,1.210864 -3.023878,0.232606 -4.176591,1.57947 -6.169686,2.669342 z m -31.151947,5.658516 c -2.706859,-2.748127 7.592053,-6.49421 10.871142,-6.695864 -0.01829,1.738917 0.991014,3.378415 0.787671,4.625858 -3.894556,0.683749 -9.012826,0.232606 -11.658813,2.070006 z m 33.344821,-1.290588 c -0.01313,-0.268247 -0.362978,-0.170703 -0.420192,-0.38924 3.482525,-2.721866 6.069329,-3.284622 10.809614,-3.05014 2.137537,1.551332 4.033093,3.365284 6.258793,4.818133 -5.123901,-0.457708 -11.574028,-3.640096 -16.648215,-1.378753 z m 30.606445,-9.280792 c -0.14631,3.052954 -0.94824,9.33144 -2.83535,10.430691 -3.96087,2.311991 -11.00189,-4.668065 -13.9845,-5.732613 0.324523,-0.934175 0.86008,-1.6742 0.90135,-2.868182 1.76424,0.434261 3.91209,0.136938 5.44092,-0.614342 -1.768,-0.197903 -3.72827,-0.184772 -4.89786,-1.027031 -0.42863,-1.239002 0.10505,-2.927271 -0.18008,-4.64743 4.19628,-1.183665 8.98909,-1.813952 14.29401,-1.9696479 1.03172,1.3412359 1.38344,3.8961509 1.26151,6.4285549 z M 47.781379,24.23917 C 46.931336,24.845071 41.18109,32.326918 40.393325,32.016464 29.988239,27.913031 20.259024,20.81761 11.564906,14.106739 c 8.289309,-17.7869493 11.635459,-39.578755 12.226728,-60.582421 9.495765,-4.441274 17.836379,-10.843754 30.721907,-11.512309 -1.491117,10.549808 -2.852237,19.962097 -3.698623,29.894561 -3.237632,1.364778 -7.882623,-0.0619 -10.912504,0.423193 -0.0257,3.651258 4.627359,1.598885 5.01491,4.054285 0.292071,1.85719 -2.560166,1.997879 -1.631431,4.922337 2.368642,-0.861017 3.612522,-2.762853 6.138642,-3.476991 2.308239,5.049802 -0.03226,13.9846861 0.300418,18.2053595 0.06303,0.7924549 0.395711,4.3903446 2.170833,3.75902564 1.571028,-0.55872337 -0.08976,-9.56864194 0.08244,-13.56327514 0.156821,-3.680333 -0.444484,-7.241456 1.045976,-9.551853 12.451362,1.694835 25.104191,2.790334 38.576393,3.159972 -2.963851,1.271735 -6.48483,2.475284 -10.345152,4.651182 -2.092704,1.179725 -8.689335,3.634469 -9.293173,5.6221243 -0.963532,3.1672872 2.527996,4.8544311 3.125175,7.569731 -6.285146,-3.4278434 -7.511392,3.28565365 -8.998195,8.0418837 -1.347145,4.307901 -2.113995,7.52593 -2.44452,10.0105 -5.41428,2.581176 -11.203074,5.19518 -15.863355,8.505126 z m 63.009211,6.872194 c 8.66927,4.203791 10.23185,-15.711223 6.83374,-22.1266463 0.52524,-1.913372 2.33169,-2.6458933 3.0689,-4.3660522 -4.83783,-8.6663558 -10.21121,-16.7559795 -15.14753,-25.3203825 3.67199,2.285822 8.91688,0.408842 13.23791,2.119809 1.57947,0.62466 2.72281,4.240464 3.91866,7.133032 3.28931,7.958127 6.74276,17.9912307 8.27909,25.585629 0.34703,1.730476 1.29246,5.500945 1.08049,7.041021 -0.37798,2.757507 -4.11938,4.802189 -6.02243,6.507341 -3.50597,3.14956 -5.71386,5.921136 -9.37083,8.866228 -1.48287,-2.189123 -4.66526,-3.659793 -5.878,-5.439979 z M 27.954813,107.9914 c -4.130914,-4.5452 -3.266239,-13.061577 -2.766136,-19.120588 7.466747,4.69714 17.377263,-0.37142 17.283846,-8.360686 3.564874,0.09473 1.331763,4.452342 0.686938,7.259559 -2.107336,9.169178 3.550243,19.130905 0.256523,27.515975 -6.395165,-0.48491 -11.649059,-3.09703 -15.461171,-7.29426 z m 29.557564,26.38015 c -9.351793,-2.65059 -21.337193,-9.44587 -25.180069,-17.84689 2.975668,0.43239 5.04136,1.93307 7.976791,2.11878 1.109381,0.0722 2.562793,-0.46521 3.837812,-0.14819 2.540845,0.63029 4.685229,6.32726 6.602071,8.44697 1.868539,2.07001 4.114406,2.95448 5.651388,4.84159 0.98745,0.47646 2.447428,0.44364 2.503516,1.9265 -0.427976,0.45771 -0.878651,0.80662 -1.391509,0.66124 z m 48.681433,-2.49301 c -9.706609,5.47655 -26.136378,9.59593 -36.461646,4.44859 -8.331422,-4.15408 -19.59321,-11.02722 -23.432804,-19.73681 3.586822,-8.40477 -1.062484,-16.10609 -1.359244,-24.639355 -0.157572,-4.540506 2.137818,-8.504188 2.313679,-13.447065 -1.227372,-2.024986 -4.977299,-2.274474 -7.573107,-2.135661 -0.873773,4.372618 -2.403439,9.287357 -6.906148,9.780707 -6.371341,0.69688 -11.029839,-4.576148 -11.319283,-10.086472 -0.342531,-6.48014 4.977206,-17.220347 12.517298,-16.474695 2.912734,0.287944 3.628279,3.207712 6.80185,3.177698 1.720065,-3.431876 -2.653303,-4.509555 -3.103227,-6.964111 -0.117241,-0.634039 0.362697,-3.112043 0.641824,-4.274135 1.369562,-5.658517 4.422609,-12.981854 7.427635,-17.289755 3.813988,-5.464365 11.307184,-6.287865 19.368577,-6.823422 1.439812,3.101726 6.743886,2.84661 10.199961,2.035303 -4.141888,1.640435 -7.992549,5.617247 -11.183753,9.137289 -3.665608,4.038715 -7.378769,8.371002 -7.566355,13.649658 6.927063,-9.610005 12.649921,-18.00258 25.246006,-22.229819 9.531031,-3.196456 20.662357,1.465043 27.985687,6.607699 3.03889,2.137537 4.85284,5.529082 7.01289,8.633622 8.08212,11.625611 11.85352,28.219423 11.0244,44.303003 -0.34141,6.633023 -0.3264,13.243531 -2.5521,17.706191 -2.32606,4.66619 -10.1934,8.84091 -14.79862,4.62023 -0.85352,4.5377 3.82955,7.34398 9.3305,5.71104 -3.92241,5.062 -8.03898,11.14446 -13.61402,14.29027 z m 18.08418,-149.662459 c 7.58502,3.77075 21.7571,10.1494066 26.5124,-0.01388 1.75486,-3.74627 3.81361,-10.079062 4.72246,-13.946231 1.28402,-5.455736 -1.39188,-16.923025 -6.99975,-18.753765 -4.9532,-1.6168 -10.73271,-1.518317 -16.69886,-0.319834 -0.70251,0.584329 -1.48474,1.602918 -2.03155,2.664652 -4.26007,0.165263 -8.24907,-0.228667 -11.61436,-1.979871 0.3189,-3.150498 -1.81207,-3.656135 -3.80986,-4.304993 -1.48099,-5.87227 2.96291,-13.540952 1.8993,-18.89558 -0.75878,-3.814738 -5.45217,-4.404601 -8.90187,-5.11827 -0.11255,-2.119904 0.15101,-3.889482 0.38643,-5.682902 -0.7888,-2.906478 -4.32666,-4.561038 -7.67881,-4.966251 -11.02909,-1.32629 -27.775128,-1.922021 -38.38365,1.892709 -2.960287,7.2612 -5.29235,16.092819 -7.758067,24.384285 -10.346465,-1.104973 -18.71456,4.464347 -26.603374,8.113072 -2.731339,1.266202 -6.509779,1.963739 -7.530151,4.137855 -0.989232,2.104896 -0.584422,6.139016 -0.829878,9.949721 -0.624659,9.732874 -1.159559,19.120589 -3.729762,29.086068 C 14.074612,-7.0651904 12.063133,-3.1192359 10.6599,1.1896966 9.3629336,5.1832978 7.0969009,10.118672 6.5059128,14.101112 c -0.8763056,5.902377 4.6815712,6.230652 8.2354722,8.78838 5.493816,3.95524 9.806125,6.142487 15.756055,9.712239 1.762272,1.057044 7.076663,3.732951 7.681157,4.965388 1.201673,2.4433 -2.06269,5.888308 -2.935432,7.803556 -1.380535,3.028568 -2.100488,5.601302 -2.298297,8.589539 -4.991181,0.788797 -8.77478,3.759213 -11.060228,7.108552 -3.780598,5.543152 -6.40248,15.79845 -3.131458,23.599193 0.256523,0.614342 1.535856,1.822393 1.724567,2.765948 0.372263,1.858034 -0.700538,4.328535 -0.767225,6.304748 -0.343656,10.138995 1.71547,18.874855 8.541049,21.932495 2.770919,11.03847 12.688376,14.70858 22.032103,20.19452 3.492748,2.05031 7.34294,3.36059 11.319284,4.82376 14.264188,5.24958 36.149505,4.261 47.98803,-4.69245 5.01978,-3.79673 13.04375,-11.8132 15.91381,-17.6171 7.58033,-15.32292 7.04196,-40.931149 1.73986,-59.570581 -0.71283,-2.50239 -1.74643,-6.180942 -3.1899,-9.186999 -1.00639,-2.099082 -4.13438,-6.299121 -3.75452,-8.152465 0.39112,-1.916186 7.132,-7.034456 8.57735,-8.428216 2.60275,-2.510832 7.5475,-5.843288 7.94799,-9.011607 0.43051,-3.371849 -1.48567,-7.984577 -2.45643,-11.238247 -3.24523,-10.858292 -6.41167,-20.8952411 -10.09116,-30.575684" /><path
280
- inkscape:connector-curvature="0"
281
- id="path132"
282
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
283
- d="m 73.673992,57.379898 c 0.411469,0.547749 2.673844,1.379691 5.839349,-0.144441 0,0 -3.75171,-0.625598 -3.439568,-6.880636 l -1.563337,0.313268 c 0,0 -1.615674,5.671647 -0.836444,6.711809" /><path
284
- inkscape:connector-curvature="0"
285
- id="path134"
286
- style="fill:#1d1919;fill-opacity:1;fill-rule:evenodd;stroke:none"
287
- d="m 101.08586,3.616959 c 0,-0.9492764 -0.77004,-1.7190334 -1.72016,-1.7190334 -0.949182,0 -1.719221,0.769757 -1.719221,1.7190334 0,0.9491825 0.770039,1.7201589 1.719221,1.7201589 0.95012,0 1.72016,-0.7709764 1.72016,-1.7201589" /><path
288
- inkscape:connector-curvature="0"
289
- id="path136"
290
- style="fill:#1d1919;fill-opacity:1;fill-rule:evenodd;stroke:none"
291
- d="m 102.80508,-4.3554243 c 0,-0.9492763 -0.77004,-1.7190334 -1.72016,-1.7190334 -0.94918,0 -1.71922,0.7697571 -1.71922,1.7190334 0,0.9492764 0.77004,1.720159 1.71922,1.720159 0.95012,0 1.72016,-0.7708826 1.72016,-1.720159" /><rect
292
- style="fill:#000000;fill-opacity:1;stroke:none"
293
- id="rect3048"
294
- width="70.411987"
295
- height="4.1198502"
296
- x="16.853933"
297
- y="177.37828"
298
- transform="matrix(0.8,0,0,-0.8,0,144)"
299
- rx="0.98258007"
300
- ry="0.98258007" /><rect
301
- style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
302
- id="rect3048-5"
303
- width="50.037457"
304
- height="3.2958801"
305
- x="78.501877"
306
- y="-2.0973756"
307
- rx="0.78606403"
308
- ry="0.78606403"
309
- transform="scale(1,-1)" /><rect
310
- style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
311
- id="rect3048-6"
312
- width="54.831463"
313
- height="3.2958801"
314
- x="13.483147"
315
- y="-3.6973758"
316
- rx="0.78606403"
317
- ry="0.78606403"
318
- transform="scale(1,-1)" /><rect
319
- style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
320
- id="rect3048-5-9"
321
- width="45.24345"
322
- height="3.2958801"
323
- x="83.295883"
324
- y="-3.6973755"
325
- rx="0.78606403"
326
- ry="0.78606403"
327
- transform="scale(1,-1)" /></g></svg>
@@ -1,15 +0,0 @@
1
- .executor-icon {
2
- display: inline-flex;
3
- align-items: center;
4
- gap: 0 4px;
5
-
6
- & > svg {
7
- flex: 0 0 auto;
8
- }
9
-
10
- & > span {
11
- flex: 1 1 auto;
12
- display: inline-block;
13
- margin-top: 3px;
14
- }
15
- }
@@ -1,40 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128.01 128.01">
2
- <defs>
3
- <linearGradient id="linear-gradient" x1="66.73" y1="-662.84" x2="26.4" y2="-613.01" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
4
- <stop offset="0.06" stop-color="#0cb0f2"/>
5
- <stop offset="0.21" stop-color="#10adf2"/>
6
- <stop offset="0.37" stop-color="#1ea5f3"/>
7
- <stop offset="0.54" stop-color="#3497f5"/>
8
- <stop offset="0.71" stop-color="#5283f7"/>
9
- <stop offset="0.88" stop-color="#796af9"/>
10
- <stop offset="0.97" stop-color="#905cfb"/>
11
- </linearGradient>
12
- <linearGradient id="linear-gradient-2" x1="20.9" y1="-706.33" x2="41.11" y2="-659.59" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
13
- <stop offset="0.06" stop-color="#0cb0f2"/>
14
- <stop offset="0.2" stop-color="#0db2ee"/>
15
- <stop offset="0.35" stop-color="#12b7e0"/>
16
- <stop offset="0.51" stop-color="#19c0ca"/>
17
- <stop offset="0.68" stop-color="#23ccac"/>
18
- <stop offset="0.85" stop-color="#30dc85"/>
19
- <stop offset="0.97" stop-color="#3bea62"/>
20
- </linearGradient>
21
- <linearGradient id="linear-gradient-3" x1="48.62" y1="-644.91" x2="88.12" y2="-594.24" xlink:href="#linear-gradient-2"/>
22
- <linearGradient id="linear-gradient-4" x1="63.99" y1="-609.92" x2="63.99" y2="-689.92" gradientTransform="matrix(1, 0, 0, -1, 0, -585.01)" gradientUnits="userSpaceOnUse">
23
- <stop offset="0"/>
24
- <stop offset="1"/>
25
- </linearGradient>
26
- </defs>
27
- <title>icon_TeamCity</title>
28
- <g>
29
- <path d="M45.92,2.92a25,25,0,0,0-5.53-2c-25.7-6.1-44.8,19.1-34.3,42,0.1,0.1,18.7,40.9,21.7,47.4,0,0,34.2-15.7,41.2-31.8,6.48-15-4.45-42.38-6.45-46.49Z" fill="url(#linear-gradient)"/>
30
- <path d="M123.19,48.43a24.36,24.36,0,0,0-8.6-8c-0.1,0-24.1-13.2-24.1-13.2S8.09,75,8,75.13c-9.3,10.6-11.4,27.4-.7,42a25.22,25.22,0,0,0,13,9.2c9.7,3,18.3,1.8,25.5-2,0.2-.1,67.7-35.9,67.9-36.1C126.89,81.33,133,63.73,123.19,48.43Z" fill="#0cb0f2"/>
31
- <path d="M38.42,37.94l-22,27S8,75,7.89,75.13c-9.3,10.6-11.4,27.4-.7,42a25.22,25.22,0,0,0,13,9.2c9.7,3,18.4,1.8,25.6-2,0,0,1.7-.9,4.6-2.5C59.53,116.89,72.14,83.68,80.74,58Z" fill="url(#linear-gradient-2)"/>
32
- <path d="M73,63.93L90.49,27a0.1,0.1,0,0,1,.1-0.1c0.1-.3,1.5-3.9,1.6-4.1a17,17,0,0,0-1.8-15.9,14.29,14.29,0,0,0-8.9-6.3,16.4,16.4,0,0,0-17.1,5.7c-0.1.1-3.9,4.5-3.9,4.5l-28,34.5Z" fill="url(#linear-gradient-3)"/>
33
- </g>
34
- <g>
35
- <rect x="23.99" y="23.93" width="80" height="80" fill="url(#linear-gradient-4)"/>
36
- <polygon points="42.79 41.63 31.99 41.63 31.99 34.63 61.29 34.63 61.29 41.63 50.59 41.63 50.59 69.22 42.79 69.22 42.79 41.63" fill="#fff"/>
37
- <path d="M61.29,52h0c0-10,7.4-18.1,18.1-18.1,6.5,0,10.5,2.2,13.7,5.4l-4.9,5.6c-2.7-2.4-5.4-3.9-8.9-3.9-5.8,0-10.1,4.9-10.1,10.8v0.1c0,6,4.1,10.9,10.1,10.9,4,0,6.4-1.6,9.1-4.1l4.9,4.9c-3.6,3.8-7.5,6.2-14.2,6.2A17.41,17.41,0,0,1,61.29,52" fill="#fff"/>
38
- <rect x="31.99" y="87.93" width="29.3" height="5.3" fill="#fff"/>
39
- </g>
40
- </svg>
@@ -1,7 +0,0 @@
1
- @import "../../variables.scss";
2
-
3
- .island {
4
- background: $content-bg;
5
- border: 1px solid $border-accent-color;
6
- padding: $gap-size $gap-size 0 $gap-size;
7
- }
@@ -1,15 +0,0 @@
1
- @import "../../mixins.scss";
2
-
3
- .label {
4
- vertical-align: baseline;
5
- letter-spacing: 1px;
6
- color: #fff;
7
- padding: 2px 4px 2px 5px;
8
- font-size: 80%;
9
- border-radius: 3px;
10
- @include status-bg-bright();
11
-
12
- &__info {
13
- background: #3c58e4;
14
- }
15
- }
@@ -1,10 +0,0 @@
1
- @import "../../variables.scss";
2
-
3
- .link {
4
- color: $link-color;
5
- transition: color 0.15s ease-out;
6
- text-decoration: none;
7
- &:hover {
8
- color: $link-color-hover;
9
- }
10
- }
@@ -1,52 +0,0 @@
1
- @import "../../variables.scss";
2
-
3
- .pane {
4
- &__subtitle {
5
- color: $text-muted-color;
6
- padding-left: 5px;
7
- margin: 10px 0;
8
- font-weight: initial;
9
- font-size: 16px;
10
- }
11
-
12
- &__title {
13
- padding: 0 15px 10px;
14
- width: 100%;
15
- display: flex;
16
- position: relative;
17
- margin: 7px 0 0;
18
- border-bottom: 1px solid $border-color;
19
- font-size: 20px;
20
- font-weight: bold;
21
- &_borderless {
22
- border: none;
23
- }
24
- }
25
- &__search {
26
- display: inline-block;
27
- padding: 0 0.5em;
28
- width: 100%;
29
- }
30
- &__title-text {
31
- text-align: left;
32
- }
33
- &__controls {
34
- & > a {
35
- text-decoration: none;
36
- color: $text-color;
37
- opacity: 0.7;
38
- &:hover {
39
- opacity: 1;
40
- }
41
- }
42
- }
43
-
44
- &__section {
45
- margin: $gap-size 0;
46
- padding: 0 $gap-size;
47
- }
48
-
49
- &__section-title {
50
- margin: 0 0 $gap-size;
51
- }
52
- }
@@ -1,15 +0,0 @@
1
- <a class="pane__overlay" href="#{{baseUrl}}/{{uid}}"></a>
2
- <h2 class="pane__title">
3
- {{title}}
4
- <span class="pane__controls">
5
- <a class="pane__expand" data-tooltip="Expand" href="#{{baseUrl}}/{{uid}}?expanded=true">
6
- {{allure-icon "expand" noTooltip=true width="18px" height="18px"}}
7
- </a>
8
- <a class="pane__collapse" data-tooltip="Collapse" href="#{{baseUrl}}/{{uid}}">
9
- {{allure-icon "collapse" noTooltip=true width="18px" height="18px"}}
10
- </a>
11
- <a data-tooltip="Close" href="#{{baseUrl}}">
12
- {{allure-icon "close" noTooltip=true width="18px" height="18px"}}
13
- </a>
14
- </span>
15
- </h2>
@@ -1,10 +0,0 @@
1
- {{#if parameters}}
2
- <div class="parameters-table">
3
- {{#each parameters}}
4
- <div class="{{b "parameters-table" "row"}}">
5
- <div class="{{b "parameters-table" "cell" name=true}} line-ellipsis">{{name}}</div>
6
- <div class="{{b "parameters-table" "cell" value=true}} line-ellipsis">{{value}}</div>
7
- </div>
8
- {{/each}}
9
- </div>
10
- {{/if}}
@@ -1,22 +0,0 @@
1
- .parameters-table {
2
- display: table;
3
- font-size: 12px;
4
- width: 100%;
5
- padding-right: 10px;
6
- table-layout: fixed;
7
- &__row {
8
- display: table-row;
9
- }
10
- &__cell {
11
- display: table-cell;
12
- padding: 5px 5px;
13
- cursor: pointer;
14
- word-wrap: break-word;
15
- &_name {
16
- width: 25%;
17
- }
18
- &_value {
19
- width: 75%;
20
- }
21
- }
22
- }
@@ -1,30 +0,0 @@
1
- $spinner-color: #fc0;
2
-
3
- .spinner {
4
- position: relative;
5
- animation: spinner 1s infinite linear;
6
- width: 32px;
7
- height: 32px;
8
-
9
- &::before {
10
- content: " ";
11
- position: absolute;
12
- top: 0;
13
- left: 0;
14
- right: 0;
15
- bottom: 0;
16
- border: 2px solid #fc0;
17
- border-radius: 100%;
18
- border-right-color: transparent;
19
- border-top-color: transparent;
20
- }
21
- }
22
-
23
- @keyframes spinner {
24
- 0% {
25
- transform: rotate(0deg);
26
- }
27
- 100% {
28
- transform: rotate(360deg);
29
- }
30
- }
@@ -1,13 +0,0 @@
1
- @import "../../variables.scss";
2
-
3
- .splash {
4
- margin: auto;
5
- text-align: center;
6
- &__title {
7
- font-size: 3.5em;
8
- line-height: 1;
9
- }
10
- &__subtitle {
11
- color: $text-muted-color;
12
- }
13
- }
@@ -1,13 +0,0 @@
1
- <div class="{{b "status-details" status=status}}">
2
- <div class="status-details__content">
3
- {{#if (or statusMessage statusTrace)}}
4
- <div class="{{b 'status-details' 'trace-toggle' status=status}} clickable"
5
- data-tooltip="{{t 'testResult.status.trace'}}"
6
- data-ga4-event="stacktrace_expand_click">
7
- <pre class="status-details__message"><code>{{#if statusMessage}}{{statusMessage}}{{else}}{{t 'testResult.status.empty'}}{{/if}}</code></pre>
8
- </div>
9
-
10
- <pre class="{{b 'status-details' 'trace'}}"><code>{{#if statusTrace}}{{statusTrace}}{{else}}{{t 'testResult.status.empty'}}{{/if}}</code></pre>
11
- {{/if}}
12
- </div>
13
- </div>