Formatting updates

This commit is contained in:
Jennifer Siegfried 2016-08-04 16:25:12 -06:00
parent 1566edec4c
commit 53095028be
7 changed files with 28 additions and 11 deletions

View File

@ -53,7 +53,8 @@ button.tertiary-btn {
display: none; display: none;
} }
.button-cancel { .button-cancel,
.tertiary-btn.button-cancel {
color: #ef0734; color: #ef0734;
border: 1px solid #ef0734; border: 1px solid #ef0734;
display: none; display: none;
@ -78,6 +79,10 @@ button.tertiary-btn {
cursor: default; cursor: default;
} }
.button-wrap {
margin-top: 3rem;
}
// JS-enabled styles // JS-enabled styles
html.no-js { html.no-js {
.tertiary-btn.button-edit { .tertiary-btn.button-edit {

View File

@ -177,6 +177,13 @@ textarea {
&:not(:disabled) + label:before { &:not(:disabled) + label:before {
background-color: white; background-color: white;
} }
&:disabled {
+ label {
&:after {
background-color: #888;
}
}
}
} }
[type="checkbox"] { [type="checkbox"] {

View File

@ -2,9 +2,8 @@
text-align: center; text-align: center;
background-color: $accent-color-1; background-color: $accent-color-1;
color: #fff; color: #fff;
padding-top: .5rem; margin: 2rem 0 .5rem;
padding-bottom: .5rem; padding: .5rem 0;
margin-bottom: .5rem;
} }
.error-header { .error-header {

View File

@ -29,6 +29,10 @@
} }
.answer-container { .answer-container {
padding:2rem 0; padding:2rem 0;
textarea:not(:disabled) {
background-color: white;
}
} }
} }
} }

View File

@ -1,10 +1,10 @@
<main class="styleguide_tpl"> <main class="styleguide_tpl">
<p> <p>
Your test results have been saved. You can visit again later with your candidate ID to complete Your test results have been saved. You can visit again later with your Test ID to complete
the test starting from where you left off. the test starting from where you left off.
</p> </p>
<div class="btn-return"> <div class="button-wrap">
<a class="btn primary-btn" href="<%= question_path %>">Return to Test</a> <a class="btn primary-btn" href="<%= question_path %>">Return to test</a>
</div> </div>
</main> </main>

View File

@ -5,6 +5,8 @@
Once you're done, hit the button at the bottom of the page to submit your answers. Once you're done, hit the button at the bottom of the page to submit your answers.
</p> </p>
<hr>
<% @quiz.each do |question| %> <% @quiz.each do |question| %>
<%= form_for(:answer, url: post_answer_path(answer_id: question.answer_id), html:{class: 'summary-form'}) do |form| %> <%= form_for(:answer, url: post_answer_path(answer_id: question.answer_id), html:{class: 'summary-form'}) do |form| %>
<article class="answer-sec <%= question.input_type %>-type" data-qid="<%= question.question_id %>"> <article class="answer-sec <%= question.input_type %>-type" data-qid="<%= question.question_id %>">

View File

@ -20,7 +20,7 @@
answers, we will review your assessment and your recruiter will be in touch. answers, we will review your assessment and your recruiter will be in touch.
</p> </p>
<%= link_to question_path do %> <div class="button-wrap">
<button type="submit">Begin</button> <%= link_to "Begin", question_path, {class: 'btn'} %>
<% end %> </div>
</main> </main>