Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 072cd6f

Browse files
committedJan 6, 2016
Merge pull request #642 from appirio-tech/css-updates
Css updates
2 parents f84800d + 271bfd6 commit 072cd6f

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed
 

‎app/submissions/submissions.routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
var isPhaseSubmission = _.some(challenge.currentPhases, function(phase) {
4747
if (phase.phaseStatus === 'Open') {
4848
if (phase.phaseType === 'Submission') {
49-
phaseType = 'Submission';
49+
phaseType = 'SUBMISSION';
5050
phaseId = phase.id;
5151
return true;
5252

5353
} else if (phase.phaseType === 'Checkpoint Submission') {
54-
phaseType = 'Checkpoint_Submission';
54+
phaseType = 'CHECKPOINT_SUBMISSION';
5555
phaseId = phase.id;
5656
return true;
5757
}

‎app/submissions/submit-file/submit-file.jade

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
.mobile-redirect__body
55
p Our team is working hard on new features, and file upload currently only works on the web. Please open this page on your desktop if you want to create a submission.
66

7-
a Learn more about formatting your submission file
7+
a(ng-href="TODO: Need Link") Learn more about formatting your submission file
88

9-
a.tc-btn.tc-btn-s(ng-click="'TODO: go back to challenge details'") Back to Challenge Details
9+
a.tc-btn.tc-btn-s(ng-href="https://www.{{DOMAIN}}/challenge-details/{{submissions.challengeId}}/?type={{submissions.track}}") Back to Challenge Details
1010

1111
.panel-body
1212
form.form-blocks(name="submissionForm", role="form", ng-submit="submissionForm.$valid && vm.uploadSubmission()", novalidate)
@@ -112,6 +112,8 @@
112112
.form-block__fields
113113
.fieldsets
114114
ng-form.fieldset(name="font{{$index + 1}}", ng-repeat="font in vm.submissionForm.fonts track by font.id")
115+
label.tc-label Font Source
116+
115117
dropdown(
116118
name="'font-source{{$index + 1}}'",
117119
options="vm.fontList{{$index + 1}}",

‎assets/css/submissions/submit-file.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,15 @@
3434
}
3535

3636
.submitterRank {
37+
width: 100px;
3738
margin-top: 10px;
3839
}
40+
41+
.Select {
42+
max-width: 300px;
43+
margin-bottom: 20px;
44+
}
45+
46+
.tc-error-messages {
47+
max-width: 500px;
48+
}

0 commit comments

Comments
 (0)
This repository has been archived.