Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/static/core/scss/base/general.scss
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ input[type="radio"] {
gap: $checkbox-gap; // 🟢 This adds space between box and label text
margin-bottom: 0.5rem;
margin-right: 0.5rem;
font-size: 0.95rem;
font-size: 15px;
font-weight: 400;

&::before {
Expand Down
2 changes: 1 addition & 1 deletion core/static/core/scss/components/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ textarea {
width: 100%;
padding: $space-xxs;
border: 1px solid $light-grey;
font-size: 13px;
font-size: 15px;
color: $black;
background-color: $white;
transition: all 0.2s ease;
Expand Down
5 changes: 5 additions & 0 deletions core/static/core/scss/emlo-common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ fieldset:has(#header_abstract) .choices-container .choice-item {
}
}

.is-range-div {
margin-top: 10px;
}

.issues-date-ct {
display: flex;
flex-direction: row;
Expand Down Expand Up @@ -455,6 +459,7 @@ fieldset:has(#header_abstract) .choices-container .choice-item {
position: relative;

.sf-select {
height: 2.5em;
border: 1px solid;
padding: 0.5em;
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion core/templates/core/component/create_update_recref.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
&nbsp; <i><small>(Enter yyyy, mm/yyyy, or dd/mm/yyyy)</small></i>
</div>
</div>
{% endif %}
{% endif %}
6 changes: 4 additions & 2 deletions core/templates/core/component/image_formset.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
<label>{{ form.licence_url.label }}:*</label>
<div>{{ form.licence_url.errors }}{{ form.licence_url }}</div>
</div>
{% include "core/component/common_checkbox.html" with field=form.can_be_displayed name='Can be displayed to public <small>If this box is not ticked, the image will not be displayed in the \'front-end\'.</small>:' is_normal_size=True %}
{% include "core/component/common_checkbox.html" with field=form.can_be_displayed name='Can be displayed to public' is_normal_size=True %}
<small>If this box is not ticked, the image will not be displayed in the 'front-end'.</small>
<div class="flex flex-label">
<label>{{ form.display_order.label }}:</label>
{{ form.display_order.errors }}{{ form.display_order }}
Expand All @@ -105,7 +106,8 @@
</div>

{% if not forloop.first %}
{% include "core/component/common_checkbox.html" with field=form.is_delete name='Delete image from manifestation <small>Tick then click save to delete the connection between this manifestation and this image.</small>:' is_normal_size=True %}
{% include "core/component/common_checkbox.html" with field=form.is_delete name='Delete image from manifestation' is_normal_size=True %}
<small>Tick then click Save to remove this image from the manifestation.</small>
{% endif %}

</fieldset>
Expand Down
12 changes: 3 additions & 9 deletions person/templates/person/component/issues_with_date.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,15 @@
<div class="issues-date-ct">
<div class="issues-date-item">
{{ inferred }}
<label for="{{ inferred.id_for_label }}">
<small> Date is inferred </small>
</label>
<label for="{{ inferred.id_for_label }}">Date is inferred</label>
</div>
<div class="issues-date-item">
{{ uncertain }}
<label for="{{ uncertain.id_for_label }}">
<small> Date is uncertain </small>
</label>
<label for="{{ uncertain.id_for_label }}">Date is uncertain</label>
</div>
<div class="issues-date-item">
{{ approx }}
<label for="{{ approx.id_for_label }}">
<small> Date is approximate </small>
</label>
<label for="{{ approx.id_for_label }}">Date is approximate</label>
</div>
</div>
</div>
16 changes: 9 additions & 7 deletions work/templates/work/component/manif_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,19 +164,21 @@
<fieldset>
<legend id="header_language" class="toc-item">Language of manifestation</legend>
{{ manif_form.manifestation_is_translation }}
<label for="{{ manif_form.manifestation_is_translation.id_for_label }}"> Manifestation is translation
<small class="fw-200 type-6">
(It is not necessary to enter language, incipit and explicit of manifestation if they are the same as those of
the original work.)
</small>
</label>
<br/>
<label for="{{ manif_form.manifestation_is_translation.id_for_label }}"> Manifestation is translation</label><br/>
<small>
It is not necessary to enter language of manifestation if they are the same as those of
the original work.
</small><br/>
{% include "core/component/lang_section.html" with lang_formset=edit_lang_formset new_lang_form=new_lang_form %}

</fieldset>

<fieldset>
<legend id="header_incipit" class="toc-item">Incipit and explicit</legend>
<small>
It is not necessary to enter incipit and explicit of manifestation if they are the same as those of
the original work.
</small><br/><br/>

<div class="multi_rel_recref_container">
<label>Manifestation incipit: </label>
Expand Down
4 changes: 2 additions & 2 deletions work/templates/work/component/place_fieldset.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

{% include "core/component/recref.html" with recref_type='location' id_field=selected_id label=cap_name|add:' (standard format):' placeholder='Please select or create '|add:name|add:'.' %}

{% include "core/component/common_checkbox.html" with field=inferred name=cap_name|add:' inferred' %}
{% include "core/component/common_checkbox.html" with field=inferred name=cap_name|add:' inferred' is_normal_size=True %}

{% include "core/component/common_checkbox.html" with field=uncertain name=cap_name|add:' uncertain' %}
{% include "core/component/common_checkbox.html" with field=uncertain name=cap_name|add:' uncertain' is_normal_size=True %}

{% include "core/component/comment_publication_formset.html" with comment_formset=comment_formset comment_title='Notes on '|add:name header_id=header_id|add:'_comment' header_class='toc-sub-item' %}
</fieldset>
Expand Down
8 changes: 4 additions & 4 deletions work/templates/work/corr_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

<div class="row-no-margin">
<div class="margin-right">
{% include "core/component/common_checkbox.html" with field=corr_form.authors_inferred name='Authors/senders inferred' %}
{% include "core/component/common_checkbox.html" with field=corr_form.authors_inferred name='Authors/senders inferred' is_normal_size=True %}
</div>


<div class="margin-right">
{% include "core/component/common_checkbox.html" with field=corr_form.authors_uncertain name='Authors/senders uncertain' %}
{% include "core/component/common_checkbox.html" with field=corr_form.authors_uncertain name='Authors/senders uncertain' is_normal_size=True %}
</div>
</div>
</div>
Expand All @@ -41,10 +41,10 @@

<div class="row-no-margin">
<div class="margin-right">
{% include "core/component/common_checkbox.html" with field=corr_form.addressees_inferred name='Addressees inferred' %}
{% include "core/component/common_checkbox.html" with field=corr_form.addressees_inferred name='Addressees inferred' is_normal_size=True %}
</div>
<div class="margin-right">
{% include "core/component/common_checkbox.html" with field=corr_form.addressees_uncertain name='Addressees uncertain' %}
{% include "core/component/common_checkbox.html" with field=corr_form.addressees_uncertain name='Addressees uncertain' is_normal_size=True %}
</div>
</div>
</div>
Expand Down