Skip to content
Snippets Groups Projects
Commit 80c88e13 authored by syuilo's avatar syuilo
Browse files

Merge branch 'develop'

parents ad9e6a4e 35cd9e62
No related merge requests found
......@@ -7,6 +7,11 @@
-->
## 12.100.1 (2021/12/17)
### Bugfixes
- クライアント: デザインの調整
## 12.100.0 (2021/12/17)
### Improvements
......
{
"name": "misskey",
"version": "12.100.0",
"version": "12.100.1",
"codename": "indigo",
"repository": {
"type": "git",
......
<template>
<div class="mk-toast" style="{ zIndex }">
<div class="mk-toast" :style="{ zIndex }">
<transition name="notification-slide" appear @after-leave="$emit('closed')">
<XNotification v-if="showing" :notification="notification" class="notification _acrylic"/>
</transition>
......
......@@ -102,7 +102,7 @@ export default defineComponent({
};
if (type.value === 'drawer') {
maxHeight.value = window.innerHeight - 100;
maxHeight.value = window.innerHeight / 2;
}
const keymap = {
......
<template>
<MkModal ref="modal" @click="success ? done() : () => {}" @closed="$emit('closed')">
<MkModal ref="modal" :prefer-type="'dialog'" @click="success ? done() : () => {}" @closed="$emit('closed')">
<div class="iuyakobc" :class="{ iconOnly: (text == null) || success }">
<i v-if="success" class="fas fa-check icon success"></i>
<i v-else class="fas fa-spinner fa-pulse icon waiting"></i>
......
......@@ -60,7 +60,7 @@ export default defineComponent({
#wait {
display: block;
position: fixed;
z-index: 10000;
z-index: 3000000;
top: 15px;
right: 15px;
......
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