diff --git a/core/static/core/scss/base/general.scss b/core/static/core/scss/base/general.scss
index ce20cef0..c1d3a58d 100644
--- a/core/static/core/scss/base/general.scss
+++ b/core/static/core/scss/base/general.scss
@@ -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 {
diff --git a/core/static/core/scss/components/forms.scss b/core/static/core/scss/components/forms.scss
index 92148b52..ce209abf 100644
--- a/core/static/core/scss/components/forms.scss
+++ b/core/static/core/scss/components/forms.scss
@@ -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;
diff --git a/core/static/core/scss/emlo-common.scss b/core/static/core/scss/emlo-common.scss
index 34d28736..05b38cf4 100644
--- a/core/static/core/scss/emlo-common.scss
+++ b/core/static/core/scss/emlo-common.scss
@@ -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;
@@ -486,6 +490,7 @@ fieldset:has(#header_abstract) .choices-container .choice-item {
position: relative;
.sf-select {
+ height: 2.5em;
border: 1px solid;
padding: 0.5em;
cursor: pointer;
diff --git a/core/templates/core/component/create_update_recref.html b/core/templates/core/component/create_update_recref.html
index f2b3511c..7fc02101 100644
--- a/core/templates/core/component/create_update_recref.html
+++ b/core/templates/core/component/create_update_recref.html
@@ -64,4 +64,4 @@
(Enter yyyy, mm/yyyy, or dd/mm/yyyy)
-{% endif %}
\ No newline at end of file
+{% endif %}
diff --git a/core/templates/core/component/image_formset.html b/core/templates/core/component/image_formset.html
index 56d3957e..c0296bf8 100644
--- a/core/templates/core/component/image_formset.html
+++ b/core/templates/core/component/image_formset.html
@@ -94,7 +94,8 @@
{{ form.licence_url.label }}:*
{{ form.licence_url.errors }}{{ form.licence_url }}
- {% include "core/component/common_checkbox.html" with field=form.can_be_displayed name='Can be displayed to public (If this box is not ticked, the image will not be displayed in the \'front-end\'.) ' 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 %}
+ If this box is not ticked, the image will not be displayed in the 'front-end'.
{{ form.display_order.label }}:
{{ form.display_order.errors }}{{ form.display_order }}
@@ -104,7 +105,8 @@
{% if not forloop.first %}
- {% include "core/component/common_checkbox.html" with field=form.is_delete name='Delete image from manifestation (Tick then click Save to remove this image from the manifestation.) ' is_normal_size=True %}
+ {% include "core/component/common_checkbox.html" with field=form.is_delete name='Delete image from manifestation' is_normal_size=True %}
+ Tick then click Save to remove this image from the manifestation.
{% endif %}
diff --git a/person/templates/person/component/issues_with_date.html b/person/templates/person/component/issues_with_date.html
index 72ccc858..4a79d11c 100644
--- a/person/templates/person/component/issues_with_date.html
+++ b/person/templates/person/component/issues_with_date.html
@@ -3,21 +3,15 @@
{{ inferred }}
-
- Date is inferred
-
+ Date is inferred
{{ uncertain }}
-
- Date is uncertain
-
+ Date is uncertain
{{ approx }}
-
- Date is approximate
-
+ Date is approximate
diff --git a/work/templates/work/component/manif_form.html b/work/templates/work/component/manif_form.html
index 5a311b69..b6349f64 100644
--- a/work/templates/work/component/manif_form.html
+++ b/work/templates/work/component/manif_form.html
@@ -167,19 +167,21 @@
{{ manif_form.manifestation_is_translation }}
- Manifestation is translation
-
- (It is not necessary to enter language, incipit and explicit of manifestation if they are the same as those of
- the original work.)
-
-
-
+ Manifestation is translation
+
+ It is not necessary to enter language of manifestation if they are the same as those of
+ the original work.
+
{% include "core/component/lang_section.html" with lang_formset=edit_lang_formset new_lang_form=new_lang_form %}
+
+ It is not necessary to enter incipit and explicit of manifestation if they are the same as those of
+ the original work.
+
Manifestation incipit:
diff --git a/work/templates/work/component/place_fieldset.html b/work/templates/work/component/place_fieldset.html
index 598228d0..8f23792e 100644
--- a/work/templates/work/component/place_fieldset.html
+++ b/work/templates/work/component/place_fieldset.html
@@ -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' %}
diff --git a/work/templates/work/corr_form.html b/work/templates/work/corr_form.html
index eb318b69..3d6586ff 100644
--- a/work/templates/work/corr_form.html
+++ b/work/templates/work/corr_form.html
@@ -14,12 +14,12 @@
- {% 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 %}
- {% 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 %}
@@ -41,10 +41,10 @@
- {% 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 %}
- {% 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 %}