mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Change commit status icons to SVG (#20736)
* Fix commit status popover and switch to svg icons * margin tweak * fix integration, use warning sign for error to match previous * remove fix from here, will be a new pr * use top/bottom positioning * vertically center * use no-entry over alert oction * add exclamation icon * fix test selector * more test fixes
This commit is contained in:
		@@ -58,12 +58,12 @@ export function initRepoCommitLastCommitLoader() {
 | 
			
		||||
 | 
			
		||||
export function initCommitStatuses() {
 | 
			
		||||
  $('.commit-statuses-trigger').each(function () {
 | 
			
		||||
    const positionRight = $('.repository.file.list').length > 0 || $('.repository.diff').length > 0;
 | 
			
		||||
    const top = $('.repository.file.list').length > 0 || $('.repository.diff').length > 0;
 | 
			
		||||
 | 
			
		||||
    createTippy(this, {
 | 
			
		||||
      trigger: 'click',
 | 
			
		||||
      content: this.nextSibling,
 | 
			
		||||
      placement: positionRight ? 'right' : 'left',
 | 
			
		||||
      placement: top ? 'top-start' : 'bottom-start',
 | 
			
		||||
      interactive: true,
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user