Skip to content
Snippets Groups Projects
Commit 7f081188 authored by Julian's avatar Julian
Browse files

Replace h4 inside personal note filter modal with a figcaption

parent aa977a07
No related branches found
No related tags found
1 merge request!203Resolve "Use correct semantic html elements"
...@@ -93,3 +93,9 @@ td.material-icons { ...@@ -93,3 +93,9 @@ td.material-icons {
.overflow-x-scroll { .overflow-x-scroll {
overflow-x: scroll; overflow-x: scroll;
} }
figure.modal-content figcaption {
font-weight: 300;
font-size: 2.28rem;
line-height: 110%;
}
...@@ -64,10 +64,10 @@ ...@@ -64,10 +64,10 @@
<div class="col s12" id="overview"> <div class="col s12" id="overview">
<h5>{% trans "Relevant personal notes" %}</h5> <h5>{% trans "Relevant personal notes" %}</h5>
<form class="modal" id="filter-modal"> <form class="modal" id="filter-modal">
<div class="modal-content"> <figure class="modal-content">
<h4>{% trans "Filter personal notes" %}</h4> <figcaption>{% trans "Filter personal notes" %}</figcaption>
{% form form=personal_note_filter_form %}{% endform %} {% form form=personal_note_filter_form %}{% endform %}
</div> </figure>
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn-flat secondary-color-text waves-effect waves-ripple" id="remove-filters"> <button type="button" class="btn-flat secondary-color-text waves-effect waves-ripple" id="remove-filters">
<i class="material-icons left">clear</i>{% trans "Clear all filters" %} <i class="material-icons left">clear</i>{% trans "Clear all filters" %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment