File tree 3 files changed +3
-15
lines changed
3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -2420,18 +2420,6 @@ a.ui.basic.label:hover {
2420
2420
height : 2.1666em !important ;
2421
2421
}
2422
2422
2423
- span .green .svg {
2424
- color : var (--color-green );
2425
- }
2426
-
2427
- span .red .svg {
2428
- color : var (--color-red );
2429
- }
2430
-
2431
- span .purple .svg {
2432
- color : var (--color-purple );
2433
- }
2434
-
2435
2423
.migrate .svg .gitea-git {
2436
2424
color : var (--color-git );
2437
2425
}
Original file line number Diff line number Diff line change 1
1
<template >
2
- <SvgIcon name =" octicon-check-circle-fill" class =" green" :size =" size" :class-name =" className" v-if =" status === 'success'" />
2
+ <SvgIcon name =" octicon-check-circle-fill" class =" ui text green" :size =" size" :class-name =" className" v-if =" status === 'success'" />
3
3
<SvgIcon name =" octicon-skip" class =" ui text grey" :size =" size" :class-name =" className" v-else-if =" status === 'skipped'" />
4
4
<SvgIcon name =" octicon-clock" class =" ui text yellow" :size =" size" :class-name =" className" v-else-if =" status === 'waiting'" />
5
5
<SvgIcon name =" octicon-blocked" class =" ui text yellow" :size =" size" :class-name =" className" v-else-if =" status === 'blocked'" />
6
6
<SvgIcon name =" octicon-meter" class =" ui text yellow" :size =" size" :class-name =" 'job-status-rotate ' + className" v-else-if =" status === 'running'" />
7
- <SvgIcon name =" octicon-x-circle-fill" class =" red" :size =" size" v-else />
7
+ <SvgIcon name =" octicon-x-circle-fill" class =" ui text red" :size =" size" v-else />
8
8
</template >
9
9
10
10
<script >
Original file line number Diff line number Diff line change 3
3
<div v-if =" loading" class =" ui active centered inline loader" />
4
4
<div v-if =" !loading && issue !== null" >
5
5
<p ><small >{{ issue.repository.full_name }} on {{ createdAt }}</small ></p >
6
- <p ><svg-icon :name =" icon" :class =" [color]" /> <strong >{{ issue.title }}</strong > #{{ issue.number }}</p >
6
+ <p ><svg-icon :name =" icon" :class =" ['text', color]" /> <strong >{{ issue.title }}</strong > #{{ issue.number }}</p >
7
7
<p >{{ body }}</p >
8
8
<div >
9
9
<div
You can’t perform that action at this time.
0 commit comments