mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	This PR is to fix the second problem mentioned in #23625, along with the
long texts problem in `issue-item-bottom-row` of `issuelist.tmpl`
Main changes are:
1. Add `max-width` to the search dropdowns in issue list and make the
possible long texts inside to show ellipsis if texts are long
2. Adjust the conditions in
[issuelist.tmpl](1d35fa0e78/templates/shared/issuelist.tmpl (L146-L167))
to fix the problem as mentioned by the
[comment](https://github.com/go-gitea/gitea/issues/23625#issuecomment-1479281060)
3. Use `word-break: break-word;` in `issue-item-bottom-row` to break the
possible long texts.
After the PR
issuelist in repo (similar for pr list):
<img width="366" alt="截屏2023-03-23 17 42 40"
src="https://user-images.githubusercontent.com/17645053/227163953-93e9adbd-5785-4c16-b538-9db901787775.png">
dropdowns with long name (Here take reference from github to deal with
the long names cases: show ellipsis with no title, because all these
options are clickable, and it might not be necessary to add titles to
them ):
<img width="370" alt="截屏2023-03-23 17 43 50"
src="https://user-images.githubusercontent.com/17645053/227164215-df6fcaaa-9fee-4256-a57c-053fbcffafbb.png">
<img width="365" alt="截屏2023-03-23 17 43 56"
src="https://user-images.githubusercontent.com/17645053/227164227-9c99abcd-f410-4e07-b5b8-cbce764eedcd.png">
issue page (similar for pr page):
<img width="374" alt="截屏2023-03-23 17 45 37"
src="https://user-images.githubusercontent.com/17645053/227164668-654a8188-dac8-4bbf-a6e3-f3768a644a1b.png">
on PC:
<img width="1412" alt="截屏2023-03-23 17 47 20"
src="https://user-images.githubusercontent.com/17645053/227166694-e7bcc6e5-9667-4cef-9fbf-db85640a2c6c.png">
<img width="1433" alt="截屏2023-03-23 17 46 40"
src="https://user-images.githubusercontent.com/17645053/227165182-4e2a5d19-74bc-4c66-b73c-23cbca176ffe.png">
		
	
		
			
				
	
	
		
			168 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
.issue.list {
 | 
						|
  list-style: none;
 | 
						|
  margin-top: 1rem;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list a:not(.label):hover {
 | 
						|
  color: var(--color-primary) !important;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-checkbox {
 | 
						|
  margin-top: 1px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-icon svg {
 | 
						|
  margin-right: 0.75rem;
 | 
						|
  margin-top: 1px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-icons-right > * + * {
 | 
						|
  margin-left: 0.5rem;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-main {
 | 
						|
  width: 100%;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .action-item-main {
 | 
						|
  width: 80%;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-right {
 | 
						|
  width: 15%;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-top-row {
 | 
						|
  max-width: 100%;
 | 
						|
  color: var(--color-text);
 | 
						|
  font-size: 16px;
 | 
						|
  min-width: 0;
 | 
						|
  font-weight: 600;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-top-row a.index {
 | 
						|
  max-width: fit-content;
 | 
						|
  display: -webkit-box;
 | 
						|
  -webkit-box-orient: vertical;
 | 
						|
  -webkit-line-clamp: 2;
 | 
						|
  overflow: hidden;
 | 
						|
  word-break: break-all;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .labels-list {
 | 
						|
  position: relative;
 | 
						|
  top: -1.5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-bottom-row {
 | 
						|
  font-size: 13px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .title {
 | 
						|
  color: var(--color-text);
 | 
						|
  word-break: break-word;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .issue-item-icon-right {
 | 
						|
  min-width: 2rem;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .assignee {
 | 
						|
  position: relative;
 | 
						|
  top: -2px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .assignee img {
 | 
						|
  width: 20px;
 | 
						|
  height: 20px;
 | 
						|
  margin-right: 2px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc {
 | 
						|
  color: var(--color-text-light-2);
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc a {
 | 
						|
  color: inherit;
 | 
						|
  word-break: break-word;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .time-since,
 | 
						|
.issue.list > .item .desc a {
 | 
						|
  margin-left: 0.25rem;
 | 
						|
  margin-right: 0.25rem;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .waiting,
 | 
						|
.issue.list > .item .desc .approvals,
 | 
						|
.issue.list > .item .desc .rejects {
 | 
						|
  padding-left: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .checklist {
 | 
						|
  padding-left: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .checklist progress {
 | 
						|
  margin-left: 2px;
 | 
						|
  width: 80px;
 | 
						|
  height: 6px;
 | 
						|
  display: inline-block;
 | 
						|
  border-radius: 3px;
 | 
						|
  vertical-align: 2px !important;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .checklist progress::-webkit-progress-value {
 | 
						|
  background-color: var(--color-secondary-dark-4);
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .checklist progress::-moz-progress-bar {
 | 
						|
  background-color: var(--color-secondary-dark-4);
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .conflicting {
 | 
						|
  padding-left: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .due-date {
 | 
						|
  padding-left: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc a.milestone,
 | 
						|
.issue.list > .item .desc a.project {
 | 
						|
  margin-left: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc a.ref {
 | 
						|
  margin-left: 8px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc a.ref span {
 | 
						|
  margin-right: -4px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item .desc .overdue {
 | 
						|
  color: var(--color-red);
 | 
						|
}
 | 
						|
 | 
						|
.issue.list .branches {
 | 
						|
  display: inline-flex;
 | 
						|
  padding: 0 4px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list .branches .branch {
 | 
						|
  background-color: var(--color-secondary);
 | 
						|
  border-radius: 3px;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list .branches .truncated-name {
 | 
						|
  white-space: nowrap;
 | 
						|
  overflow: hidden;
 | 
						|
  text-overflow: ellipsis;
 | 
						|
  max-width: 10em;
 | 
						|
}
 | 
						|
 | 
						|
.issue.list > .item + .item {
 | 
						|
  border-top: 1px solid var(--color-secondary);
 | 
						|
}
 |