mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 11:05:54 +01:00 
			
		
		
		
	fix: #8064, break-word on post-queue
This commit is contained in:
		| @@ -16,7 +16,7 @@ | |||||||
| @import "./manage/registration"; | @import "./manage/registration"; | ||||||
| @import "./manage/users"; | @import "./manage/users"; | ||||||
| @import "./manage/admins-mods"; | @import "./manage/admins-mods"; | ||||||
| @import "./manage/post-queue"; | @import "../post-queue"; | ||||||
| @import "./appearance/customise"; | @import "./appearance/customise"; | ||||||
| @import "./appearance/themes"; | @import "./appearance/themes"; | ||||||
| @import "./extend/plugins"; | @import "./extend/plugins"; | ||||||
|   | |||||||
| @@ -1,8 +0,0 @@ | |||||||
| .posts-list { |  | ||||||
|     .post-content-editable { |  | ||||||
|         textarea { |  | ||||||
|             width: 100%; |  | ||||||
|             height: 300px; |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
| } |  | ||||||
							
								
								
									
										19
									
								
								public/less/post-queue.less
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								public/less/post-queue.less
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | /* | ||||||
|  | 	Post queue page CSS | ||||||
|  | 	  - Originally in ACP | ||||||
|  | 	  - Now available in front-end for global mods as well | ||||||
|  | */ | ||||||
|  | .posts-list { | ||||||
|  |     .topic-title { | ||||||
|  |         word-break: break-word; | ||||||
|  |     } | ||||||
|  |     .post-content { | ||||||
|  |         word-break: break-word; | ||||||
|  |     } | ||||||
|  |     .post-content-editable { | ||||||
|  |         textarea { | ||||||
|  |             width: 100%; | ||||||
|  |             height: 300px; | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -29,6 +29,7 @@ var buildImports = { | |||||||
| 			'@import (inline) "../public/vendor/colorpicker/colorpicker.css";', | 			'@import (inline) "../public/vendor/colorpicker/colorpicker.css";', | ||||||
| 			'@import (inline) "../node_modules/cropperjs/dist/cropper.css";', | 			'@import (inline) "../node_modules/cropperjs/dist/cropper.css";', | ||||||
| 			'@import "../../public/less/flags.less";', | 			'@import "../../public/less/flags.less";', | ||||||
|  | 			'@import "../../public/less/post-queue.less";', | ||||||
| 			'@import "../../public/less/admin/manage/ip-blacklist.less";', | 			'@import "../../public/less/admin/manage/ip-blacklist.less";', | ||||||
| 			'@import "../../public/less/generics.less";', | 			'@import "../../public/less/generics.less";', | ||||||
| 			'@import "../../public/less/mixins.less";', | 			'@import "../../public/less/mixins.less";', | ||||||
|   | |||||||
| @@ -36,7 +36,7 @@ | |||||||
| 							<td class="col-md-2"> | 							<td class="col-md-2"> | ||||||
| 								<a href="{config.relative_path}/category/{posts.category.slug}"><!-- IF posts.categiry.icon --><span class="fa-stack"><i style="color: {posts.category.bgColor};" class="fa fa-circle fa-stack-2x"></i><i style="color: {posts.category.color};" class="fa fa-stack-1x fa-fw {posts.category.icon}"></i></span><!-- ENDIF posts.category.icon --> {posts.category.name}</a> | 								<a href="{config.relative_path}/category/{posts.category.slug}"><!-- IF posts.categiry.icon --><span class="fa-stack"><i style="color: {posts.category.bgColor};" class="fa fa-circle fa-stack-2x"></i><i style="color: {posts.category.color};" class="fa fa-stack-1x fa-fw {posts.category.icon}"></i></span><!-- ENDIF posts.category.icon --> {posts.category.name}</a> | ||||||
| 							</td> | 							</td> | ||||||
| 							<td class="col-md-2"> | 							<td class="col-md-2 topic-title"> | ||||||
| 								<!-- IF posts.data.tid --> | 								<!-- IF posts.data.tid --> | ||||||
| 								<a href="{config.relative_path}/topic/{posts.data.tid}">[[admin/manage/post-queue:reply-to, {posts.topic.title}]]</a> | 								<a href="{config.relative_path}/topic/{posts.data.tid}">[[admin/manage/post-queue:reply-to, {posts.topic.title}]]</a> | ||||||
| 								<!-- ENDIF posts.data.tid --> | 								<!-- ENDIF posts.data.tid --> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user