mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This commit transitions all styles in app.css in the Django pipeline to being compiled by webpack in an app-styles bundle, and renames the various files to now be processed as SCSS. To implement this transition, we move the old CSS file refernces in settings.py and replace them with a bundle declared in `webpack.assets.json` and includedn in the index.html template Tweaked by tabbott to keep the list of files in `app.css` in `webpack.assets.json`, and to preserve the ordering from the old `settings.py`.
		
			
				
	
	
		
			12 lines
		
	
	
		
			188 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			188 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
#typing_notifications {
 | 
						|
    display: none;
 | 
						|
    margin-left: 10px;
 | 
						|
    font-style: italic;
 | 
						|
    color: hsl(0, 0%, 53%);
 | 
						|
}
 | 
						|
 | 
						|
#typing_notification_list {
 | 
						|
    list-style: none;
 | 
						|
    margin: 0;
 | 
						|
}
 |