* Style and template tweaks - Get red and green buttons on arc green closer to base theme - EasyMDE adjustments, toolbar and focus border - Fix header on 404 repo page - Tweaks to frontpage search, add 'Create Repo' button - Fix misaligned box headers - Fix pagination on arc-green - Fix background and footer on explore and repo search * better fix for header button alignment * add label hover for reactions
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			456 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			456 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{if .ctx.IsSigned}}
 | 
						|
<div class="item action ui pointing select-reaction dropdown" data-action-url="{{ .ActionURL }}">
 | 
						|
	<a class="add-reaction">
 | 
						|
		{{svg "octicon-smiley"}}
 | 
						|
	</a>
 | 
						|
	<div class="menu">
 | 
						|
		<div class="header">{{ .ctx.i18n.Tr "repo.pick_reaction"}}</div>
 | 
						|
		<div class="divider"></div>
 | 
						|
		{{range $value := AllowedReactions}}
 | 
						|
			<div class="item reaction" data-content="{{$value}}">{{ReactionToEmoji $value}}</div>
 | 
						|
		{{end}}
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{end}}
 |