File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -295,6 +295,10 @@ export default {
295
295
box- shadow: 0 0 1px 1px @bg- anchor;
296
296
}
297
297
298
+ .app__userNav {
299
+ display: flex;
300
+ }
301
+
298
302
.app__userNav .pkpDropdown__content {
299
303
right: 0 .25rem ;
300
304
}
Original file line number Diff line number Diff line change 9
9
<template #actions >
10
10
<pkp-button
11
11
v-if =" !isOrdering"
12
- icon =" sort"
13
12
:is-active =" isOrdering"
14
13
:disabled =" isLoading"
15
14
@click =" isOrdering = true"
18
17
</pkp-button >
19
18
<template v-else >
20
19
<pkp-button
21
- icon =" sort"
22
20
:is-active =" true"
23
21
:disabled =" isLoading"
24
22
@click =" saveOrder"
Original file line number Diff line number Diff line change 11
11
leave-to =" opacity-0"
12
12
>
13
13
<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"
15
15
/>
16
16
</TransitionChild >
17
17
<div class =" fixed inset-0 z-20 overflow-y-auto" >
41
41
class =" me-2 ms-auto cursor-pointer border-0 bg-transparent text-center"
42
42
@click =" onClose"
43
43
>
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
+ />
45
49
<span class =" -screenReader" >
46
50
{{ dialogProps.closeLabel || t('common.close') }}
47
51
</span >
Original file line number Diff line number Diff line change 3
3
<span v-if =" store.isLoading" >Is loading</span >
4
4
<ul v-else class =" border p-4" >
5
5
<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" >
7
7
{{ submission.publications[0].fullTitle.en }}
8
8
</span >
9
9
</li >
You can’t perform that action at this time.
0 commit comments