mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	A "zform" knows how to render data that follows our schema for widget messages with form elements like buttons and choices. This code won't be triggered until a subsequent server-side commit takes widget_content from API callers such as the trivial chat bot and creates submessages for us.
		
			
				
	
	
		
			18 lines
		
	
	
		
			223 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			223 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
.widget-choices ul {
 | 
						|
    padding: 3px;
 | 
						|
}
 | 
						|
 | 
						|
.widget-choices li {
 | 
						|
    padding: 2px;
 | 
						|
    list-style: none;
 | 
						|
}
 | 
						|
 | 
						|
.widget-choices button {
 | 
						|
    font-weight: 700;
 | 
						|
    color: blue;
 | 
						|
}
 | 
						|
 | 
						|
.widget-choices-heading {
 | 
						|
    font-weight: 600;
 | 
						|
}
 |