Skip to content

Commit 8a8a150

Browse files
pkp/pkp-lib#7495 Fix various layout issues (noticed in snapshots)
1 parent 6e16d38 commit 8a8a150

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

src/components/Container/Page.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ export default {
295295
box-shadow: 0 0 1px 1px @bg-anchor;
296296
}
297297
298+
.app__userNav {
299+
display: flex;
300+
}
301+
298302
.app__userNav .pkpDropdown__content {
299303
right: 0.25rem;
300304
}

src/components/ListPanel/highlights/HighlightsListPanel.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<template #actions>
1010
<pkp-button
1111
v-if="!isOrdering"
12-
icon="sort"
1312
:is-active="isOrdering"
1413
:disabled="isLoading"
1514
@click="isOrdering = true"
@@ -18,7 +17,6 @@
1817
</pkp-button>
1918
<template v-else>
2019
<pkp-button
21-
icon="sort"
2220
:is-active="true"
2321
:disabled="isLoading"
2422
@click="saveOrder"

src/components/Modal/Dialog.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
leave-to="opacity-0"
1212
>
1313
<div
14-
class="bg-gray-500 fixed inset-0 z-10 bg-opacity-75 transition-opacity"
14+
class="fixed inset-0 z-10 bg-blur bg-opacity-75 transition-opacity"
1515
/>
1616
</TransitionChild>
1717
<div class="fixed inset-0 z-20 overflow-y-auto">
@@ -41,7 +41,11 @@
4141
class="me-2 ms-auto cursor-pointer border-0 bg-transparent text-center"
4242
@click="onClose"
4343
>
44-
<icon class="h-6 w-6" icon="pkp-x-mark" :aria-hidden="true" />
44+
<icon
45+
class="h-6 w-6 text-negative"
46+
icon="Cancel"
47+
:aria-hidden="true"
48+
/>
4549
<span class="-screenReader">
4650
{{ dialogProps.closeLabel || t('common.close') }}
4751
</span>

src/pages/example/ExampleSubmissions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<span v-if="store.isLoading">Is loading</span>
44
<ul v-else class="border p-4">
55
<li v-for="submission in store.submissions" :key="submission.id">
6-
<span class="bg-medium text-lg-normal">
6+
<span class="bg-tertiary text-lg-normal">
77
{{ submission.publications[0].fullTitle.en }}
88
</span>
99
</li>

0 commit comments

Comments
 (0)