This is an automated email from the ASF dual-hosted git repository.
zhangliang2022 pushed a commit to branch release-v0.11-hotfix
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/release-v0.11-hotfix by this
push:
new 7882ca11 `fix` config-ui: cleanup usage of image assets and icons |
`v0.11.0` (#2345)
7882ca11 is described below
commit 7882ca11a26d4579280ac42eb26c1263fd630d1d
Author: Julien Chinapen <[email protected]>
AuthorDate: Mon Jun 27 08:38:12 2022 -0400
`fix` config-ui: cleanup usage of image assets and icons | `v0.11.0` (#2345)
* fix: cleanup image assets and icons
* fix: remove sync icons
* fix: use generic icon for ae dbt gx and refdiff
* fix: remove null svg
* fix: update main provider brand logos
---
config-ui/src/components/Nav.jsx | 1 -
.../src/components/blueprints/BlueprintsGrid.jsx | 11 +-
config-ui/src/components/pipelines/StagePanel.jsx | 30 +--
.../src/components/pipelines/TaskActivity.jsx | 3 +-
.../src/components/widgets/PipelineIndicator.jsx | 9 +-
config-ui/src/data/NullProvider.js | 6 +-
config-ui/src/data/Providers.js | 16 +-
config-ui/src/data/integrations.jsx | 22 +-
config-ui/src/images/ae.png | Bin 30012 -> 0 bytes
config-ui/src/images/blueprints.png | Bin 37315 -> 0 bytes
config-ui/src/images/bolt.png | Bin 8236 -> 0 bytes
config-ui/src/images/calendar-3.png | Bin 13118 -> 0 bytes
config-ui/src/images/calendar-4.png | Bin 8886 -> 0 bytes
config-ui/src/images/check-circle.svg | 1 -
config-ui/src/images/dbt.png | Bin 112387 -> 0 bytes
config-ui/src/images/discord.svg | 1 -
config-ui/src/images/duplicate.png | Bin 11729 -> 0 bytes
config-ui/src/images/git-diff.png | Bin 21828 -> 0 bytes
config-ui/src/images/git.png | Bin 14618 -> 0 bytes
config-ui/src/images/heart-pulse.png | Bin 9594 -> 0 bytes
config-ui/src/images/infinity-2.png | Bin 14488 -> 0 bytes
config-ui/src/images/integrations/github.svg | 4 +-
config-ui/src/images/integrations/gitlab.svg | 12 +-
config-ui/src/images/integrations/jenkins.svg | 290 +--------------------
config-ui/src/images/integrations/jira.svg | 5 +-
config-ui/src/images/integrations/null.svg | 1 -
config-ui/src/images/layers.svg | 9 -
config-ui/src/images/no-synchronize.svg | 1 -
config-ui/src/images/power-button.png | Bin 30504 -> 0 bytes
config-ui/src/images/pulse-2.png | Bin 24914 -> 0 bytes
config-ui/src/images/pulse.png | Bin 9311 -> 0 bytes
config-ui/src/images/refresh.svg | 1 -
config-ui/src/images/sort.png | Bin 11591 -> 0 bytes
config-ui/src/images/synchronise.png | Bin 29833 -> 0 bytes
config-ui/src/images/synchronize-folder.gif | Bin 71650 -> 0 bytes
config-ui/src/images/synchronize.svg | 1 -
config-ui/src/images/thunderbolt.png | Bin 23758 -> 0 bytes
config-ui/src/images/undo.svg | 13 -
config-ui/src/pages/blueprints/index.jsx | 6 -
.../pages/configure/connections/AddConnection.jsx | 2 +-
.../pages/configure/connections/EditConnection.jsx | 2 +-
.../src/pages/configure/integration/manage.jsx | 2 +-
config-ui/src/pages/pipelines/activity.jsx | 35 +--
config-ui/src/pages/pipelines/create.jsx | 19 +-
config-ui/src/pages/pipelines/index.jsx | 6 -
45 files changed, 63 insertions(+), 446 deletions(-)
diff --git a/config-ui/src/components/Nav.jsx b/config-ui/src/components/Nav.jsx
index 6ee4d3ea..39983b50 100644
--- a/config-ui/src/components/Nav.jsx
+++ b/config-ui/src/components/Nav.jsx
@@ -24,7 +24,6 @@ import {
Icon,
} from '@blueprintjs/core'
import '@/styles/nav.scss'
-// import { ReactComponent as DiscordIcon } from '@/images/discord.svg'
import { ReactComponent as SlackIcon } from
'@/images/slack-mark-monochrome-black.svg'
import { ReactComponent as SlackLogo } from '@/images/slack-rgb.svg'
diff --git a/config-ui/src/components/blueprints/BlueprintsGrid.jsx
b/config-ui/src/components/blueprints/BlueprintsGrid.jsx
index 4608a7f7..9b9318c2 100644
--- a/config-ui/src/components/blueprints/BlueprintsGrid.jsx
+++ b/config-ui/src/components/blueprints/BlueprintsGrid.jsx
@@ -33,8 +33,6 @@ import {
Tag
} from '@blueprintjs/core'
import DeletePopover from '@/components/blueprints/DeletePopover'
-import EventIcon from '@/images/calendar-3.png'
-import EventOffIcon from '@/images/calendar-4.png'
const BlueprintsGrid = (props) => {
const {
@@ -220,14 +218,7 @@ const BlueprintsGrid = (props) => {
</div>
<Icon
size={16}
- icon={(
- <img
- src={b.enable ? EventIcon : EventOffIcon} width={16}
height={16}
- style={{ float: 'left', marginRight: '5px' }}
- />)}
- style={{
-
- }}
+ icon={b.enable ? 'calendar' : 'disable'}
/>
{b.name}
</div>
diff --git a/config-ui/src/components/pipelines/StagePanel.jsx
b/config-ui/src/components/pipelines/StagePanel.jsx
index 85533229..6d055802 100644
--- a/config-ui/src/components/pipelines/StagePanel.jsx
+++ b/config-ui/src/components/pipelines/StagePanel.jsx
@@ -27,9 +27,6 @@ import {
Intent
// Alignment, Classes, Spinner
} from '@blueprintjs/core'
-import { ReactComponent as PipelineRunningIcon } from
'@/images/synchronize.svg'
-import { ReactComponent as PipelineFailedIcon } from
'@/images/no-synchronize.svg'
-import { ReactComponent as PipelineCompleteIcon } from
'@/images/check-circle.svg'
const StagePanel = (props) => {
const {
@@ -112,13 +109,7 @@ const StagePanel = (props) => {
case 'TASK_COMPLETED':
statusIcon = (
<Icon
- icon={<PipelineCompleteIcon
- width={24} height={24} style={{
- margin: '0 0 0 0',
- display: 'flex',
- alignSelf: 'center'
- }}
- />}
+ icon='tick-circle'
size={24}
/>
)
@@ -126,14 +117,7 @@ const StagePanel = (props) => {
case 'TASK_FAILED':
statusIcon = (
<Icon
- icon={<PipelineFailedIcon
- width={24}
- height={24} style={{
- margin: '0 0 0 0',
- display: 'flex',
- alignSelf: 'center'
- }}
- />}
+ icon='error'
size={24}
/>
)
@@ -143,15 +127,7 @@ const StagePanel = (props) => {
statusIcon = (
<Icon
style={{ margin: 0, padding: 0, float: 'left' }}
- icon={<PipelineRunningIcon
- width={24}
- height={24} style={{
- margin: '0 0 0 0',
- padding: 0,
- display: 'inline',
- alignSelf: 'center'
- }}
- />}
+ icon='refresh'
size={24}
/>
)
diff --git a/config-ui/src/components/pipelines/TaskActivity.jsx
b/config-ui/src/components/pipelines/TaskActivity.jsx
index 8d225a05..d9bcb9d7 100644
--- a/config-ui/src/components/pipelines/TaskActivity.jsx
+++ b/config-ui/src/components/pipelines/TaskActivity.jsx
@@ -31,7 +31,6 @@ import {
} from '@blueprintjs/core'
import dayjs from '@/utils/time'
import StageLane from '@/components/pipelines/StageLane'
-import InfinityIcon from '@/images/infinity-2.png'
const TaskActivity = (props) => {
const { activePipeline, stages = [] } = props
@@ -316,7 +315,7 @@ const TaskActivity = (props) => {
</span> /{' '}
<span>
{t.progressDetail.totalRecords === -1
- ? <img src={InfinityIcon} width={14} height={14}
style={{ width: '14px', marginBottom: '-2px', maxWidth: '14px', display:
'inline', lineHeight: '15px' }} />
+ ? '∞'
: t.progressDetail.totalRecords}
</span>
</td>
diff --git a/config-ui/src/components/widgets/PipelineIndicator.jsx
b/config-ui/src/components/widgets/PipelineIndicator.jsx
index 57bc37c2..b907317b 100644
--- a/config-ui/src/components/widgets/PipelineIndicator.jsx
+++ b/config-ui/src/components/widgets/PipelineIndicator.jsx
@@ -27,9 +27,6 @@ import {
Spinner,
Position,
} from '@blueprintjs/core'
-import { ReactComponent as PipelineRunningIcon } from
'@/images/synchronize.svg'
-import { ReactComponent as PipelineFailedIcon } from
'@/images/no-synchronize.svg'
-import { ReactComponent as PipelineCompleteIcon } from
'@/images/check-circle.svg'
const PipelineIndicator = (props) => {
const {
@@ -103,14 +100,14 @@ const PipelineIndicator = (props) => {
case 'TASK_COMPLETED':
return (
<Icon
- icon={<PipelineCompleteIcon width={40} height={40}
style={{ marginTop: '3px', display: 'flex', alignSelf: 'center' }} />}
+ icon='tick-circle'
size={40}
/>
)
case 'TASK_FAILED':
return (
<Icon
- icon={<PipelineFailedIcon width={40} height={40}
style={{ marginTop: '3px', display: 'flex', alignSelf: 'center' }} />}
+ icon='error'
size={40}
/>
)
@@ -118,7 +115,7 @@ const PipelineIndicator = (props) => {
default:
return (
<Icon
- icon={<PipelineRunningIcon width={40} height={40}
style={{ marginTop: '3px', display: 'flex', alignSelf: 'center' }} />}
+ icon='refresh'
size={40}
/>
)
diff --git a/config-ui/src/data/NullProvider.js
b/config-ui/src/data/NullProvider.js
index 83e7bc15..6a4cb002 100644
--- a/config-ui/src/data/NullProvider.js
+++ b/config-ui/src/data/NullProvider.js
@@ -16,8 +16,8 @@
*
*/
import React from 'react'
+import { Icon } from '@blueprintjs/core'
import { Providers, ProviderLabels } from '@/data/Providers'
-import { ReactComponent as NullProviderIcon } from
'@/images/integrations/null.svg'
const NullProvider = {
id: Providers.NULL, // Unique ID, for a Provider (alphanumeric, lowercase)
@@ -25,8 +25,8 @@ const NullProvider = {
multiConnection: false, // If Provider is Multi-connection
name: ProviderLabels.NULL, // Display Name of Data Provider
// eslint-disable-next-line max-len
- icon: <NullProviderIcon className='providerIconSvg' width='30' height='30'
style={{ float: 'left', marginTop: '5px' }} />, // Provider Icon
- iconDashboard: <NullProviderIcon className='providerIconSvg' width='48'
height='48' />, // Provider Icon on INTEGRATIONS Dashboard
+ icon: <Icon icon='box' size={30} />, // Provider Icon
+ iconDashboard: <Icon icon='box' size={42} />, // Provider Icon on
INTEGRATIONS Dashboard
settings: ({ activeProvider, activeConnection, isSaving, setSettings }) =>
(<></>) // REACT Settings Component for Render
}
diff --git a/config-ui/src/data/Providers.js b/config-ui/src/data/Providers.js
index 384f1746..2503b8d0 100644
--- a/config-ui/src/data/Providers.js
+++ b/config-ui/src/data/Providers.js
@@ -21,11 +21,11 @@ import { ReactComponent as GitlabProviderIcon } from
'@/images/integrations/gitl
import { ReactComponent as JenkinsProviderIcon } from
'@/images/integrations/jenkins.svg'
import { ReactComponent as JiraProviderIcon } from
'@/images/integrations/jira.svg'
import { ReactComponent as GitHubProviderIcon } from
'@/images/integrations/github.svg'
-import GitExtractorIcon from '@/images/git.png'
-import RefDiffIcon from '@/images/git-diff.png'
+// import GitExtractorIcon from '@/images/git.png'
+// import RefDiffIcon from '@/images/git-diff.png'
import FeishuIcon from '@/images/feishu.png'
-import DBTIcon from '@/images/dbt.png'
-import AEIcon from '@/images/ae.png'
+// import DBTIcon from '@/images/dbt.png'
+// import AEIcon from '@/images/ae.png'
const Providers = {
NULL: 'null',
@@ -180,11 +180,11 @@ const ProviderIcons = {
[Providers.JENKINS]: (w, h) => <JenkinsProviderIcon width={w || 24}
height={h || 24} />,
[Providers.JIRA]: (w, h) => <JiraProviderIcon width={w || 24} height={h ||
24} />,
[Providers.GITHUB]: (w, h) => <GitHubProviderIcon width={w || 24} height={h
|| 24} />,
- [Providers.REFDIFF]: (w, h) => <img src={RefDiffIcon} width={w || 24}
height={h || 24} />,
- [Providers.GITEXTRACTOR]: (w, h) => <img src={GitExtractorIcon} width={w ||
24} height={h || 24} />,
+ [Providers.REFDIFF]: (w, h) => <Icon icon='box' size={w || 24} />,
+ [Providers.GITEXTRACTOR]: (w, h) => <Icon icon='box' size={w || 24} />,
[Providers.FEISHU]: (w, h) => <img src={FeishuIcon} width={w || 24}
height={h || 24} />,
- [Providers.AE]: (w, h) => <img src={AEIcon} width={w || 24} height={h || 24}
/>,
- [Providers.DBT]: (w, h) => <img src={DBTIcon} width={w || 24} height={h ||
24} />,
+ [Providers.AE]: (w, h) => <Icon icon='box' size={w || 24} />,
+ [Providers.DBT]: (w, h) => <Icon icon='box' size={w || 24} />,
}
export {
diff --git a/config-ui/src/data/integrations.jsx
b/config-ui/src/data/integrations.jsx
index 0566ebdf..26884868 100644
--- a/config-ui/src/data/integrations.jsx
+++ b/config-ui/src/data/integrations.jsx
@@ -16,7 +16,7 @@
*
*/
import React from 'react'
-
+import { Icon } from '@blueprintjs/core'
import { Providers, ProviderLabels, ProviderTypes } from '@/data/Providers'
import JiraSettings from '@/pages/configure/settings/jira'
@@ -28,8 +28,8 @@ import { ReactComponent as GitlabProvider } from
'@/images/integrations/gitlab.s
import { ReactComponent as JenkinsProvider } from
'@/images/integrations/jenkins.svg'
import { ReactComponent as JiraProvider } from '@/images/integrations/jira.svg'
import { ReactComponent as GitHubProvider } from
'@/images/integrations/github.svg'
-import GitExtractorProvider from '@/images/git.png'
-import RefDiffProvider from '@/images/git-diff.png'
+// import GitExtractorProvider from '@/images/git.png'
+// import RefDiffProvider from '@/images/git-diff.png'
// import { ReactComponent as NullProvider } from
'@/images/integrations/null.svg'
const integrationsData = [
@@ -40,7 +40,7 @@ const integrationsData = [
multiConnection: false,
name: ProviderLabels.GITLAB,
icon: <GitlabProvider className='providerIconSvg' width='30' height='30'
style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <GitlabProvider className='providerIconSvg' width='48'
height='48' />,
+ iconDashboard: <GitlabProvider className='providerIconSvg' width='40'
height='40' />,
settings: ({ activeProvider, activeConnection, isSaving,
isSavingConnection, setSettings }) => (
<GitlabSettings
provider={activeProvider}
@@ -58,7 +58,7 @@ const integrationsData = [
multiConnection: false,
name: ProviderLabels.JENKINS,
icon: <JenkinsProvider className='providerIconSvg' width='30' height='30'
style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <JenkinsProvider className='providerIconSvg' width='48'
height='48' />,
+ iconDashboard: <JenkinsProvider className='providerIconSvg' width='40'
height='40' />,
settings: ({ activeProvider, activeConnection, isSaving,
isSavingConnection, setSettings }) => (
<JenkinsSettings
provider={activeProvider}
@@ -76,7 +76,7 @@ const integrationsData = [
multiConnection: true,
name: ProviderLabels.JIRA,
icon: <JiraProvider className='providerIconSvg' width='30' height='30'
style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <JiraProvider className='providerIconSvg' width='48'
height='48' />,
+ iconDashboard: <JiraProvider className='providerIconSvg' width='40'
height='40' />,
settings: ({ activeProvider, activeConnection, isSaving,
isSavingConnection, setSettings }) => (
<JiraSettings
provider={activeProvider}
@@ -94,7 +94,7 @@ const integrationsData = [
multiConnection: false,
name: ProviderLabels.GITHUB,
icon: <GitHubProvider className='providerIconSvg' width='30' height='30'
style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <GitHubProvider className='providerIconSvg' width='48'
height='48' />,
+ iconDashboard: <GitHubProvider className='providerIconSvg' width='40'
height='40' />,
settings: ({ activeProvider, activeConnection, isSaving,
isSavingConnection, setSettings }) => (
<GithubSettings
provider={activeProvider}
@@ -114,8 +114,8 @@ const pluginsData = [
enabled: true,
multiConnection: false,
name: ProviderLabels.GITEXTRACTOR,
- icon: <img src={GitExtractorProvider} className='providerIconPng'
width='30' height='30' style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <img src={GitExtractorProvider} className='providerIconPng'
width='48' height='48' />,
+ icon: <Icon icon='box' size={30} />,
+ iconDashboard: <Icon icon='box' size={32} />,
settings: ({ activeProvider, activeConnection, isSaving, setSettings }) =>
(
null
)
@@ -126,8 +126,8 @@ const pluginsData = [
enabled: true,
multiConnection: false,
name: ProviderLabels.REFDIFF,
- icon: <img src={RefDiffProvider} className='providerIconPng' width='30'
height='30' style={{ float: 'left', marginTop: '5px' }} />,
- iconDashboard: <img src={RefDiffProvider} className='providerIconPng'
width='48' height='48' />,
+ icon: <Icon icon='box' size={30} />,
+ iconDashboard: <Icon icon='box' size={32} />,
settings: ({ activeProvider, activeConnection, isSaving, setSettings }) =>
(
null
)
diff --git a/config-ui/src/images/ae.png b/config-ui/src/images/ae.png
deleted file mode 100644
index 7935f0f0..00000000
Binary files a/config-ui/src/images/ae.png and /dev/null differ
diff --git a/config-ui/src/images/blueprints.png
b/config-ui/src/images/blueprints.png
deleted file mode 100644
index b8aae1dc..00000000
Binary files a/config-ui/src/images/blueprints.png and /dev/null differ
diff --git a/config-ui/src/images/bolt.png b/config-ui/src/images/bolt.png
deleted file mode 100644
index 0224635d..00000000
Binary files a/config-ui/src/images/bolt.png and /dev/null differ
diff --git a/config-ui/src/images/calendar-3.png
b/config-ui/src/images/calendar-3.png
deleted file mode 100644
index 25020948..00000000
Binary files a/config-ui/src/images/calendar-3.png and /dev/null differ
diff --git a/config-ui/src/images/calendar-4.png
b/config-ui/src/images/calendar-4.png
deleted file mode 100644
index cc7812e8..00000000
Binary files a/config-ui/src/images/calendar-4.png and /dev/null differ
diff --git a/config-ui/src/images/check-circle.svg
b/config-ui/src/images/check-circle.svg
deleted file mode 100644
index e9f4da3a..00000000
--- a/config-ui/src/images/check-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path
fill="#fff"
d="M106.4,21.6C106.4,21.6,106.4,21.6,106.4,21.6C83-1.9,45-1.9,21.6,21.6C-1.9,45-1.9,83,21.6,106.4
C33.3,118.1,48.6,124,64,124c7.4,0,14.9-1.4,21.9-4.1c7.5-2.9,14.5-7.4,20.5-13.4c9.6-9.6,15.3-21.7,17-34.2
C125.9,54.3,120.3,35.4,106.4,21.6z"/><circle cx="64" cy="64" r="36"
fill="#8ce5c3"/><path fill="#444b54"
d="M64,79c-0.8,0-1.6-0.3-2.1-0.9l-15-15c-1.2-1.2-1.2-3.1,0-4.2c1.2-1.2,3.1-1.2,4.2,0l12.7,12.7L91.7,39
[...]
\ No newline at end of file
diff --git a/config-ui/src/images/dbt.png b/config-ui/src/images/dbt.png
deleted file mode 100644
index 0b54d747..00000000
Binary files a/config-ui/src/images/dbt.png and /dev/null differ
diff --git a/config-ui/src/images/discord.svg b/config-ui/src/images/discord.svg
deleted file mode 100755
index 4b747734..00000000
--- a/config-ui/src/images/discord.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127.14 96.36"><g
id="图层_2" data-name="图层 2"><g id="Discord_Logos" data-name="Discord Logos"><g
id="Discord_Logo_-_Large_-_White" data-name="Discord Logo - Large -
White"><path
d="M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-
[...]
\ No newline at end of file
diff --git a/config-ui/src/images/duplicate.png
b/config-ui/src/images/duplicate.png
deleted file mode 100644
index 5557db9d..00000000
Binary files a/config-ui/src/images/duplicate.png and /dev/null differ
diff --git a/config-ui/src/images/git-diff.png
b/config-ui/src/images/git-diff.png
deleted file mode 100644
index 96e3b599..00000000
Binary files a/config-ui/src/images/git-diff.png and /dev/null differ
diff --git a/config-ui/src/images/git.png b/config-ui/src/images/git.png
deleted file mode 100644
index 019f1fa9..00000000
Binary files a/config-ui/src/images/git.png and /dev/null differ
diff --git a/config-ui/src/images/heart-pulse.png
b/config-ui/src/images/heart-pulse.png
deleted file mode 100644
index 9e753635..00000000
Binary files a/config-ui/src/images/heart-pulse.png and /dev/null differ
diff --git a/config-ui/src/images/infinity-2.png
b/config-ui/src/images/infinity-2.png
deleted file mode 100644
index d446ea46..00000000
Binary files a/config-ui/src/images/infinity-2.png and /dev/null differ
diff --git a/config-ui/src/images/integrations/github.svg
b/config-ui/src/images/integrations/github.svg
index 77044cf2..989c6554 100644
--- a/config-ui/src/images/integrations/github.svg
+++ b/config-ui/src/images/integrations/github.svg
@@ -1 +1,3 @@
-<?xml version="1.0"?><svg fill="#000000" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 50 50" width="100" height="100"> <path
d="M17.791,46.836C18.502,46.53,19,45.823,19,45v-5.4c0-0.197,0.016-0.402,0.041-0.61C19.027,38.994,19.014,38.997,19,39
c0,0-3,0-3.6,0c-1.5,0-2.8-0.6-3.4-1.8c-0.7-1.3-1-3.5-2.8-4.7C8.9,32.3,9.1,32,9.7,32c0.6,0.1,1.9,0.9,2.7,2c0.9,1.1,1.8,2,3.4,2
c2.487,0,3.82-0.125,4.622-0.555C21.356,34.056,22.649,33,24,33v-0.025c-5.668-0.182-9.289-2.066-10.975-4.975
c-3.665,0. [...]
\ No newline at end of file
+<svg width="100" height="100" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
+<path d="M18 3C9.7125 3 3 9.7125 3 18C2.9983 21.1489 3.98822 24.2184 5.82933
26.773C7.67043 29.3276 10.2692 31.2376 13.257 32.232C14.007 32.3625 14.2875
31.9125 14.2875 31.518C14.2875 31.1625 14.268 29.982 14.268 28.725C10.5 29.4195
9.525 27.807 9.225 26.9625C9.0555 26.5305 8.325 25.2 7.6875 24.843C7.1625
24.5625 6.4125 23.868 7.668 23.85C8.85 23.8305 9.693 24.9375 9.975
25.3875C11.325 27.6555 13.482 27.018 14.343 26.625C14.475 25.65 14.868 24.9945
15.3 24.6195C11.9625 24.2445 8.475 22.9 [...]
+</svg>
diff --git a/config-ui/src/images/integrations/gitlab.svg
b/config-ui/src/images/integrations/gitlab.svg
index 362cb91b..a553e252 100644
--- a/config-ui/src/images/integrations/gitlab.svg
+++ b/config-ui/src/images/integrations/gitlab.svg
@@ -1,9 +1,3 @@
-<svg viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'>
- <path d='M31.9978 59.2655L43.0513 25.2634H20.9604L31.9978 59.2655Z'
fill='#E24329' />
- <path d='M5.47819 25.2637L2.11214 35.5939C1.80754 36.5319 2.13649 37.5673
2.94046 38.1521L31.998 59.2656L5.47819 25.2637Z' fill='#FCA326' />
- <path d='M5.47827 25.2636H20.9606L14.2974 4.78575C13.9564 3.73808 12.4702
3.73808 12.1169 4.78575L5.47827 25.2636Z' fill='#E24329' />
- <path d='M58.5338 25.2637L61.8878 35.5939C62.1924 36.5319 61.8635 37.5673
61.0595 38.1521L31.9978 59.2656L58.5338 25.2637Z' fill='#FCA326' />
- <path d='M58.5338 25.2636H43.0515L49.7024 4.78575C50.0434 3.73808 51.5296
3.73808 51.8829 4.78575L58.5338 25.2636Z' fill='#E24329' />
- <path d='M31.9978 59.2656L43.0513 25.2637H58.5338L31.9978 59.2656Z'
fill='#FC6D26' />
- <path d='M31.9979 59.2656L5.47827 25.2637H20.9606L31.9979 59.2656Z'
fill='#FC6D26' />
-</svg>
\ No newline at end of file
+<svg width="100" height="100" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
+<path d="M8.80197 4.12524L12 15.0002H24L27.198 4.12524C27.2339 4.00187 27.3085
3.8933 27.4108 3.81551C27.5131 3.73772 27.6377 3.69483 27.7662 3.69315C27.8947
3.69147 28.0203 3.73109 28.1246 3.80618C28.2289 3.88126 28.3063 3.98785 28.3455
4.11024L33.588 20.4962C33.6352 20.6437 33.6356 20.8022 33.5891 20.9499C33.5426
21.0976 33.4516 21.2273 33.3285 21.3212L18 33.0002L2.66997 21.3212C2.5471
21.2272 2.45635 21.0974 2.41016 20.9497C2.36397 20.8019 2.3646 20.6436 2.41197
20.4962L7.65447 4.1102 [...]
+</svg>
diff --git a/config-ui/src/images/integrations/jenkins.svg
b/config-ui/src/images/integrations/jenkins.svg
index 89e3ffe4..ff34a1e7 100644
--- a/config-ui/src/images/integrations/jenkins.svg
+++ b/config-ui/src/images/integrations/jenkins.svg
@@ -1,284 +1,6 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (https://www.inkscape.org/) -->
-
-<svg
- xmlnsDc="https://purl.org/dc/elements/1.1/"
- xmlnsCc="https://creativecommons.org/ns#"
- xmlnsRdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlnsSvg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlnsSodipodi="https://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlnsInkscape="https://www.inkscape.org/namespaces/inkscape"
- id="svg2"
- version="1.1"
- inkscapeVersion="0.48.0 r9654"
- width="100"
- height="100"
- viewBox="0 0 226 312"
- xmlSpace="preserve"
- sodipodiDocname="logo.svg"><metadata
- id="metadata8"><rdfRDF><ccWork
- rdfAbout=""><dcFormat>image/svg+xml</dcFormat><dcType
- rdfResource="https://purl.org/dc/dcmitype/StillImage" /><dcTitle
/></ccWork></rdfRDF></metadata><defs
- id="defs6"><clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath18"><path
- d="M 0,2494.84 0,0 l 1804.34,0 0,2494.84 -1804.34,0 z"
- id="path20"
- inkscapeConnector-curvature="0" /></clipPath></defs><sodipodiNamedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscapePageopacity="0"
- inkscapePageshadow="2"
- inkscapeWindow-width="1500"
- inkscapeWindow-height="844"
- id="namedview4"
- showgrid="false"
- inkscapeZoom="1"
- inkscapeCx="-65.859116"
- inkscapeCy="172.53076"
- inkscapeWindow-x="2189"
- inkscapeWindow-y="496"
- inkscapeWindow-maximized="0"
- inkscapeCurrent-layer="g10" /><g
- id="g10"
- inkscapeCroupmode="layer"
- inkscapeLabel="ink_ext_XXXXXX"
- transform="matrix(1.25,0,0,-1.25,0,312)"><g
- id="g3393"><path
- d="m 177.718,129.264 c 0,-49.4288 -39.175,-89.4992 -87.5,-89.4992
-48.3242,0 -87.49925,40.0704 -87.49925,89.4992 0,49.43 39.17505,89.501
87.49925,89.501 48.325,0 87.5,-40.071 87.5,-89.501"
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path22"
- inkscapeConnector-curvature="0" /><path
- d="m 6.28438,107.098 c 0,0 -6.33438,93.333 79.66602,96 l -5.9996,10
-46.6664,-15.667 -13.3336,-15.333 -11.66642,-22.334 -6.66719,-26 2,-17.333"
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path24"
- inkscapeConnector-curvature="0" /><path
- d="M 30.2883,190.319 C 14.9363,174.611 5.43633,152.923 5.43633,128.93
l 0,0 c 0,-23.988 9.49997,-45.6788 24.85197,-61.3839 l 0,0 C 45.6477,51.841
66.8152,42.15 90.2168,42.15 l 0,0 c 23.4022,0 44.5712,9.691 59.9292,25.3961 l
0,0 c 15.351,15.7051 24.853,37.3959 24.853,61.3839 l 0,0 c 0,23.993
-9.502,45.681 -24.853,61.389 l 0,0 c -15.358,15.702 -36.527,25.393
-59.9292,25.395 l 0,0 C 66.8152,215.712 45.6477,206.021 30.2883,190.319 l 0,0 z
M 26.4023,63.7469 C 10.0867,80.4328 0,103.49 [...]
- style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path26"
- inkscapeConnector-curvature="0" /><path
- d="m 127.051,128.768 -13.334,-2 -18.0002,-2 -11.6672,-0.333
-11.3328,0.333 -8.6672,2.667 -7.6668,8.333 -6,17 -1.3332,3.667 -8,2.666
-4.6668,7.667 -3.3332,11 3.6672,9.667 8.666,3 7,-3.334 3.334,-7.333 4,0.667
1.3328,1.666 -1.3328,7.667 -0.334,9.667 2,13.333 -0.0781,7.616 6.0781,9.717
10.6668,7.667 18.6672,8 20.6662,-3 18,-13 8.334,-13.333 5.333,-9.667 1.333,-24
-4,-20.667 -7.333,-18.333 -7,-9.667"
- style="fill:#f0d6b7;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path28"
- inkscapeConnector-curvature="0" /><path
- d="m 115.717,71.102 -47.6674,-2 0,-8 4,-28 -2,-2.334 -33.3328,11.334
-2.334,4 -3.3332,37.666 -7.6656,22.667 -1.6672,5.333 26.666,18.333 8.334,3.334
7.3328,-9 6.3332,-5.667 7.334,-2.333 3.3328,-1 4,-17.333 3,-3.6668
7.6672,2.6668 -5.334,-10.334 29.0002,-13.666 -3.666,-2"
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path30"
- inkscapeConnector-curvature="0" /><path
- d="m 36.7168,187.435 8.666,3 7,-3.334 3.334,-7.333 4,0.667 1,4
-2,7.666 2,18.334 -1.6672,10 6,7 13,10.333 -3.6668,5 -18.3332,-9 -7.6668,-6
-4.3332,-9.333 -6.6668,-9 -2,-10.667 1.334,-11.333"
- style="fill:#6d6b6d;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path32"
- inkscapeConnector-curvature="0" /><path
- d="m 50.3828,218.768 c 0,0 5,12.333 25,18.333 20,6 1,4.334 1,4.334 l
-21.666,-8.334 -8.334,-8.333 -3.666,-6.667 7.666,0.667"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path34"
- inkscapeConnector-curvature="0" /><path
- d="m 40.3828,189.768 c 0,0 -7,23.334 19.6668,26.667 l -1,4
-18.3328,-4.334 -5.334,-17.333 1.334,-11.333 3.666,2.333"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path36"
- inkscapeConnector-curvature="0" /><path
- d="m 51.0496,158.768 4.3645,4.229 c 0,0 1.9699,-0.229 2.3027,-2.562
0.3328,-2.334 1.3328,-23.334 15.666,-34.668 1.3074,-1.034 -10.666,1.668
-10.666,1.668 l -10.6672,16.666"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path38"
- inkscapeConnector-curvature="0" /><path
- d="m 112.385,165.101 c 0,0 0.777,10.104 3.498,9.327 2.721,-0.777
2.721,-3.498 2.721,-3.498 0,0 -6.608,-4.275 -6.219,-5.829"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path40"
- inkscapeConnector-curvature="0" /><path
- d="m 140.05,202.101 c 0,0 -5.494,-1.16 -6,-6 -0.506,-4.841 6,-1
7,-0.667"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path42"
- inkscapeConnector-curvature="0" /><path
- d="m 99.7168,201.767 c 0,0 -7.334,-1 -7.334,-5.666 0,-4.667
8.3342,-4.334 10.6672,-2.334"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path44"
- inkscapeConnector-curvature="0" /><path
- d="m 54.3828,180.101 c 0,0 -12.6672,7.667 -14,0.333 -1.3332,-7.333
-4.334,-12.667 2,-20.333 l -4.3332,1.333 -4,10.333 -1.3328,10 7.666,8.001
8.6668,-0.667 5,-4 0.3332,-5"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path46"
- inkscapeConnector-curvature="0" /><path
- d="m 60.3828,201.101 c 0,0 5.6668,29.333 34.334,35 23.6012,4.665
35.9992,-1 40.6662,-6.333 0,0 -21,24.999 -41.0002,17.333 -20,-7.667
-34.666,-21.667 -34.3332,-30.666 0.5676,-15.328 0.3332,-15.334 0.3332,-15.334"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path48"
- inkscapeConnector-curvature="0" /><path
- d="m 137.717,226.435 c 0,0 -9.666,0.333 -10,-8.334 0,0 -0.001,-1.333
0.666,-2.666 0,0 7.668,8.667 12.334,4"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path50"
- inkscapeConnector-curvature="0" /><path
- d="m 95.3887,214.532 c 0,0 -1.6641,13.303 -13.0059,5.569 -7.3332,-5
-6.666,-12 -5.3332,-13.333 1.3332,-1.334 0.9707,-4.019 1.9856,-2.176
1.0144,1.843 0.6804,7.843 4.3476,9.509 3.6668,1.667 9.6777,3.529 12.0059,0.431"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path52"
- inkscapeConnector-curvature="0" /><path
- d="m 64.0496,124.435 -31.3328,-14 c 0,0 13,-51.667 6.3328,-67.667 l
-4.6668,1.666 -0.3332,19.6672 -8.6656,37.3328 -3.6672,10.334 32.666,21.999
9.6668,-9.332"
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path54"
- inkscapeConnector-curvature="0" /><path
- d="m 67.2715,95.8578 4.4453,-5.4238 0,-20 -5.334,0 c 0,0 -0.666,14
-0.666,15.6672 0,1.6668 0.666,7.6668 0.666,7.6668"
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path56"
- inkscapeConnector-curvature="0" /><path
- d="m 67.3828,67.434 -15,-0.666 4.334,-3 10.666,-1.6668"
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path58"
- inkscapeConnector-curvature="0" /><path
- d="m 118.717,70.768 12.333,0.3332 3,-30.6672 -12.667,-1.666 -2.666,32"
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path60"
- inkscapeConnector-curvature="0" /><path
- d="m 122.05,70.768 18.667,1 c 0,0 7.666,19.3332 7.666,20.3332 0,1
6.667,27.9998 6.667,27.9998 l -15,15.666 -3,2.667 -8,-8 0,-31 -7,-28.666"
- style="fill:#335061;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path62"
- inkscapeConnector-curvature="0" /><path
- d="m 130.383,73.1012 -11.666,-2.3332 1.666,-9.334 c 4.333,-2
11.667,3.334 11.667,3.334"
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path64"
- inkscapeConnector-curvature="0" /><path
- d="m 130.717,131.434 23.333,-17.333 0.667,8 -17.667,16.333 -6.333,-7"
- style="fill:#49728b;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path66"
- inkscapeConnector-curvature="0" /><path
- d="M 78.9508,5.09805 72.0496,33.102 68.6172,53.7648 68.0496,69.102 l
31.2348,1.6628 19.4326,0.0032 -1.767,-35.0032 3,-26.99996 -0.333,-5 -25.3326,-2
-15.3336,3.33321"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path68"
- inkscapeConnector-curvature="0" /><path
- d="m 114.383,71.1012 c 0,0 -1.666,-34.6672 3.334,-59.3332 0,0
-10,-6.33402 -24.6674,-8.00003 l 28.0004,1 3.333,2 -4,54.66603 -1,11.668"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path70"
- inkscapeConnector-curvature="0" /><path
- d="m 134.618,43.098 13,3.6668 24.666,1.3332 3.667,11.3329
-6.667,19.6671 -7.666,1 -10.667,-3.3332 -10.234,-4.9968 -5.433,0.9968
-4.234,-1.6636"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path72"
- inkscapeConnector-curvature="0" /><path
- d="m 134.383,49.768 c 0,0 8.666,3.9992 10,3.666 l -3.666,18.334
4.333,1.666 c 0,0 3,-17.3328 3,-19.3328 0,0 18.666,-1 20.333,-1 0,0 4,7.6668
3,15.6668 l 3.667,-10.6668 0.333,-6 -5.333,-8 -6,-1.3332 -10,0.3332
-3.333,4.3328 -11.667,-1.666 -3.667,-1.334"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path74"
- inkscapeConnector-curvature="0" /><path
- d="m 121.284,73.4309 -7.333,18.6671 -7.667,11 c 0,0 1.666,4.667
4,4.667 2.334,0 7.667,0 7.667,0 l 7.333,-2.667 -0.666,-12.3332 -3.334,-19.3339"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path76"
- inkscapeConnector-curvature="0" /><path
- d="m 122.717,79.768 c 0,0 -9.334,17.9992 -9.334,20.666 0,0 1.666,4
4,3 2.334,-1 7.334,-3.666 7.334,-3.666 l 0,6.333 -11.334,2.334 -7.666,-1
13,-30.667 2.666,-0.334"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path78"
- inkscapeConnector-curvature="0" /><path
- d="m 81.9512,123.764 -9.2344,1.004 -8.6672,2.667 0,-3 4.2348,-4.67
13.3332,-6"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path80"
- inkscapeConnector-curvature="0" /><path
- d="m 67.0508,122.765 c 0,0 10.334,-4.334 13.6672,-3.334 l
0.3316,-3.996 -9.3316,1.996 -5.6672,4 1,1.334"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path82"
- inkscapeConnector-curvature="0" /><path
- d="m 134.582,106.63 c -5.656,0.166 -10.766,0.838 -15.24,2.1
0.304,1.834 -0.265,3.634 0.192,4.955 1.247,0.898 3.337,0.884 5.222,1.095
-1.63,0.801 -3.92,1.118 -5.801,0.655 -0.044,1.273 -0.615,2.062 -0.961,3.058
3.18,1.135 10.687,8.576 14.91,6.112 2.012,-1.172 2.867,-7.866 3.023,-11.121
0.13,-2.7 -0.245,-5.424 -1.345,-6.854"
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path84"
- inkscapeConnector-curvature="0" /><path
- d="m 134.582,106.63 c -5.656,0.166 -10.766,0.838 -15.24,2.1
0.304,1.834 -0.265,3.634 0.192,4.955 1.247,0.898 3.337,0.884 5.222,1.095
-1.63,0.801 -3.92,1.118 -5.801,0.655 -0.044,1.273 -0.615,2.062 -0.961,3.058
3.18,1.135 10.687,8.576 14.91,6.112 2.012,-1.172 2.867,-7.866 3.023,-11.121
0.13,-2.7 -0.245,-5.424 -1.345,-6.854 z"
-
style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path86"
- inkscapeConnector-curvature="0" /><path
- d="m 107.535,115.876 c -0.015,-0.428 -0.033,-0.859 -0.05,-1.291
-1.766,-1.16 -4.617,-1.146 -6.555,-2.121 2.857,-0.125 5.106,-0.813 7.052,-1.783
-0.043,-1.078 -0.084,-2.155 -0.126,-3.233 -3.237,-2.216 -6.194,-5.516
-10.0052,-7.5941 -1.802,-0.9828 -8.1262,-3.5117 -10.0434,-3.0648 -1.0847,0.2519
-1.1824,1.598 -1.616,2.8668 -0.9238,2.7171 -3.0508,7.0421 -3.2363,11.1321
-0.2363,5.166 -0.7578,13.824 4.8094,12.76 4.4914,-0.857 9.7152,-2.926
13.1925,-4.826 2.125,-1.162 3.354,-2.598 6.57 [...]
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path88"
- inkscapeConnector-curvature="0" /><path
- d="m 107.535,115.876 c -0.015,-0.428 -0.033,-0.859 -0.05,-1.291
-1.766,-1.16 -4.617,-1.146 -6.555,-2.121 2.857,-0.125 5.106,-0.813 7.052,-1.783
-0.043,-1.078 -0.084,-2.155 -0.126,-3.233 -3.237,-2.216 -6.194,-5.516
-10.0052,-7.5941 -1.802,-0.9828 -8.1262,-3.5117 -10.0434,-3.0648 -1.0847,0.2519
-1.1824,1.598 -1.616,2.8668 -0.9238,2.7171 -3.0508,7.0421 -3.2363,11.1321
-0.2363,5.166 -0.7578,13.824 4.8094,12.76 4.4914,-0.857 9.7152,-2.926
13.1925,-4.826 2.125,-1.162 3.354,-2.598 6.57 [...]
-
style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path90"
- inkscapeConnector-curvature="0" /><path
- d="m 110.75,109.712 c -0.494,2.814 -1.065,3.617 -0.844,6.072
7.505,5.004 8.914,-8.595 0.844,-6.072"
- style="fill:#d33833;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path92"
- inkscapeConnector-curvature="0" /><path
- d="m 110.75,109.712 c -0.494,2.814 -1.065,3.617 -0.844,6.072
7.505,5.004 8.914,-8.595 0.844,-6.072 z"
-
style="fill:none;stroke:#d33833;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path94"
- inkscapeConnector-curvature="0" /><path
- d="m 121.617,107.431 c 0,0 -2.334,3.334 -0.667,4.334 1.667,1
3.334,-0.001 4.334,1.666 1,1.667 0,2.667 0.333,4.667 0.333,2 2.001,2.334
3.667,2.667 1.666,0.333 6.334,1 7,-0.667 l -2,6 -4,1.333 -12.667,-7.333
-0.667,-3.667 0,-7.333"
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path96"
- inkscapeConnector-curvature="0" /><path
- d="m 86.6172,96.4309 c -0.4004,5.2021 -0.8242,10.3971 -1.2957,15.5941
-0.7055,7.76 1.864,6.406 8.5906,6.406 1.0274,0 6.3259,-1.225 6.7049,-2
1.818,-3.713 -3.04,-2.888 2.094,-5.688 4.334,-2.363 11.99,1.435 10.239,6.688
-0.98,1.168 -5.106,0.364 -6.585,1.131 -2.604,1.35 -5.208,2.7 -7.8123,4.05
-3.3132,1.719 -10.9707,4.225 -14.5031,1.823 -8.9504,-6.087 0.5649,-21.296
3.7578,-27.6459"
- style="fill:#ef3d3a;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path98"
- inkscapeConnector-curvature="0" /><path
- d="m 95.3887,214.532 c -9.0852,2.116 -13.5996,-3.802 -16.3535,-9.94
-2.459,0.596 -1.4805,3.94 -0.8594,5.644 1.6262,4.472 8.1797,10.425
13.5344,9.618 2.3043,-0.347 5.4226,-2.454 3.6785,-5.322"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path100"
- inkscapeConnector-curvature="0" /><path
- d="m 139.655,204.186 c 0.143,-0.006 0.288,-0.011 0.431,-0.017
2.053,-4.265 3.83,-8.783 6.42,-12.548 -1.735,-4.041 -13.138,-7.617
-12.962,-0.361 2.466,1.078 6.723,0.22 8.909,1.597 -1.264,3.469 -3.088,6.422
-2.798,11.329"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path102"
- inkscapeConnector-curvature="0" /><path
- d="m 100.04,204.075 c 1.948,-3.571 2.582,-7.323 5.351,-10.022
1.247,-1.215 3.672,-2.696 2.47,-6.075 -0.281,-0.797 -2.334,-2.574 -3.519,-2.923
-4.329,-1.278 -14.4162,-0.264 -11.0002,5.133 3.5801,-0.167 8.3922,-2.325
11.0682,0.274 -2.055,3.285 -5.7186,9.784 -4.37,13.613"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path104"
- inkscapeConnector-curvature="0" /><path
- d="m 138.03,167.781 c -6.518,-4.187 -13.786,-8.74 -24.466,-7.684
-2.282,1.984 -3.152,6.399 -0.935,9.315 1.154,-1.984 0.429,-5.633 3.645,-6.182
6.06,-1.037 13.113,3.707 17.472,5.365 2.703,4.557 -0.233,6.233 -2.668,9.166
-4.985,6.009 -11.672,13.457 -11.429,22.453 2.015,1.461 2.189,-2.23 2.478,-2.902
2.603,-6.092 9.154,-13.883 13.935,-19.097 1.174,-1.284 3.107,-2.516
3.322,-3.365 0.62,-2.469 -1.613,-5.427 -1.354,-7.069"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path106"
- inkscapeConnector-curvature="0" /><path
- d="m 52.1016,172.189 c -2.043,1.166 -2.5293,6.302 -4.9278,6.448
-3.4277,0.208 -2.8027,-6.663 -2.789,-10.681 -2.3594,2.142 -2.7743,8.737
-1.041,12.124 -1.9754,0.97 -2.8575,-1.07 -3.9532,-1.789 1.4082,10.23
14.9649,4.745 12.711,-6.102"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path108"
- inkscapeConnector-curvature="0" /><path
- d="m 142.18,163.521 c -3.034,-5.775 -7.326,-12.135 -16.229,-12.32
-0.181,1.865 -0.32,4.703 0.01,5.826 6.806,0.654 11.008,4.118 16.219,6.494"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path110"
- inkscapeConnector-curvature="0" /><path
- d="m 99.5266,159.777 c 5.6784,-2.986 16.1144,-3.307 23.8324,-3.081
0.414,-1.691 0.404,-3.78 0.42,-5.842 -9.921,-0.495 -21.651,1.96 -24.2524,8.923"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path112"
- inkscapeConnector-curvature="0" /><path
- d="m 98.4473,154.209 c 3.9267,-9.859 17.4227,-8.724 28.8037,-8.452
-0.501,-1.28 -1.587,-2.792 -2.937,-3.339 -3.647,-1.484 -13.706,-2.61
-18.769,0.079 -3.211,1.707 -5.274,5.564 -7.0333,7.825 -0.8496,1.092
-5.0801,3.881 -0.0644,3.887"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path114"
- inkscapeConnector-curvature="0" /><path
- d="m 137.556,99.8262 c -4.608,-7.8922 -9.017,-15.9981
-14.484,-22.9594 2.292,6.7391 3.273,18.0184 3.619,26.6172 4.795,2.244
8.901,-0.505 10.865,-3.6578"
- style="fill:#81b0c4;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path116"
- inkscapeConnector-curvature="0" /><path
- d="m 162.352,71.4609 c -5.159,-1.0328 -8.784,-6.0468 -13.817,-5.725
2.766,3.8993 7.613,5.543 13.817,5.725"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path118"
- inkscapeConnector-curvature="0" /><path
- d="m 164.628,63.3871 c -4.205,-0.4441 -9.144,-1.125 -13.409,-0.7742
2.019,3.084 9.798,2.0199 13.409,0.7742"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path120"
- inkscapeConnector-curvature="0" /><path
- d="m 166.085,56.4262 c -4.726,-0.1024 -10.6,-0.0082 -15.092,0.3687
2.657,2.8539 12.027,1.059 15.092,-0.3687"
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path122"
- inkscapeConnector-curvature="0" /><path
- d="m 128.664,37.377 c 0.678,-5.9352 3.031,-11.9489 2.736,-18.4489
-2.613,-0.8812 -4.114,-1.6519 -7.615,-1.6472 -0.247,5.5242 -0.986,13.9691
-0.765,19.2351 1.722,-0.114 4.261,1.2301 5.644,0.861"
- style="fill:#dcd9d8;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path124"
- inkscapeConnector-curvature="0" /><path
- d="m 121.045,124.849 c -2.373,-1.549 -4.394,-3.483 -6.673,-5.137
-5.054,-0.25 -7.812,0.35 -11.525,3.252 0.061,0.233 0.434,0.129 0.448,0.415
5.41,-2.411 12.287,0.982 17.75,1.47"
- style="fill:#f0d6b7;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path126"
- inkscapeConnector-curvature="0" /><path
- d="m 92.6445,87.9711 c 1.4864,6.441 7.3106,9.7769 12.5995,13.3239
5.459,-6.9282 8.779,-15.838 12.435,-24.436 -8.638,2.6039 -17.464,6.8289
-25.0345,11.1121"
- style="fill:#81b0c4;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path128"
- inkscapeConnector-curvature="0" /><path
- d="m 123.02,36.516 c -0.221,-5.266 0.518,-13.7109 0.765,-19.2351
3.501,-0.0047 5.002,0.766 7.615,1.6472 0.295,6.5 -2.058,12.5137 -2.736,18.4489
-1.383,0.3691 -3.922,-0.975 -5.644,-0.861 z M 68.5059,66.4648 C 70.8145,45.2418
74.1582,27.4012 80.291,8.60781 93.9023,4.475 110.311,4.11484 122.342,7.84414
120.133,18.4512 121.098,31.3648 119.807,42.684 c -0.973,8.5078 -0.477,17.068
-1.811,25.748 -14.578,3.0328 -35.1835,0.709 -49.4901,-1.9672 z m 52.9371,1.834
c -0.123,-9.1148 0.408,-18 [...]
- style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path130"
- inkscapeConnector-curvature="0" /><path
- d="m 90.491,157.255 c 0.4387,0.584 2.8508,1.471 6.2258,-0.154 0,0
-4,-0.667 -3.6672,-7.336 l -1.6668,0.334 c 0,0 -1.7226,6.047 -0.8918,7.156"
- style="fill:#f7e4cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path132"
- inkscapeConnector-curvature="0" /><path
- d="m 119.717,99.934 c 0,-1.0121 -0.821,-1.8328 -1.834,-1.8328
-1.012,0 -1.833,0.8207 -1.833,1.8328 0,1.012 0.821,1.834 1.833,1.834 1.013,0
1.834,-0.822 1.834,-1.834"
- style="fill:#1d1919;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path134"
- inkscapeConnector-curvature="0" /><path
- d="m 121.55,91.434 c 0,-1.0121 -0.821,-1.8328 -1.834,-1.8328 -1.012,0
-1.833,0.8207 -1.833,1.8328 0,1.0121 0.821,1.834 1.833,1.834 1.013,0
1.834,-0.8219 1.834,-1.834"
- style="fill:#1d1919;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path136"
- inkscapeConnector-curvature="0" /></g></g></svg>
\ No newline at end of file
+<svg width="100" height="100" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
+<path d="M25.2912 2.67189C23.4918 1.74972 21.1902 1 18.4387 1C5.88829 1
5.42346 9.33694 5.42346 9.33694C5.42346 9.33694 3.3992 10.0417 2.79942
13.2055C2.43206 15.1248 2.91188 16.4968 3.34672 17.284C2.92688 17.7338 2.57451
18.2662 2.30461 18.8659C1.66734 20.2829 1.5174 21.9548 1.89226 23.5817C2.26712
25.2086 3.11431 26.6256 4.28388 27.5702C5.54341 28.5899 7.08785 28.9572 8.51232
28.5899C8.5873 28.5749 8.65477 28.5524 8.72974 28.5299C11.4288 32.6159 15.5372
35 20.0131 35C27.8927 35 34.3103 [...]
+<path d="M22.0673 25.2461C23.7317 25.6809 24.9313 25.591 24.9313
25.591L24.9613 23.8666C24.9613 23.8666 24.0691 23.8891 22.4047 23.6942C20.7403
23.4992 19.1359 22.9744 19.1359 22.9744C19.1359 22.9744 19.8557 24.6763 22.0598
25.2536L22.0673 25.2461Z" fill="#ED6A45"/>
+<path d="M21.4376 27.0079C18.5961 26.3557 16.4369 22.9669 16.4369
22.9669C16.4369 22.9669 15.7322 27.4203 20.7478 29.0172C24.4215 30.1868 26.1758
26.8805 26.1758 26.8805C26.1758 26.8805 24.279 27.6602 21.4376 27.0079Z"
fill="#ED6A45"/>
+<path d="M19.3308 10.2816C19.3308 10.2816 19.4433 11.6386 20.8153
13.183C22.1873 14.7275 22.9295 14.7499 22.5022 15.6646C22.0748 16.5793 20.1705
17.0966 18.5811 16.9466C15.7547 16.6842 15.6422 15.2373 15.6422 15.2373C15.6422
15.2373 17.8014 15.4847 18.6261 15.2373C19.4508 14.9899 19.6907 14.2926 19.4508
13.7078C18.6861 11.871 19.3233 10.2816 19.3233 10.2816H19.3308Z"
fill="#ED6A45"/>
+</svg>
diff --git a/config-ui/src/images/integrations/jira.svg
b/config-ui/src/images/integrations/jira.svg
index 9cb04328..d656df7f 100644
--- a/config-ui/src/images/integrations/jira.svg
+++ b/config-ui/src/images/integrations/jira.svg
@@ -1 +1,4 @@
-<svg viewBox="2.59 0 214.09101008 224" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"
gradientTransform="matrix(1 0 0 -1 0 264)" gradientUnits="userSpaceOnUse"
x1="102.4" x2="56.15" y1="218.63" y2="172.39"><stop offset=".18"
stop-color="#0052cc"/><stop offset="1"
stop-color="#2684ff"/></linearGradient><linearGradient id="b" x1="114.65"
x2="160.81" xlink:href="#a" y1="85.77" y2="131.92"/><path d="m214.06
105.73-96.39-96.39-9.34-9.34-72 [...]
\ No newline at end of file
+<svg width="100" height="100" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
+<path d="M16.5952 12.2857L10.881 18L18.0873 25.2064C21.0714 28.1905 21.0714
33.0238 18.0873 36L3.35714 21.2698C1.54762 19.4603 1.54762 16.5317 3.35714
14.7302L13.8095 4.26984C13.4762 7.11905 14.4048 10.0952 16.5952
12.2778V12.2857Z" fill="#ED6A45"/>
+<path d="M19.5714 23.7143L25.2857 18L18.0794 10.7937C15.0952 7.80952 15.0952
2.97619 18.0794 0L32.8095 14.7302C34.6191 16.5397 34.6191 19.4683 32.8095
21.2698L22.3571 31.7222C22.6905 28.873 21.7619 25.8968 19.5714 23.7143Z"
fill="#ED6A45"/>
+</svg>
diff --git a/config-ui/src/images/integrations/null.svg
b/config-ui/src/images/integrations/null.svg
deleted file mode 100644
index 1dfb3f7e..00000000
--- a/config-ui/src/images/integrations/null.svg
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0"?><svg fill="#000000" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 64 64" width="100" height="100"> <path d="M 32 4 C 23.296 4
15.285 7.9443125 10 14.695312 L 10 11 C 10 10.448 9.552 10 9 10 L 3 10 C 2.448
10 2 10.448 2 11 L 2 27 C 2 27.552 2.448 28 3 28 L 19 28 C 19.552 28 20 27.552
20 27 L 20 21 C 20 20.448 19.552 20 19 20 L 16.023438 20 C 19.792438 14.959
25.64 12 32 12 C 37.089 12 41.803906 13.969031 45.378906 17.207031 L 43.285156
19.300781 C 42.180156 18.3 [...]
\ No newline at end of file
diff --git a/config-ui/src/images/layers.svg b/config-ui/src/images/layers.svg
deleted file mode 100644
index ea765d9d..00000000
--- a/config-ui/src/images/layers.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-<svg width="100" height="100" viewBox="0 0 42 42" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect width="100" height="100" fill="url(#pattern0)"/>
-<defs>
-<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1"
height="1">
-<use xlink:href="#image0_11_257" transform="scale(0.00416667)"/>
-</pattern>
-<image id="image0_11_257" width="100" height="100"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwCAYAAAA+VemSAAAABmJLR0QA/wD/AP+gvaeTAAAgAElEQVR4nO2dd3hU1daH3zPphAABVFBAQHrvxYICIipWwE8pFopSlJqQQklCTSEBURBQmpQLV0D0ihQVKRZ672BBivQSSM/MnO+PnRFFUmbnzJmS8z7PPN5Lzt5nzZlZs9tav6Vg4O74Ao2BRjn/rQ+UBkrlvABu5LyuAoeAvTmvfUCWzvYaGBR5/IHngYUIx1QlX9eBz4A3gEBd34GBQRGkBBAOXEHeaXN7XQFiEKO3gYGBhpQCJgHJaO+4d76Sc+5lm34bGBhI4g28A1zE8Y575+sqYrT3dfi7NDDwQJ4EDqC/4975Og684uD3amDgMdQGVuN8x73z9R3
[...]
-</defs>
-</svg>
diff --git a/config-ui/src/images/no-synchronize.svg
b/config-ui/src/images/no-synchronize.svg
deleted file mode 100644
index 99f239e6..00000000
--- a/config-ui/src/images/no-synchronize.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path
fill="#fff" d="M64 16A48 48 0 1 0 64 112A48 48 0 1 0 64 16Z"/><path
fill="#f48884" d="M64 25A39 39 0 1 0 64 103A39 39 0 1 0 64 25Z"/><path
fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"
stroke-width="6" d="M47.735,47
c4.169-3.885,9.952-6,16.01-6C76.588,41,86.07,50.6,87,65"/><path fill="none"
stroke="#fff" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" stroke-width="6" d="M [...]
\ No newline at end of file
diff --git a/config-ui/src/images/power-button.png
b/config-ui/src/images/power-button.png
deleted file mode 100644
index 6bd474c4..00000000
Binary files a/config-ui/src/images/power-button.png and /dev/null differ
diff --git a/config-ui/src/images/pulse-2.png b/config-ui/src/images/pulse-2.png
deleted file mode 100644
index 8ec26676..00000000
Binary files a/config-ui/src/images/pulse-2.png and /dev/null differ
diff --git a/config-ui/src/images/pulse.png b/config-ui/src/images/pulse.png
deleted file mode 100644
index 145d3305..00000000
Binary files a/config-ui/src/images/pulse.png and /dev/null differ
diff --git a/config-ui/src/images/refresh.svg b/config-ui/src/images/refresh.svg
deleted file mode 100644
index 8e068e2e..00000000
--- a/config-ui/src/images/refresh.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><linearGradient
id="mYc2VTE5eD8N6QIZhX1dba" x1="31.999" x2="31.999" y1="7.249" y2="57.273"
gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0"
stop-color="#1a6dff"/><stop offset="1"
stop-color="#c822ff"/></linearGradient><path
fill="url(#mYc2VTE5eD8N6QIZhX1dba)"
d="M57.645,31.864C57.289,31.323,56.706,31,56.087,31h-2.111C53.449,18,42.898,7.999,30,7.999
C16.766,7.999,5.999,18.766,5.999,32S16.766,56.001,30,56.00 [...]
\ No newline at end of file
diff --git a/config-ui/src/images/sort.png b/config-ui/src/images/sort.png
deleted file mode 100644
index 1a471850..00000000
Binary files a/config-ui/src/images/sort.png and /dev/null differ
diff --git a/config-ui/src/images/synchronise.png
b/config-ui/src/images/synchronise.png
deleted file mode 100644
index 2953ddee..00000000
Binary files a/config-ui/src/images/synchronise.png and /dev/null differ
diff --git a/config-ui/src/images/synchronize-folder.gif
b/config-ui/src/images/synchronize-folder.gif
deleted file mode 100644
index 515193c1..00000000
Binary files a/config-ui/src/images/synchronize-folder.gif and /dev/null differ
diff --git a/config-ui/src/images/synchronize.svg
b/config-ui/src/images/synchronize.svg
deleted file mode 100644
index fee54701..00000000
--- a/config-ui/src/images/synchronize.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path
fill="#fff" d="M64 16A48 48 0 1 0 64 112A48 48 0 1 0 64 16Z"/><path
fill="#8ccfb9" d="M64 25A39 39 0 1 0 64 103A39 39 0 1 0 64 25Z"/><path
fill="none" stroke="#444b54" stroke-miterlimit="10" stroke-width="6" d="M64
16A48 48 0 1 0 64 112A48 48 0 1 0 64 16Z"/><path fill="none" stroke="#fff"
stroke-linecap="round" stroke-miterlimit="10" stroke-width="6" d="M47,47.72
C51.208,43.377,57.322,41,63.744,41C76.588,41,86.07,50.6,8 [...]
\ No newline at end of file
diff --git a/config-ui/src/images/thunderbolt.png
b/config-ui/src/images/thunderbolt.png
deleted file mode 100644
index 061ddaa3..00000000
Binary files a/config-ui/src/images/thunderbolt.png and /dev/null differ
diff --git a/config-ui/src/images/undo.svg b/config-ui/src/images/undo.svg
deleted file mode 100644
index 69320c5e..00000000
--- a/config-ui/src/images/undo.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version:
6.00 Build 0) -->
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 16 16" enable-background="new 0 0 16 16"
xml:space="preserve">
-<g id="undo">
- <g>
- <path fill-rule="evenodd" clip-rule="evenodd"
d="M4,11c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S5.1,11,4,11z M11,4H3.41l1.29-1.29
-
C4.89,2.53,5,2.28,5,2c0-0.55-0.45-1-1-1C3.72,1,3.47,1.11,3.29,1.29l-3,3C0.11,4.47,0,4.72,0,5c0,0.28,0.11,0.53,0.29,0.71l3,3
-
C3.47,8.89,3.72,9,4,9c0.55,0,1-0.45,1-1c0-0.28-0.11-0.53-0.29-0.71L3.41,6H11c1.66,0,3,1.34,3,3s-1.34,3-3,3H7v2h4
- c2.76,0,5-2.24,5-5S13.76,4,11,4z"/>
- </g>
-</g>
-</svg>
diff --git a/config-ui/src/pages/blueprints/index.jsx
b/config-ui/src/pages/blueprints/index.jsx
index d68b8040..feb23c3c 100644
--- a/config-ui/src/pages/blueprints/index.jsx
+++ b/config-ui/src/pages/blueprints/index.jsx
@@ -36,7 +36,6 @@ import AppCrumbs from '@/components/Breadcrumbs'
import Content from '@/components/Content'
import AddBlueprintDialog from '@/components/blueprints/AddBlueprintDialog'
import { ReactComponent as HelpIcon } from '@/images/help.svg'
-import ManageBlueprintsIcon from '@/images/blueprints.png'
import BlueprintsGrid from '@/components/blueprints/BlueprintsGrid'
const Blueprints = (props) => {
@@ -300,11 +299,6 @@ const Blueprints = (props) => {
/>
<div className='headlineContainer'>
<div style={{ display: 'flex' }}>
- <div>
- <span style={{ marginRight: '10px' }}>
- <Icon icon={<img src={ManageBlueprintsIcon} width='38'
height='38' />} size={38} />
- </span>
- </div>
<div>
<h1 style={{ margin: 0 }}>
Pipeline Blueprints
diff --git a/config-ui/src/pages/configure/connections/AddConnection.jsx
b/config-ui/src/pages/configure/connections/AddConnection.jsx
index f7e87a5e..86f79716 100644
--- a/config-ui/src/pages/configure/connections/AddConnection.jsx
+++ b/config-ui/src/pages/configure/connections/AddConnection.jsx
@@ -140,7 +140,7 @@ export default function AddConnection () {
/>
<div style={{ width: '100%' }}>
<Link style={{ float: 'right', marginLeft: '10px', color:
'#777777' }} to={`/integrations/${activeProvider.id}`}>
- <Icon icon='fast-backward' size={16} /> Go Back
+ <Icon icon='undo' size={16} /> Go Back
</Link>
<div style={{ display: 'flex' }}>
<div>
diff --git a/config-ui/src/pages/configure/connections/EditConnection.jsx
b/config-ui/src/pages/configure/connections/EditConnection.jsx
index 5df1143a..1b909cb5 100644
--- a/config-ui/src/pages/configure/connections/EditConnection.jsx
+++ b/config-ui/src/pages/configure/connections/EditConnection.jsx
@@ -113,7 +113,7 @@ export default function EditConnection () {
/>
<div style={{ width: '100%' }}>
<Link style={{ float: 'right', marginLeft: '10px', color:
'#777777' }} to={`/integrations/${activeProvider.id}`}>
- <Icon icon='fast-backward' size={16} /> Go Back
+ <Icon icon='undo' size={16} /> Go Back
</Link>
<div style={{ display: 'flex' }}>
<div>
diff --git a/config-ui/src/pages/configure/integration/manage.jsx
b/config-ui/src/pages/configure/integration/manage.jsx
index 87afe6d3..93e5bffe 100644
--- a/config-ui/src/pages/configure/integration/manage.jsx
+++ b/config-ui/src/pages/configure/integration/manage.jsx
@@ -187,7 +187,7 @@ export default function ManageIntegration () {
/>
<div className='headlineContainer'>
<Link style={{ float: 'right', marginLeft: '10px', color:
'#777777' }} to='/integrations'>
- <Icon icon='fast-backward' size={16} /> Go Back
+ <Icon icon='undo' size={16} /> Go Back
</Link>
<div style={{ display: 'flex' }}>
<div>
diff --git a/config-ui/src/pages/pipelines/activity.jsx
b/config-ui/src/pages/pipelines/activity.jsx
index 4de9bddf..9aa8895d 100644
--- a/config-ui/src/pages/pipelines/activity.jsx
+++ b/config-ui/src/pages/pipelines/activity.jsx
@@ -46,14 +46,12 @@ import { ReactComponent as GitlabProviderIcon } from
'@/images/integrations/gitl
import { ReactComponent as JenkinsProviderIcon } from
'@/images/integrations/jenkins.svg'
import { ReactComponent as JiraProviderIcon } from
'@/images/integrations/jira.svg'
import { ReactComponent as GitHubProviderIcon } from
'@/images/integrations/github.svg'
-import { ReactComponent as BackArrowIcon } from '@/images/undo.svg'
import { ReactComponent as HelpIcon } from '@/images/help.svg'
-import PipelineActivityIcon from '@/images/pulse-2.png'
-import GitExtractorIcon from '@/images/git.png'
-import RefDiffIcon from '@/images/git-diff.png'
-import AEIcon from '@/images/ae.png'
-import DBTIcon from '@/images/dbt.png'
+// import GitExtractorIcon from '@/images/git.png'
+// import RefDiffIcon from '@/images/git-diff.png'
+// import AEIcon from '@/images/ae.png'
+// import DBTIcon from '@/images/dbt.png'
const PipelineActivity = (props) => {
const history = useHistory()
@@ -188,23 +186,12 @@ const PipelineActivity = (props) => {
<div className='headlineContainer'>
<Link style={{ display: 'flex', fontSize: '14px', float:
'right', marginLeft: '10px', color: '#777777' }} to='/pipelines'>
<Icon
- icon={
- <BackArrowIcon
- width={16} height={16}
- fill='rgba(0,0,0,0.25)'
- style={{
- marginRight: '6px'
- }}
- />
- } size={16}
+ icon='undo'
+ size={16}
+ style={{ marginRight: '5px', opacity: 0.6 }}
/> Go Back
</Link>
<div style={{ display: 'flex' }}>
- <div>
- <span style={{ marginRight: '10px' }}>
- <Icon icon={<img src={PipelineActivityIcon} width='38'
height='38' />} size={38} color={Colors.RED5} />
- </span>
- </div>
<div>
<h1 style={{ margin: 0 }}>
Pipeline Activity
@@ -615,7 +602,7 @@ const PipelineActivity = (props) => {
{pipelineHasProvider('gitextractor') && (
<div className='gitextractor-settings' style={{ display:
'flex', paddingLeft: '20px', justifySelf: 'flex-start' }}>
<div style={{ display: 'flex', padding: '2px 6px' }}>
- <img src={GitExtractorIcon} width={24} height={24} />
+ <Icon icon='box' size={24} />
</div>
<div>
<label style={{ lineHeight: '100%', display:
'block', fontSize: '10px', marginTop: '2px', marginBottom: '0px' }}>
@@ -645,7 +632,7 @@ const PipelineActivity = (props) => {
{pipelineHasProvider('refdiff') && (
<div className='refdiff-settings' style={{ display:
'flex', paddingLeft: '20px', justifySelf: 'flex-start' }}>
<div style={{ display: 'flex', padding: '2px 6px' }}>
- <img src={RefDiffIcon} width={24} height={24} />
+ <Icon icon='box' size={24} />
</div>
<div>
<label style={{ lineHeight: '100%', display:
'block', fontSize: '10px', marginTop: '2px', marginBottom: '0px' }}>
@@ -681,7 +668,7 @@ const PipelineActivity = (props) => {
{pipelineHasProvider('ae') && (
<div className='ae-settings' style={{ display: 'flex',
paddingLeft: '20px', justifySelf: 'flex-start' }}>
<div style={{ display: 'flex', padding: '2px 6px' }}>
- <img src={AEIcon} width={24} height={24} />
+ <Icon icon='box' size={24} />
</div>
<div>
<label style={{ lineHeight: '100%', display:
'block', fontSize: '10px', marginTop: '2px', marginBottom: '0px' }}>
@@ -706,7 +693,7 @@ const PipelineActivity = (props) => {
{pipelineHasProvider('dbt') && (
<div className='dbt-settings' style={{ display: 'flex',
paddingLeft: '20px', justifySelf: 'flex-start' }}>
<div style={{ display: 'flex', padding: '2px 6px' }}>
- <img src={DBTIcon} width={24} height={24} />
+ <Icon icon='box' size={24} />
</div>
<div>
<label style={{ lineHeight: '100%', display:
'block', fontSize: '10px', marginTop: '2px', marginBottom: '0px' }}>
diff --git a/config-ui/src/pages/pipelines/create.jsx
b/config-ui/src/pages/pipelines/create.jsx
index 45064f93..1a55bb0b 100644
--- a/config-ui/src/pages/pipelines/create.jsx
+++ b/config-ui/src/pages/pipelines/create.jsx
@@ -58,8 +58,6 @@ import Content from '@/components/Content'
import AddBlueprintDialog from '@/components/blueprints/AddBlueprintDialog'
// import CodeEditor from '@uiw/react-textarea-code-editor'
import { ReactComponent as HelpIcon } from '@/images/help.svg'
-import { ReactComponent as BackArrowIcon } from '@/images/undo.svg'
-import RunPipelineIcon from '@/images/duplicate.png'
import GitlabHelpNote from '@/images/help/gitlab-help.png'
import JiraHelpNote from '@/images/help/jira-help.png'
@@ -672,23 +670,12 @@ const CreatePipeline = (props) => {
<div className='headlineContainer'>
<Link style={{ display: 'flex', fontSize: '14px', float:
'right', marginLeft: '10px', color: '#777777' }} to='/pipelines'>
<Icon
- icon={
- <BackArrowIcon
- width={16} height={16}
- fill='rgba(0,0,0,0.25)'
- style={{
- marginRight: '6px'
- }}
- />
- } size={16}
+ icon='undo'
+ size={16}
+ style={{ marginRight: '5px', opacity: 0.6 }}
/> Go Back
</Link>
<div style={{ display: 'flex' }}>
- <div>
- <span style={{ marginRight: '10px' }}>
- <Icon icon={<img src={RunPipelineIcon} width='38'
height='38' />} size={38} />
- </span>
- </div>
<div>
<h1 style={{ margin: 0 }}>
Create Pipeline Run
diff --git a/config-ui/src/pages/pipelines/index.jsx
b/config-ui/src/pages/pipelines/index.jsx
index 86f4e8e1..c4affaea 100644
--- a/config-ui/src/pages/pipelines/index.jsx
+++ b/config-ui/src/pages/pipelines/index.jsx
@@ -45,7 +45,6 @@ import ContentLoader from '@/components/loaders/ContentLoader'
import PipelineIndicator from '@/components/widgets/PipelineIndicator'
import CodeInspector from '@/components/pipelines/CodeInspector'
import { ReactComponent as HelpIcon } from '@/images/help.svg'
-import ManagePipelinesIcon from '@/images/synchronise.png'
const Pipelines = (props) => {
const history = useHistory()
@@ -223,11 +222,6 @@ const Pipelines = (props) => {
<Icon icon='fast-backward' size={16} /> Go Back
</Link> */}
<div style={{ display: 'flex' }}>
- <div>
- <span style={{ marginRight: '10px' }}>
- <Icon icon={<img src={ManagePipelinesIcon} width='38'
height='38' />} size={38} />
- </span>
- </div>
<div>
<h1 style={{ margin: 0 }}>
All Pipeline Runs