mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Switch checkbox styling to new style in #invite.
The checkboxes in invite are now converted in this commit to the new style.
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							3ff55034fe
						
					
				
				
					commit
					f599b517d3
				
			@@ -1,12 +1,15 @@
 | 
			
		||||
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}}
 | 
			
		||||
<a href="#" class="invite_check_all_button">{{t "Check all" }}</a> |
 | 
			
		||||
<a href="#" class="invite_uncheck_all_button">{{t "Uncheck all" }}</a>
 | 
			
		||||
<div id="invite-stream-checkboxes">
 | 
			
		||||
<div id="invite-stream-checkboxes" class="new-style">
 | 
			
		||||
    {{#each streams}}
 | 
			
		||||
 | 
			
		||||
    <label class="checkbox">
 | 
			
		||||
        <input type="checkbox" name="stream" value="{{name}}"
 | 
			
		||||
               {{#if default_stream}}checked="checked"{{/if}} /> {{name}}
 | 
			
		||||
               {{#if default_stream}}checked="checked"{{/if}} />
 | 
			
		||||
        <span></span>
 | 
			
		||||
        {{#if invite_only}}<i class="icon-vector-lock"></i>{{/if}}
 | 
			
		||||
        <label class="inline-block">{{name}}</label>
 | 
			
		||||
    </label>
 | 
			
		||||
    {{/each}}
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user