Skip to content

Commit 786a59f

Browse files
committed
refactor: skip image css styling
#2273
1 parent ab26e7b commit 786a59f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/webapp/WEB-INF/jsp/content/storybook/create-from-epub.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<c:set var="coverImageUrl" value="${existingStoryBook.coverImage.url}" />
1818
</c:if>
1919
<a class="editLink" href="<spring:url value='/content/storybook/edit/${existingStoryBook.id}' />">
20-
<div class="card-image checksumGitHub-${existingStoryBook.coverImage.checksumGitHub != null}" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
20+
<div class="card-image" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
2121
<span class="card-title"><c:out value="${existingStoryBook.title}" /></span>
2222
</div>
2323
</a>

src/main/webapp/WEB-INF/jsp/content/storybook/create.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<c:set var="coverImageUrl" value="${existingStoryBook.coverImage.url}" />
1818
</c:if>
1919
<a class="editLink" href="<spring:url value='/content/storybook/edit/${existingStoryBook.id}' />">
20-
<div class="card-image checksumGitHub-${existingStoryBook.coverImage.checksumGitHub != null}" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
20+
<div class="card-image" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
2121
<span class="card-title"><c:out value="${existingStoryBook.title}" /></span>
2222
</div>
2323
</a>

src/main/webapp/WEB-INF/jsp/content/storybook/edit.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<c:set var="coverImageUrl" value="${existingStoryBook.coverImage.url}" />
3232
</c:if>
3333
<a class="editLink" href="<spring:url value='/content/storybook/edit/${existingStoryBook.id}' />">
34-
<div class="card-image checksumGitHub-${existingStoryBook.coverImage.checksumGitHub != null}" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
34+
<div class="card-image" style="background-image: url(<spring:url value='${coverImageUrl}' />); background-color: #DDD;">
3535
<span class="card-title"><c:out value="${existingStoryBook.title}" /></span>
3636
</div>
3737
</a>

0 commit comments

Comments
 (0)