Skip to content

Commit 6bda76f

Browse files
committed
refactor: rename CSS class "required_field" to "required-field-sign"
[skip ci]
1 parent b44fe3a commit 6bda76f

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

src/main/java/ru/mystamps/web/feature/site/ResourceUrl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public final class ResourceUrl {
3232
public static final String STATIC_RESOURCES_URL = "https://stamps.filezz.ru";
3333

3434
// MUST be updated when any of our resources were modified
35-
public static final String RESOURCES_VERSION = "v0.4.5.2";
35+
public static final String RESOURCES_VERSION = "v0.4.5.3";
3636

3737
// CheckStyle: ignore LineLength for next 16 lines
3838
private static final String CATALOG_UTILS_JS = "/public/js/" + RESOURCES_VERSION + "/CatalogUtils.min.js";

src/main/webapp/WEB-INF/static/styles/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ footer {
6969
color: #8b0000;
7070
}
7171

72-
.required_field {
72+
.required-field-sign {
7373
color: #8b0000;
7474
}
7575

src/main/webapp/WEB-INF/views/account/activate.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ <h3 th:text="#{t_activation_on_site}">
6868

6969
<!--/*/ <th:block sec:authorize="isAnonymous()"> /*/-->
7070
<div class="hint text-center">
71-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
71+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7272
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
73-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
73+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7474
</span>
7575
</small>
7676
</div>

src/main/webapp/WEB-INF/views/account/auth.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ <h3 th:text="#{t_authentication_on_site}">
6868

6969
<!--/*/ <th:block sec:authorize="isAnonymous()" th:with="exceptionOccurred=${session.SPRING_SECURITY_LAST_EXCEPTION != null}"> /*/-->
7070
<div class="hint text-center">
71-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
71+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7272
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
73-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
73+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7474
</span>
7575
</small>
7676
</div>

src/main/webapp/WEB-INF/views/account/register.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ <h3 th:text="#{t_registration_on_site}">
6868

6969
<!--/*/ <th:block sec:authorize="isAnonymous()"> /*/-->
7070
<div class="hint text-center">
71-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
71+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7272
<span class="hint_item" th:utext="#{t_if_you_already_registered(@{${AUTHENTICATION_PAGE}})}">
7373
If you already registered then you should pass <a href="auth.html">authentication</a>.
7474
</span>
7575
<br />
7676
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
77-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
77+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7878
</span>
7979
</small>
8080
</div>

src/main/webapp/WEB-INF/views/category/add.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ <h3 th:text="${#strings.capitalize(create_category)}">
6666
</h3>
6767

6868
<div class="hint text-center">
69-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
69+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7070
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
71-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
71+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7272
</span>
7373
</small>
7474
</div>

src/main/webapp/WEB-INF/views/country/add.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ <h3 th:text="${#strings.capitalize(add_country)}">
6666
</h3>
6767

6868
<div class="hint text-center">
69-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
69+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7070
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
71-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
71+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7272
</span>
7373
</small>
7474
</div>

src/main/webapp/WEB-INF/views/participant/add.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ <h3 th:text="${#strings.capitalize(header)}">
6666
</h3>
6767

6868
<div class="hint text-center">
69-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
69+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7070
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
71-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
71+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7272
</span>
7373
</small>
7474
</div>

src/main/webapp/WEB-INF/views/series/add.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ <h3 th:text="${#strings.capitalize(add_series)}">
7070
</h3>
7171

7272
<div class="hint text-center">
73-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
73+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7474
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
75-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
75+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7676
</span>
7777
</small>
7878
</div>

src/main/webapp/WEB-INF/views/series/import/info.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ <h3 th:text="#{t_gathered_data}">
106106
</h3>
107107

108108
<div class="hint text-center" th:unless="${disabled}">
109-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
109+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
110110
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
111-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
111+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
112112
</span>
113113
</small>
114114
</div>

src/main/webapp/WEB-INF/views/series/import/request.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ <h3 th:text="${#strings.capitalize(header)}">
6666
</h3>
6767

6868
<div class="hint text-center">
69-
<small th:with="redAsterisk='&lt;span class=&quot;required_field&quot;&gt;*&lt;/span&gt;'">
69+
<small th:with="redAsterisk='&lt;span class=&quot;required-field-sign&quot;&gt;*&lt;/span&gt;'">
7070
<span class="hint_item" th:utext="#{t_required_fields_legend(${redAsterisk})}">
71-
All fields marked by an asterisk (<span class="required_field">*</span>) must be filled
71+
All fields marked by an asterisk (<span class="required-field-sign">*</span>) must be filled
7272
</span>
7373
</small>
7474
</div>

0 commit comments

Comments
 (0)