mirror of
				https://github.com/flarum/core.git
				synced 2025-10-29 06:26:17 +01:00 
			
		
		
		
	* Create CSS only loading indicator * Core mods to fix Loading Indicator usage * Remove extra whitespace * Attrs interface extends ComponentAttrs and is exported * Add doc block about custom styling
		
			
				
	
	
		
			24 lines
		
	
	
		
			357 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			357 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // ------------------------------------
 | |
| // Discussions List
 | |
| 
 | |
| .DiscussionList-discussions {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   list-style-type: none;
 | |
|   position: relative;
 | |
| }
 | |
| .DiscussionList-loadMore {
 | |
|   text-align: center;
 | |
|   margin-top: 10px;
 | |
| 
 | |
|   .LoadingIndicator-container {
 | |
|     height: 46px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @phone {
 | |
|   .DiscussionList {
 | |
|     margin: 0 -15px;
 | |
|   }
 | |
| }
 |