-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20f451c
commit 0c4692b
Showing
3 changed files
with
28 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,11 @@ | |
} | ||
} | ||
} | ||
|
||
a { | ||
display: block; | ||
margin: auto; | ||
} | ||
} | ||
|
||
.email-option { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
<template name='entrySocial'> | ||
<button class="btn" id="entry-{{this}}" name="{{this}}"> | ||
{{#if unconfigured}} | ||
<i class="fa fa-{{icon}}"></i> {{t9n "configure"}} {{capitalize this}} | ||
{{else}} | ||
<i class="fa fa-{{icon}}"></i> {{buttonText}} {{t9n "with"}} {{capitalize this}} | ||
{{/if}} | ||
</button> | ||
{{#if isPrimaryService this}} | ||
<button class="btn" id="entry-{{this}}" name="{{this}}"> | ||
{{#if unconfigured}} | ||
<i class="fa fa-{{icon}}"></i> {{t9n "configure"}} {{capitalize this}} | ||
{{else}} | ||
<i class="fa fa-{{icon}}"></i> {{buttonText}} {{t9n "with"}} {{capitalize this}} | ||
{{/if}} | ||
</button> | ||
{{else}} | ||
<a class="btn" id="entry-{{this}}" name="{{this}}"> | ||
{{#if unconfigured}} | ||
<i class="fa fa-{{icon}}"></i> {{t9n "configure"}} {{capitalize this}} | ||
{{else}} | ||
<i class="fa fa-{{icon}}"></i> {{buttonText}} {{t9n "with"}} {{capitalize this}} | ||
{{/if}} | ||
</a> | ||
{{/if}} | ||
</template> |