|
1 | 1 | {{nav-bar}}
|
2 | 2 |
|
3 |
| -<div class='metrics-bar-trigger' {{action (route-action 'toggleMetricsDrawerOpenState')}}> |
| 3 | +<div class='metrics-bar-trigger hover-glow' {{action (route-action 'toggleMetricsDrawerOpenState')}}> |
4 | 4 | {{#if metricsDrawerOpen}}
|
5 | 5 | Close
|
6 | 6 | {{else}}
|
|
26 | 26 | </p>
|
27 | 27 |
|
28 | 28 | <div class='brick col col-12 sm-col-6 py1 center {{if (eq studio.Modes.MOCK studio.mode) "active"}}'>
|
29 |
| - <div class='inner p2 border-medium-gray' {{action (route-action 'setMode' studio.Modes.MOCK)}}> |
| 29 | + <div class='inner p2 border-medium-gray hover-glow' {{action (route-action 'setMode' studio.Modes.MOCK)}}> |
30 | 30 | <h3 class='serif lighter'>Mock Mode</h3>
|
31 | 31 | <p>Play with the calculator to understand how it works!</p>
|
32 | 32 | </div>
|
33 | 33 | </div>
|
34 | 34 |
|
35 | 35 | <div class='brick col col-12 sm-col-6 py1 center {{if (eq studio.Modes.REAL studio.mode) "active"}}'>
|
36 |
| - <div class='inner p2 border-medium-gray' {{action (route-action 'setMode' studio.Modes.REAL)}}> |
| 36 | + <div class='inner p2 border-medium-gray hover-glow' {{action (route-action 'setMode' studio.Modes.REAL)}}> |
37 | 37 | <h3 class='serif lighter'>Real World Mode</h3>
|
38 | 38 | <p>Actually calculate profit share at the end of the year</p>
|
39 | 39 | </div>
|
|
67 | 67 | </p>
|
68 | 68 | {{#each studio.scenarios as |scenario|}}
|
69 | 69 | <div class='brick col col-12 sm-col-6 py1 center {{if (eq scenario studio.selectedScenario) "active"}}'>
|
70 |
| - <div class='inner p2 border-medium-gray' {{action (route-action 'applyScenario' scenario)}}> |
| 70 | + <div class='inner p2 border-medium-gray hover-glow' {{action (route-action 'applyScenario' scenario)}}> |
71 | 71 | <h3 class='serif lighter'>{{scenario.title}}</h3>
|
72 | 72 | <p>{{scenario.description}}</p>
|
73 | 73 | </div>
|
|
90 | 90 | {{#each studio.technologists as |technologist|}}
|
91 | 91 | <div class='technologist col col-12'>
|
92 | 92 | <div class='inner py1 clearfix flex'>
|
93 |
| - <div class='col col-2 flex items-center'> |
| 93 | + <div class='col col-2 flex items-center pr1'> |
94 | 94 | {{#if (eq editing technologist)}}
|
95 | 95 | {{input value=technologist.name class='inline py1'}}
|
96 | 96 | {{else}}
|
97 | 97 | <h3>{{technologist.name}}</h3>
|
98 | 98 | {{/if}}
|
99 | 99 | </div>
|
100 |
| - <div class='months col col-4 center flex items-center'> |
| 100 | + <div class='months col col-4 center flex items-center pr1'> |
101 | 101 | {{#if (eq editing technologist)}}
|
102 | 102 | <input
|
103 | 103 | value={{technologist.monthsAtSanctu}}
|
|
109 | 109 | <h3>{{technologist.monthsAtSanctu}} Months / PSU</h3>
|
110 | 110 | {{/if}}
|
111 | 111 | </div>
|
112 |
| - <div class='salary col col-3 sm-col-4 center flex items-center'> |
| 112 | + <div class='salary col col-3 sm-col-4 center flex items-center pr1'> |
113 | 113 | {{#if (eq editing technologist)}}
|
114 | 114 | <input
|
115 | 115 | value={{technologist.salary}}
|
|
121 | 121 | <h3>{{format-money technologist.salary}}</h3>
|
122 | 122 | {{/if}}
|
123 | 123 | </div>
|
124 |
| - <div class='profit col col-3 sm-col-4 flex items-center'> |
| 124 | + <div class='profit col col-3 sm-col-4 flex items-center pr1'> |
125 | 125 | <h3 class='dark-navy'>{{format-money technologist.profitShare}}</h3>
|
126 | 126 | </div>
|
127 | 127 |
|
128 |
| - <div class='col col-1 caps center xs-hide'> |
| 128 | + <div class='col col-1 center xs-hide hover-fade'> |
129 | 129 | {{#if (eq editing technologist)}}
|
130 |
| - <h6 {{action (route-action 'stopEditingTeamMember')}}>OK</h6> |
| 130 | + <h5 {{action (route-action 'stopEditingTeamMember')}}>OK</h5> |
131 | 131 | {{else}}
|
132 |
| - <h6 {{action (route-action 'editTeamMember' technologist)}}>Edit</h6> |
| 132 | + <h5 {{action (route-action 'editTeamMember' technologist)}}>Edit</h5> |
133 | 133 | {{/if}}
|
134 | 134 | </div>
|
135 |
| - <div class='col col-1 caps right-align xs-hide'> |
136 |
| - <h6 {{action (route-action 'removeTeamMember' technologist)}}>Remove</h6> |
| 135 | + <div class='col col-1 right-align xs-hide hover-fade'> |
| 136 | + <h5 {{action (route-action 'removeTeamMember' technologist)}}>Remove</h5> |
137 | 137 | </div>
|
138 | 138 | </div>
|
139 | 139 | </div>
|
|
145 | 145 | </div>
|
146 | 146 | {{/each}}
|
147 | 147 | <div class='col col-12 center py1 xs-hide' {{action (route-action 'addTeamMember')}}>
|
148 |
| - <div class='border-medium-gray inner py1 px3 clearfix center'> |
149 |
| - <h3 class='white'>+ Add Team Member</h3> |
| 148 | + <div class='border-medium-gray inner py1 px3 clearfix center hover-glow'> |
| 149 | + <h3>+ Add Team Member</h3> |
150 | 150 | </div>
|
151 | 151 | </div>
|
152 | 152 | </div>
|
|
0 commit comments