mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	wrap long texts on user profile info (#7333)
fix #7255 discussed in PR #7254 Signed-off-by: Michael Gnehr <michael@gnehr.de>
This commit is contained in:
		| @@ -47,6 +47,7 @@ img{border-radius:3px} | |||||||
| table{border-collapse:collapse} | table{border-collapse:collapse} | ||||||
| a{cursor:pointer} | a{cursor:pointer} | ||||||
| .rounded{border-radius:.28571429rem!important} | .rounded{border-radius:.28571429rem!important} | ||||||
|  | .wrap{word-wrap:break-word;word-break:break-all} | ||||||
| .mono,code,pre{font:12px 'SF Mono',Consolas,Menlo,'Liberation Mono',Monaco,'Lucida Console',monospace} | .mono,code,pre{font:12px 'SF Mono',Consolas,Menlo,'Liberation Mono',Monaco,'Lucida Console',monospace} | ||||||
| .mono.raw,code.raw,pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto} | .mono.raw,code.raw,pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto} | ||||||
| .mono.wrap,code.wrap,pre.wrap{white-space:pre-wrap;word-break:break-all;overflow-wrap:break-word;word-wrap:break-word} | .mono.wrap,code.wrap,pre.wrap{white-space:pre-wrap;word-break:break-all;overflow-wrap:break-word;word-wrap:break-word} | ||||||
|   | |||||||
| @@ -159,6 +159,11 @@ a { | |||||||
|     border-radius: 0.28571429rem !important; |     border-radius: 0.28571429rem !important; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | .wrap { | ||||||
|  |     word-wrap: break-word; | ||||||
|  |     word-break: break-all; | ||||||
|  | } | ||||||
|  |  | ||||||
| pre, | pre, | ||||||
| code, | code, | ||||||
| .mono { | .mono { | ||||||
|   | |||||||
| @@ -13,11 +13,11 @@ | |||||||
| 							<img src="{{.Owner.SizedRelAvatarLink 290}}" title="{{.Owner.Name}}"/> | 							<img src="{{.Owner.SizedRelAvatarLink 290}}" title="{{.Owner.Name}}"/> | ||||||
| 						</span> | 						</span> | ||||||
| 					{{end}} | 					{{end}} | ||||||
| 					<div class="content"> | 					<div class="content wrap"> | ||||||
| 						{{if .Owner.FullName}}<span class="header text center">{{.Owner.FullName}}</span>{{end}} | 						{{if .Owner.FullName}}<span class="header text center">{{.Owner.FullName}}</span>{{end}} | ||||||
| 						<span class="username text center">{{.Owner.Name}}</span> | 						<span class="username text center">{{.Owner.Name}}</span> | ||||||
| 					</div> | 					</div> | ||||||
| 					<div class="extra content"> | 					<div class="extra content wrap"> | ||||||
| 						<ul class="text black"> | 						<ul class="text black"> | ||||||
| 							{{if .Owner.Location}} | 							{{if .Owner.Location}} | ||||||
| 								<li><i class="octicon octicon-location"></i> {{.Owner.Location}}</li> | 								<li><i class="octicon octicon-location"></i> {{.Owner.Location}}</li> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user