mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	postcss-preset-env transpiles this back as necessary. (It does a better job than we did, in fact: we had several four-argument hsl() calls that should have been hsla().) Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			971 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			971 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
#message-edit-history {
 | 
						|
    .message_top_line {
 | 
						|
        float: right;
 | 
						|
    }
 | 
						|
 | 
						|
    .date_row > span {
 | 
						|
        display: flex;
 | 
						|
        align-items: center;
 | 
						|
        white-space: nowrap;
 | 
						|
 | 
						|
        &::before,
 | 
						|
        &::after {
 | 
						|
            width: 100%;
 | 
						|
            margin: 0;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    .message_time {
 | 
						|
        position: static;
 | 
						|
    }
 | 
						|
 | 
						|
    .message_author {
 | 
						|
        position: relative;
 | 
						|
    }
 | 
						|
 | 
						|
    .author_details {
 | 
						|
        display: block;
 | 
						|
        font-size: 12px;
 | 
						|
        padding: 1px;
 | 
						|
        text-align: right;
 | 
						|
    }
 | 
						|
 | 
						|
    .messagebox-content {
 | 
						|
        padding: 0 10px;
 | 
						|
    }
 | 
						|
 | 
						|
    .message_edit_history_content {
 | 
						|
        .highlight_text_inserted {
 | 
						|
            color: hsl(122deg 72% 30%);
 | 
						|
            background-color: hsl(120deg 64% 95%);
 | 
						|
        }
 | 
						|
 | 
						|
        .highlight_text_deleted {
 | 
						|
            color: hsl(0deg 100% 50%);
 | 
						|
            background-color: hsl(7deg 90% 92%);
 | 
						|
            text-decoration: line-through;
 | 
						|
            word-break: break-all;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |