mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	View diff: https://github.com/go-gitea/gitea/pull/24738/files?diff=unified&w=1 Improve layout and functionality in review area: <img width="439" alt="Screenshot 2023-05-15 at 20 10 01" src="https://github.com/go-gitea/gitea/assets/115237/be10452b-5829-4927-8801-7b26a57b3dbd"> Remove the "Reviewers" timeline box that appears before the merge box. it's a duplicate of the top-right review area and all functionality of it has been moved to the other box: <img width="868" alt="Screenshot 2023-05-15 at 19 39 31" src="https://github.com/go-gitea/gitea/assets/115237/35489445-e54b-40d3-b3cf-38d029478f96"> Increase timeline item vertical padding from 12px to 16px: <img width="449" alt="Screenshot 2023-05-15 at 19 43 50" src="https://github.com/go-gitea/gitea/assets/115237/919c4f9d-a485-4f51-b08c-2c0fc714a413"> --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			89 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
.explore .navbar {
 | 
						|
  margin-bottom: 15px !important;
 | 
						|
  background-color: var(--color-navbar) !important;
 | 
						|
  border-width: 1px !important;
 | 
						|
}
 | 
						|
 | 
						|
.explore .navbar .svg {
 | 
						|
  width: 16px;
 | 
						|
  text-align: center;
 | 
						|
  margin-right: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item {
 | 
						|
  padding-bottom: 1.5rem;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item:not(:first-child) {
 | 
						|
  border-top: 1px solid var(--color-secondary);
 | 
						|
  padding-top: 1.5rem;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item .ui.header {
 | 
						|
  font-size: 1.5rem;
 | 
						|
  margin-bottom: 0.5rem;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item .ui.header .name {
 | 
						|
  word-break: break-all;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item .time {
 | 
						|
  font-size: 12px;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .item .ui.tags {
 | 
						|
  margin-bottom: 0.5rem;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.list .repo-title .labels {
 | 
						|
  word-break: normal;
 | 
						|
  flex-shrink: 0;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.branches .info {
 | 
						|
  font-size: 12px;
 | 
						|
  color: var(--color-text-light);
 | 
						|
  display: flex;
 | 
						|
  white-space: pre;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.branches .info .commit-message {
 | 
						|
  max-width: 72em;
 | 
						|
  overflow: hidden;
 | 
						|
  text-overflow: ellipsis;
 | 
						|
}
 | 
						|
 | 
						|
.ui.repository.branches .overflow-visible {
 | 
						|
  overflow: visible;
 | 
						|
}
 | 
						|
 | 
						|
/* fix alignment of PR popup in branches table */
 | 
						|
.ui.repository.branches table .ui.popup {
 | 
						|
  text-align: left;
 | 
						|
}
 | 
						|
 | 
						|
.ui.user.list .item {
 | 
						|
  padding-bottom: 25px;
 | 
						|
  display: flex;
 | 
						|
}
 | 
						|
 | 
						|
.ui.user.list .item:not(:first-child) {
 | 
						|
  border-top: 1px solid var(--color-secondary);
 | 
						|
  padding-top: 25px;
 | 
						|
}
 | 
						|
 | 
						|
.ui.user.list .item img.ui.avatar {
 | 
						|
  width: 40px;
 | 
						|
  height: 40px;
 | 
						|
  margin-right: 10px;
 | 
						|
}
 | 
						|
 | 
						|
.ui.user.list .item .description {
 | 
						|
  margin-top: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.ui.user.list .item .description .svg:not(:first-child) {
 | 
						|
  margin-left: 5px;
 | 
						|
}
 |