Skip to content

Commit aa2f78f

Browse files
committed
Revert "Simplify and unify markup on the pages by propagating "content" identifier."
This reverts commit f0d2265. We can't use #content together with .col-sm-12 because they produce horizontal scroll. I don't know how to fix it, so decided to just revert the changes. Fix #797 [ci skip]
1 parent b713447 commit aa2f78f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/webapp/WEB-INF/views/collection/info.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
</div>
6161
</div>
6262
<div class="row">
63-
<div id="content" class="col-sm-12">
63+
<div class="col-sm-12">
6464

65-
<h3 th:text="#{t_collection_of(${ownerName})}">
65+
<h3 class="text-center" th:text="#{t_collection_of(${ownerName})}">
6666
John Doe's collection
6767
</h3>
6868

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
</div>
6565
</div>
6666
<div class="row">
67-
<div id="content" class="col-sm-12" th:with="search_results=#{t_search_results}">
68-
<h3 th:text="${#strings.capitalize(search_results)}">
67+
<div class="col-sm-12" th:with="search_results=#{t_search_results}">
68+
<h3 class="text-center" th:text="${#strings.capitalize(search_results)}">
6969
Search results
7070
</h3>
7171

0 commit comments

Comments
 (0)