forked from jkyuusai/feelWheel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix jkyuusai#13 make tracking buttons vertically aligned block buttons
Collapse feelingItem into feelingSection file Add panel to tracking section to give more structure to view Adjust breadcrumb spacing to account for use of large buttons Generalise styles for emotions so colors can be used throughout app Activate bootstrap panels component Activate bootstrap component-animations so mobile displays correctly
- Loading branch information
Showing
9 changed files
with
49 additions
and
50 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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<template name="currentFeelings"> | ||
<div class="btn-group btn-breadcrumb"> | ||
<a href="#" class="btn btn-default reset"><i class="glyphicon glyphicon-user"></i></a> | ||
<a href="#" class="btn btn-info btn-lg reset"><i class="glyphicon glyphicon-user"></i></a> | ||
{{#each currentFeelings}} | ||
{{> currentFeeling}} | ||
{{/each}} | ||
</div> | ||
</template> | ||
|
||
<template name="currentFeeling"> | ||
<a id="{{name}}" href="#" class="btn btn-default">{{upperName}}</a> | ||
<a id="{{name}}" href="#" class="btn btn-info btn-lg">{{upperName}}</a> | ||
</template> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 +1,14 @@ | ||
<template name="feelingSection"> | ||
<div class="feelings btn-group btn-lg {{justifyIfNotPhone}}" data-toggle="buttons"> | ||
<div class="feelings"> | ||
{{#each feelings}} | ||
{{> feelingItem}} | ||
{{/each}} | ||
</div> | ||
{{/each}} | ||
</div> | ||
{{#unless feelings}} | ||
<button type="submit" class="btn btn-primary btn-lg btn-block">Track Feelings</button> | ||
{{/unless}} | ||
</template> | ||
|
||
<template name="feelingItem"> | ||
<button type="button" class="btn btn-lg btn-block select-feeling" id="{{.}}">{{name}} </button> | ||
</template> |
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
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
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