Browse Source

DIV-658: Adding spacing around inline fact sheet question as per designer guidelines

pull/160/head
Benard Ebinu 8 years ago
parent
commit
214c6559fa
4 changed files with 10 additions and 4 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +5
    -0
      edivorce/apps/core/static/css/main.scss
  3. +1
    -1
      edivorce/apps/core/static/js/main.js
  4. +3
    -2
      edivorce/apps/core/templates/question/06_children_income_expenses.html

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 5
- 0
edivorce/apps/core/static/css/main.scss View File

@ -224,6 +224,7 @@ input[type=number]::-webkit-outer-spin-button {
}
}
.table-cell-active {
border: 1px solid #66afe9;
border-radius: 4px;
@ -1032,6 +1033,10 @@ textarea {
max-width: 90%;
margin-bottom: 20px;
}
.fact-sheet-table-inline-question {
margin-bottom: 48px;
}
}
.question-well-border-less {


+ 1
- 1
edivorce/apps/core/static/js/main.js View File

@ -100,7 +100,7 @@ $(function () {
var calcPercentage = function(targetElement, claimantOne, claimantTwo) {
targetElement.val(Math.round(fraction(claimantOne, claimantTwo) * 100));
};
var self = $(this);
var claimantOneElement = $($(this).attr('data-claimant_one_selector'));
var claimantTwoElement = $($(this).attr('data-claimant_two_selector'));


+ 3
- 2
edivorce/apps/core/templates/question/06_children_income_expenses.html View File

@ -493,8 +493,9 @@
</table>
<p>Other undue hardship circumstances
{% input_field type="textarea" name="undue_hardship" value="" maxlength="500" multiple='true' class="fact-sheet-input form-control response-textarea" placeholder="" %}
<p class="fact-sheet-table-inline-question">
Other undue hardship circumstances
{% input_field type="textarea" name="undue_hardship" value="" maxlength="500" multiple='true' class="fact-sheet-input form-control response-textarea" placeholder="" %}
</p>


Loading…
Cancel
Save