even MORE fixes
This commit is contained in:
parent
e3dd9ed3c9
commit
18b483ee27
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "calckey",
|
||||
"version": "12.119.0-calc.8-b.6",
|
||||
"version": "12.119.0-calc.8-b.7",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -56,7 +56,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { defineAsyncComponent, nextTick, onBeforeUnmount, onMounted, onUnmounted, Ref, ref, watch } from 'vue';
|
||||
import { computed, menu, defineAsyncComponent, nextTick, onBeforeUnmount, onMounted, onUnmounted, Ref, ref, watch } from 'vue';
|
||||
import { focusPrev, focusNext } from '@/scripts/focus';
|
||||
import FormSwitch from '@/components/form/switch.vue';
|
||||
import { MenuItem, InnerMenuItem, MenuPending, MenuAction } from '@/types/menu';
|
||||
@ -84,7 +84,7 @@ let items2: InnerMenuItem[] = $ref([]);
|
||||
|
||||
let child = $ref<InstanceType<typeof XChild>>();
|
||||
|
||||
let keymap = $computed(() => ({
|
||||
let keymap = computed(() => ({
|
||||
'up|k|shift+tab': focusUp,
|
||||
'down|j|tab': focusDown,
|
||||
'esc': close,
|
||||
@ -228,6 +228,10 @@ onBeforeUnmount(() => {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
> &.icon {
|
||||
transform: translateY(0em);
|
||||
}
|
||||
|
||||
&:not(:disabled):hover {
|
||||
color: var(--accent);
|
||||
text-decoration: none;
|
||||
|
@ -179,7 +179,7 @@ const starButton = ref<InstanceType<typeof XStarButton>>();
|
||||
const renoteButton = ref<InstanceType<typeof XRenoteButton>>();
|
||||
const renoteTime = ref<HTMLElement>();
|
||||
const reactButton = ref<HTMLElement>();
|
||||
let appearNote = $computed(() => isRenote ? note.renote as misskey.entities.Note : note);
|
||||
let appearNote = computed(() => isRenote ? note.renote as misskey.entities.Note : note);
|
||||
const isMyRenote = $i && ($i.id === note.userId);
|
||||
const showContent = ref(false);
|
||||
const isDeleted = ref(false);
|
||||
|
@ -290,6 +290,7 @@ function more(ev: MouseEvent) {
|
||||
position: relative;
|
||||
left: 3rem;
|
||||
color: var(--fgOnAccent);
|
||||
transform: translateY(0em)
|
||||
}
|
||||
|
||||
> .text {
|
||||
@ -352,6 +353,7 @@ function more(ev: MouseEvent) {
|
||||
position: relative;
|
||||
width: 32px;
|
||||
margin-right: 8px;
|
||||
transform: translateY(-0.15em);
|
||||
}
|
||||
|
||||
> .indicator {
|
||||
@ -425,6 +427,7 @@ function more(ev: MouseEvent) {
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
aspect-ratio: 1;
|
||||
transform: translateY(0em);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -469,6 +472,7 @@ function more(ev: MouseEvent) {
|
||||
> .icon {
|
||||
position: relative;
|
||||
color: var(--fgOnAccent);
|
||||
transform: translate(0.15em, 0em)
|
||||
}
|
||||
|
||||
> .text {
|
||||
@ -511,6 +515,7 @@ function more(ev: MouseEvent) {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
opacity: 0.7;
|
||||
transform: translateY(0em);
|
||||
}
|
||||
|
||||
> .text {
|
||||
|
Loading…
Reference in New Issue
Block a user