mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 22:28:05 +01:00 
			
		
		
		
	Revert "Fix wrapping long code lines in UI" (#6074)
This reverts commit e5cd80e0219f10818f43e8cab6b9c814cb1cd796. Fixes: https://github.com/go-gitea/gitea/issues/6064
This commit is contained in:
		
							parent
							
								
									7ae59567a2
								
							
						
					
					
						commit
						ec540294a1
					
				
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @ -30,15 +30,26 @@ pre, code { | |||||||
|         line-height: 1.5; |         line-height: 1.5; | ||||||
|         overflow: auto; |         overflow: auto; | ||||||
|     } |     } | ||||||
| } |     &.wrap { | ||||||
| /* Wrap long lines of code. This will also apply to Markdown code boxes. */ |         white-space: pre-wrap;       /* CSS 3 */ | ||||||
| pre > code { | //      white-space: -moz-normal;    /* Mozilla, since 1999 */ | ||||||
|         white-space: pre-wrap !important; | //      white-space: -normal;        /* Opera 4-6 */ | ||||||
|         word-break: break-all !important; | //      white-space: -o-normal;      /* Opera 7 */ | ||||||
|         overflow-wrap: break-word !important; | 
 | ||||||
|  |         -ms-word-break: break-all; | ||||||
|  |         word-break: break-all; | ||||||
|  | 
 | ||||||
|  |         /* These are technically the same, but use both */ | ||||||
|  |         overflow-wrap: break-word; | ||||||
|  |         word-wrap: break-word; | ||||||
|  |     } | ||||||
| } | } | ||||||
| .dont-break-out { | .dont-break-out { | ||||||
|  |     /* These are technically the same, but use both */ | ||||||
|     overflow-wrap: break-word; |     overflow-wrap: break-word; | ||||||
|  |     word-wrap: break-word; | ||||||
|  | 
 | ||||||
|  |     -ms-word-break: break-all; | ||||||
|     word-break: break-all; |     word-break: break-all; | ||||||
| 
 | 
 | ||||||
|     /* Adds a hyphen where the word breaks, if supported (No Blink) */ |     /* Adds a hyphen where the word breaks, if supported (No Blink) */ | ||||||
|  | |||||||
| @ -364,10 +364,13 @@ | |||||||
|                         padding: 0 !important; |                         padding: 0 !important; | ||||||
|                         li { |                         li { | ||||||
|                             display: block; |                             display: block; | ||||||
|                             padding: 0 .25em; |                             width: 100%; | ||||||
|                             &.active { |                             &.active { | ||||||
|                                 background: #ffffdd; |                                 background: #ffffdd; | ||||||
|                             } |                             } | ||||||
|  |                             &:before { | ||||||
|  |                                 content: ' '; | ||||||
|  |                             } | ||||||
|                         } |                         } | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|  | |||||||
| @ -127,7 +127,7 @@ | |||||||
| 															{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 2))}} | 															{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 2))}} | ||||||
| 																<a class="ui green button add-code-comment add-code-comment-left" data-path="{{$file.Name}}" data-side="left" data-idx="{{$line.LeftIdx}}">+</a> | 																<a class="ui green button add-code-comment add-code-comment-left" data-path="{{$file.Name}}" data-side="left" data-idx="{{$line.LeftIdx}}">+</a> | ||||||
| 															{{end}} | 															{{end}} | ||||||
| 															<pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.LeftIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre> | 															<pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.LeftIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre> | ||||||
| 														</td> | 														</td> | ||||||
| 														<td class="lines-num lines-num-new"> | 														<td class="lines-num lines-num-new"> | ||||||
| 															<span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}">{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}</span> | 															<span rel="{{if $line.RightIdx}}diff-{{Sha1 $file.Name}}R{{$line.RightIdx}}{{end}}">{{if $line.RightIdx}}{{$line.RightIdx}}{{end}}</span> | ||||||
| @ -137,7 +137,7 @@ | |||||||
| 															{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 3))}} | 															{{if and $.SignedUserID $line.CanComment $.PageIsPullFiles (not (eq .GetType 3))}} | ||||||
| 																<a class="ui green button add-code-comment add-code-comment-right" data-path="{{$file.Name}}" data-side="right" data-idx="{{$line.RightIdx}}">+</a> | 																<a class="ui green button add-code-comment add-code-comment-right" data-path="{{$file.Name}}" data-side="right" data-idx="{{$line.RightIdx}}">+</a> | ||||||
| 															{{end}} | 															{{end}} | ||||||
| 															<pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.RightIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre> | 															<pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{if $line.RightIdx}}{{$section.GetComputedInlineDiffFor $line}}{{end}}</code></pre> | ||||||
| 														</td> | 														</td> | ||||||
| 													</tr> | 													</tr> | ||||||
| 													{{if gt (len $line.Comments) 0}} | 													{{if gt (len $line.Comments) 0}} | ||||||
|  | |||||||
| @ -19,7 +19,7 @@ | |||||||
| 				{{if and $.root.SignedUserID $line.CanComment $.root.PageIsPullFiles}} | 				{{if and $.root.SignedUserID $line.CanComment $.root.PageIsPullFiles}} | ||||||
| 					<a class="ui green button add-code-comment add-code-comment-{{if $line.RightIdx}}right{{else}}left{{end}}" data-path="{{$file.Name}}" data-side="{{if $line.RightIdx}}right{{else}}left{{end}}" data-idx="{{if $line.RightIdx}}{{$line.RightIdx}}{{else}}{{$line.LeftIdx}}{{end}}">+</a> | 					<a class="ui green button add-code-comment add-code-comment-{{if $line.RightIdx}}right{{else}}left{{end}}" data-path="{{$file.Name}}" data-side="{{if $line.RightIdx}}right{{else}}left{{end}}" data-idx="{{if $line.RightIdx}}{{$line.RightIdx}}{{else}}{{$line.LeftIdx}}{{end}}">+</a> | ||||||
| 				{{end}} | 				{{end}} | ||||||
| 				<pre><code class="{{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{$section.GetComputedInlineDiffFor $line}}</code></pre> | 				<pre><code class="wrap {{if $highlightClass}}language-{{$highlightClass}}{{else}}nohighlight{{end}}">{{$section.GetComputedInlineDiffFor $line}}</code></pre> | ||||||
| 			</td> | 			</td> | ||||||
| 		</tr> | 		</tr> | ||||||
| 		{{if gt (len $line.Comments) 0}} | 		{{if gt (len $line.Comments) 0}} | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user