mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	| @@ -6,24 +6,25 @@ | ||||
| import {SvgIcon} from '../svg.ts'; | ||||
|  | ||||
| withDefaults(defineProps<{ | ||||
|   status: '', | ||||
|   size?: number, | ||||
|   className?: string, | ||||
|   status: 'success' | 'skipped' | 'waiting' | 'blocked' | 'running' | 'failure' | 'cancelled' | 'unknown', | ||||
|   size: number, | ||||
|   className: string, | ||||
|   localeStatus?: string, | ||||
| }>(), { | ||||
|   size: 16, | ||||
|   className: undefined, | ||||
|   className: '', | ||||
|   localeStatus: undefined, | ||||
| }); | ||||
| </script> | ||||
|  | ||||
| <template> | ||||
|   <span class="tw-flex tw-items-center" :data-tooltip-content="localeStatus" v-if="status"> | ||||
|   <span :data-tooltip-content="localeStatus ?? status" v-if="status"> | ||||
|     <SvgIcon name="octicon-check-circle-fill" class="text green" :size="size" :class-name="className" v-if="status === 'success'"/> | ||||
|     <SvgIcon name="octicon-skip" class="text grey" :size="size" :class-name="className" v-else-if="status === 'skipped'"/> | ||||
|     <SvgIcon name="octicon-stop" class="text yellow" :size="size" :class-name="className" v-else-if="status === 'cancelled'"/> | ||||
|     <SvgIcon name="octicon-clock" class="text yellow" :size="size" :class-name="className" v-else-if="status === 'waiting'"/> | ||||
|     <SvgIcon name="octicon-blocked" class="text yellow" :size="size" :class-name="className" v-else-if="status === 'blocked'"/> | ||||
|     <SvgIcon name="octicon-meter" class="text yellow" :size="size" :class-name="'job-status-rotate ' + className" v-else-if="status === 'running'"/> | ||||
|     <SvgIcon name="octicon-x-circle-fill" class="text red" :size="size" v-else-if="['failure', 'cancelled', 'unknown'].includes(status)"/> | ||||
|     <SvgIcon name="octicon-x-circle-fill" class="text red" :size="size" v-else/><!-- failure, unknown --> | ||||
|   </span> | ||||
| </template> | ||||
|   | ||||
| @@ -551,11 +551,13 @@ export function initRepositoryActionView() { | ||||
|  | ||||
| .action-info-summary-title { | ||||
|   display: flex; | ||||
|   align-items: center; | ||||
|   gap: 0.5em; | ||||
| } | ||||
|  | ||||
| .action-info-summary-title-text { | ||||
|   font-size: 20px; | ||||
|   margin: 0 0 0 8px; | ||||
|   margin: 0; | ||||
|   flex: 1; | ||||
|   overflow-wrap: anywhere; | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user