Skip to content

Commit 7e3bee8

Browse files
authored
Merge pull request #586 from kubero-dev/feature/improve-ui
improve UI
2 parents 278ac77 + d66fc95 commit 7e3bee8

File tree

16 files changed

+381
-171
lines changed

16 files changed

+381
-171
lines changed
Lines changed: 50 additions & 0 deletions
Loading

client/public/img/icons/hexagon1-empty-bold.svg

Lines changed: 7 additions & 0 deletions
Loading

client/public/img/icons/hexagon1.svg

Lines changed: 7 additions & 0 deletions
Loading
Lines changed: 85 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

client/public/img/icons/hexagon3.svg

Lines changed: 7 additions & 0 deletions
Loading

client/src/components/addons/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
style="top: -50px;"
5050
color="primary"
5151
dark
52+
elevation="0"
5253
@click="openInstallDialog(addon)"
5354
>
5455
Installation

client/src/components/apps/detail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default defineComponent({
108108
tab: null,
109109
breadcrumbItems: [
110110
{
111-
title: 'dashboard.-',
111+
title: 'Dashboard.Pipelines',
112112
disabled: false,
113113
to: { name: 'Pipelines', params: {}}
114114
},

client/src/components/apps/form.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<Breadcrumbs :items="breadcrumbItems"></Breadcrumbs>
55
<v-row>
66
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
7-
<h2 v-if="app=='new'">
7+
<h1 v-if="app=='new'" style="font-size: xxx-large">
88
Create a new App in {{ pipeline }}
9-
</h2>
10-
<h2 v-if="app!='new'">
9+
</h1>
10+
<h1 v-if="app!='new'" style="font-size: xxx-large">
1111
Edit {{ app }} in {{ pipeline }}
12-
</h2>
12+
</h1>
1313
<p class="text-justify">
1414
in phase {{ phase }}
1515
</p>
@@ -717,10 +717,12 @@
717717
</v-expansion-panel-text>
718718
</v-expansion-panel>
719719

720-
<!-- SERVICEACCOUNT ANNOTATIONS -->
720+
<!-- KUBERNETES -->
721721
<v-expansion-panel bg-color="rgb(var(--v-theme-on-surface-variant))" :style="advanced ? 'display: block;' : 'display: none;'">
722-
<v-expansion-panel-title class="text-uppercase text-caption-2 font-weight-medium" color="secondary">ServiceAcccount Annotations</v-expansion-panel-title>
722+
<v-expansion-panel-title class="text-uppercase text-caption-2 font-weight-medium" color="secondary">Kubernetes</v-expansion-panel-title>
723723
<v-expansion-panel-text color="secondary">
724+
725+
<h4 class="mb-5">Serviceaccount Annotation</h4>
724726
<v-row v-for="(annotation, index) in sAAnnotations" :key="index">
725727
<v-col
726728
cols="12"

0 commit comments

Comments
 (0)