mirror of
				https://github.com/Foundry376/Mailspring.git
				synced 2025-10-30 07:57:12 +08:00 
			
		
		
		
	Summary: Adds a new visual theme picker to the menu that allows users to select different themes based on color palettes and then change their themes live. Test Plan: Test included. Reviewers: evan, bengotow Reviewed By: evan, bengotow Differential Revision: https://phab.nylas.com/D2669
		
			
				
	
	
		
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			443 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			443 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @import "ui-variables";
 | |
| 
 | |
| .nylas-modal-container {
 | |
|   position: absolute;
 | |
|   z-index: 40;
 | |
| 
 | |
|   .modal {
 | |
|     position: absolute;
 | |
|     background-color: @background-primary;
 | |
|     border-radius: @border-radius-base;
 | |
|     box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.15), 0 -0.5px 0 rgba(0, 0, 0, 0.15), 0.5px 0 0 rgba(0, 0, 0, 0.15), -0.5px 0 0 rgba(0, 0, 0, 0.15), 0 4px 7px rgba(0,0,0,0.15);
 | |
|   }
 | |
| }
 | |
| 
 | |
| body.platform-win32 {
 | |
|   .modal {
 | |
|     border-radius: 0;
 | |
|   }
 | |
| } |