Skip to content
Snippets Groups Projects
Commit 0b1718ee authored by Ron Lucke's avatar Ron Lucke Committed by David Siegfried
Browse files

fix #2676

Closes #2676

Merge request studip/studip!1834
parent 398fa490
No related branches found
No related tags found
No related merge requests found
......@@ -3926,6 +3926,7 @@ g a l l e r y b l o c k
margin-top: -22px;
transition: 200ms ease;
user-select: none;
border: none;
&:hover {
background-color: $base-color;
......
......@@ -35,8 +35,8 @@
</div>
</div>
<div v-if="currentNav === 'true'">
<a class="cw-block-gallery-prev" @click="plusSlides(-1)"></a>
<a class="cw-block-gallery-next" @click="plusSlides(1)"></a>
<button class="cw-block-gallery-prev" :title="$gettext('Vorheriges Bild')" @click="plusSlides(-1)"></button>
<button class="cw-block-gallery-next" :title="$gettext('Nächstes Bild')" @click="plusSlides(1)"></button>
</div>
</div>
<div v-if="currentLayout === 'grid'" class="cw-block-gallery-content">
......
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