File tree Expand file tree Collapse file tree 3 files changed +39
-26
lines changed Expand file tree Collapse file tree 3 files changed +39
-26
lines changed Original file line number Diff line number Diff line change 4
4
<div class =" pl-5 pt-5 d-flex" style =" column-gap : 10px ;" >
5
5
<div class =" AnsibleServerStatus AnsibleServerStatus--ok" >
6
6
<div class =" AnsibleServerStatus__count" >{{ okServers }}</div >
7
- <div >OK SERVERS</div >
7
+ <div class = " AnsibleServerStatus__title " >OK SERVERS</div >
8
8
</div >
9
9
10
10
<div class =" AnsibleServerStatus AnsibleServerStatus--bad" >
11
11
<div class =" AnsibleServerStatus__count" >{{ notOkServers }}</div >
12
- <div >NOT OK SERVERS</div >
12
+ <div class = " AnsibleServerStatus__title " >NOT OK SERVERS</div >
13
13
</div >
14
14
</div >
15
15
36
36
<td style =" width : 150px ;" >{{ task.host }}</td >
37
37
<td style =" width : 200px ;" >{{ task.task }}</td >
38
38
<td >
39
- <div style =" overflow : hidden ; color : red ; max-width : 400px ; text-overflow : ellipsis " >
39
+ <div
40
+ style =" overflow : hidden ; color : #ff5252 ; max-width : 400px ; text-overflow : ellipsis " >
40
41
{{ task.answer }}
41
42
</div >
42
43
</td >
76
77
</div >
77
78
</template >
78
79
<style lang="scss">
79
- .AnsibleServerStatus {
80
- text-align : center ;
81
- width : 250px ;
82
- font-weight : bold ;
83
- color : white ;
84
- font-size : 24px ;
85
- line-height : 1.2 ;
86
- border-radius : 8px ;
87
- }
88
-
89
- .AnsibleServerStatus__count {
90
- font-size : 100px ;
91
- }
92
-
93
- .AnsibleServerStatus--ok {
94
- background-color : green ;
95
- }
96
-
97
- .AnsibleServerStatus--bad {
98
- background-color : red ;
99
- }
80
+ .AnsibleServerStatus {
81
+ text-align : center ;
82
+ width : 250px ;
83
+ font-weight : bold ;
84
+ color : white ;
85
+ font-size : 24px ;
86
+ line-height : 1.2 ;
87
+ border-radius : 8px ;
88
+ }
89
+
90
+ .AnsibleServerStatus__count {
91
+ padding-top : 10px ;
92
+ font-size : 80px ;
93
+ line-height : 1 ;
94
+ }
95
+
96
+ .AnsibleServerStatus--ok {
97
+ background-color : #4caf50 ;
98
+ }
99
+
100
+ .AnsibleServerStatus--bad {
101
+ background-color : #ff5252 ;
102
+ }
103
+
104
+ .AnsibleServerStatus__title {
105
+ padding-bottom : 10px ;
106
+ }
100
107
</style >
101
108
102
109
<script >
Original file line number Diff line number Diff line change 25
25
<div class =" overflow-auto text-no-wrap px-5" style =" margin-bottom : -40px ;" >
26
26
<TaskStatus :status =" item.status" data-testid =" task-status" />
27
27
<span class =" ml-3" >
28
- {{ user?.name || '-' }}
29
- {{ item.start | formatDate }}
28
+ Started by <b >{{ user?.name || '-' }}</b >
29
+ at <b >{{ item.start | formatDate }}</b >
30
+ <v-icon
31
+ class =" ml-3 mr-1" small style =" transform : translateY (-1px )" >mdi-clock-outline</v-icon >
30
32
{{ [item.start, item.end] | formatMilliseconds }}
31
33
</span >
32
34
</div >
Original file line number Diff line number Diff line change 20
20
:rules =" [v => !!v || $t('user_required')]"
21
21
required
22
22
:disabled =" formSaving"
23
+ outlined
24
+ dense
23
25
></v-autocomplete >
24
26
25
27
<v-select
31
33
:rules =" [v => !!v || $t('user_required')]"
32
34
required
33
35
:disabled =" formSaving"
36
+ outlined
37
+ dense
34
38
></v-select >
35
39
</v-form >
36
40
</template >
You can’t perform that action at this time.
0 commit comments