mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			496 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			496 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
#scheduled_messages_overlay_container {
 | 
						|
    .scheduled-messages-loading {
 | 
						|
        margin-top: 10px;
 | 
						|
        display: grid;
 | 
						|
 | 
						|
        > * {
 | 
						|
            grid-row-start: 1;
 | 
						|
            grid-column-start: 1;
 | 
						|
            margin: auto;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    .no-overlay-messages {
 | 
						|
        display: none;
 | 
						|
 | 
						|
        &:only-child {
 | 
						|
            display: block;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#scheduled_message_indicator {
 | 
						|
    display: block;
 | 
						|
    margin-left: 10px;
 | 
						|
    font-style: italic;
 | 
						|
    color: hsl(0deg 0% 53%);
 | 
						|
}
 |