Skip to content

Commit 91c651f

Browse files
author
Stephen Miles
committed
Change Communications to Political Groups, and changed submit link css
1 parent 9acafff commit 91c651f

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

web/css/volunteer-toolkit.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/css/volunteer-toolkit.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/index.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<label for='Voting'>Voting</label></li>
5555
<li class='lato'><input type='radio' name='f' value='Phonebank' id='Phonebank'/>
5656
<label for='Phonebank'>Phonebank</label></li>
57-
<li class='lato'><input type='radio' name='f' value='Communication' id='Communication'/>
58-
<label for='Communication'>Communication</label></li>
57+
<li class='lato'><input type='radio' name='f' value='PoliticalGroups' id='PoliticalGroups'/>
58+
<label for='PoliticalGroups'>Political Groups</label></li>
5959
<li class='lato'><input type='radio' name='f' value='Games' id='Games'/>
6060
<label for='Games'>Games</label></li>
6161
</ul>
@@ -143,8 +143,8 @@
143143
return d.voting;
144144
case 'Phonebank':
145145
return d.phonebank;
146-
case 'Communication':
147-
return d.comms;
146+
case 'PoliticalGroups':
147+
return d.polgroups;
148148
case 'Games':
149149
return d.games;
150150
}
@@ -249,7 +249,7 @@ function (d) {
249249
activism: d.activism == "1",
250250
voting: d.voting == "1",
251251
phonebank: d.phonebank == "1",
252-
comms: d.comms == "1",
252+
polgroups: d.polgroups == "1",
253253
games: d.games == "1",
254254
isNew: d.isNew == "1"
255255
};

web/scss/volunteer-toolkit.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55
body {
66
background-color: #e4ecf1;
77
.lato { font-family: 'Lato', sans-serif; }
8-
.neuton { font-family: 'Work Sans', serif; }
8+
.neuton {
9+
font-family: 'Work Sans', serif;
10+
11+
a {
12+
text-decoration: underline;
13+
color: #bc3f41 ;
14+
font-weight: 700;
15+
}
16+
}
917

1018
a { text-decoration: none; color: $blueunity;
1119

0 commit comments

Comments
 (0)