mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 03:24:10 +00:00 
			
		
		
		
	Fix issue sidebar (#32455)
Fix #32453 Major changes: * revert the `<div class="divider"></div>` in `templates/repo/issue/branch_selector_field.tmpl` (it was removed by mistake in ##32444) * remove incorrect `<div class="inline field">` in `templates/repo/issue/sidebar/allow_maintainer_edit.tmpl` * use `gt-ellipsis` to replace the "title" class in the dependency list, then `.repository .issue-content-right .ui.list .title` could be removed * remove the "relaxed" from dependency list, then there is no padding, then `.repository .issue-content-right .ui.list .dependency` could be removed (`white-space` doesn't have effect either because there is `gt-ellipsis`) * remove dead code `.repository .issue-content-right #deadlineForm input ` The fixed UI should be the same as before.
This commit is contained in:
		@@ -62,23 +62,6 @@
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository .issue-content-right .ui.list .dependency {
 | 
			
		||||
  padding: 0;
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository .issue-content-right .ui.list .title {
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
  text-overflow: ellipsis;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository .issue-content-right #deadlineForm input {
 | 
			
		||||
  width: 12.8rem;
 | 
			
		||||
  border-radius: var(--border-radius) 0 0 var(--border-radius);
 | 
			
		||||
  border-right: 0;
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.repository .issue-content-right .filter.menu {
 | 
			
		||||
  max-height: 500px;
 | 
			
		||||
  overflow-x: auto;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user