mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 13:07:33 -07:00
Touch-optimized visibility picker
This commit is contained in:
parent
9096e4b1f2
commit
2f3003ee8c
1 changed files with 23 additions and 1 deletions
|
@ -1,12 +1,15 @@
|
|||
<template>
|
||||
<MkModal
|
||||
ref="modal"
|
||||
v-slot="{ type }"
|
||||
:z-priority="'high'"
|
||||
:src="src"
|
||||
@click="modal.close()"
|
||||
@closed="emit('closed')"
|
||||
>
|
||||
<div class="_popup" :class="$style.root">
|
||||
<div
|
||||
class="_popup"
|
||||
:class="{ [$style.root]: true, [$style.asDrawer]: type === 'drawer' }">
|
||||
<button
|
||||
key="public"
|
||||
class="_button"
|
||||
|
@ -167,6 +170,25 @@ function choose(visibility: (typeof misskey.noteVisibilities)[number]): void {
|
|||
.root {
|
||||
width: 240px;
|
||||
padding: 8px 0;
|
||||
&.asDrawer {
|
||||
padding: 12px 0 calc(env(safe-area-inset-bottom, 0px) + 12px) 0;
|
||||
width: 100%;
|
||||
border-radius: 24px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
.icon {
|
||||
width: 18px;
|
||||
margin-right: 24px;
|
||||
}
|
||||
.item {
|
||||
font-size: 14px;
|
||||
padding: 10px 24px;
|
||||
}
|
||||
.toggle {
|
||||
margin-left: 24px;
|
||||
width: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.divider {
|
||||
|
|
Loading…
Reference in a new issue