Skip to content

Commit ff4c926

Browse files
committed
Disabled echo logging. WIP job detail view
1 parent 31a5bbd commit ff4c926

File tree

7 files changed

+490
-540
lines changed

7 files changed

+490
-540
lines changed

frontend/client/App.vue

+12
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,18 @@ html {
142142
border-color: transparent;
143143
}
144144
145+
.is-green-button {
146+
background-color: #4CAF50 !important;
147+
font-weight: bold;
148+
border-color: transparent;
149+
color: whitesmoke;
150+
}
151+
152+
.is-green-button:hover, .button:active, .button:focus {
153+
color: whitesmoke;
154+
border-color: transparent;
155+
}
156+
145157
.is-disabled {
146158
opacity: .5;
147159
pointer-events: none;

frontend/client/views/pipeline/create.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</p>
4848
<span style="color: red" v-if="pipelineErrorMsg">Pipeline Name incorrect: {{ pipelineErrorMsg }}</span>
4949
<hr class="dotted-line">
50-
<a class="button is-primary" v-on:click="startCreatePipeline" v-bind:class="{ 'is-disabled': !gitSuccess || !pipelineNameSuccess }">
50+
<a class="button is-green-button" v-on:click="startCreatePipeline" v-bind:class="{ 'is-disabled': !gitSuccess || !pipelineNameSuccess }">
5151
<span class="icon">
5252
<i class="fa fa-plus"></i>
5353
</span>

frontend/client/views/pipeline/detail.vue

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
<template>
22
<div class="tile is-ancestor">
33
<div class="tile is-vertical">
4+
<div class="tile is-parent">
5+
<a class="button is-primary" @click="jobLog" style="margin-right: 10px;">
6+
<span class="icon">
7+
<i class="fa fa-play-circle"></i>
8+
</span>
9+
<span>Start Pipeline</span>
10+
</a>
11+
<a class="button is-green-button" @click="jobLog">
12+
<span class="icon">
13+
<i class="fa fa-terminal"></i>
14+
</span>
15+
<span>Show Logs</span>
16+
</a>
17+
</div>
18+
419
<div class="tile">
520
<div class="tile is-vertical is-parent is-12">
621
<article class="tile is-child notification content-article">

0 commit comments

Comments
 (0)