Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Dec 17, 2021
2 parents ad9e6a4 + 35cd9e6 commit 80c88e1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
-->

## 12.100.1 (2021/12/17)

### Bugfixes
- クライアント: デザインの調整

## 12.100.0 (2021/12/17)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.100.0",
"version": "12.100.1",
"codename": "indigo",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/components/toast.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<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>
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/components/ui/modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default defineComponent({
};
if (type.value === 'drawer') {
maxHeight.value = window.innerHeight - 100;
maxHeight.value = window.innerHeight / 2;
}
const keymap = {
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/components/waiting-dialog.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<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>
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/ui/_common_/common.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default defineComponent({
#wait {
display: block;
position: fixed;
z-index: 10000;
z-index: 3000000;
top: 15px;
right: 15px;
Expand Down

0 comments on commit 80c88e1

Please sign in to comment.