diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 17:48:05 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 17:48:05 +0900 |
| commit | a96076ee5b395378eea9d44248d43cdc38160c5e (patch) | |
| tree | f3a2d3f127f36d8916ffd09b254f4e6d7e84530c /src | |
| parent | Update ja-JP.yml (diff) | |
| download | misskey-a96076ee5b395378eea9d44248d43cdc38160c5e.tar.gz misskey-a96076ee5b395378eea9d44248d43cdc38160c5e.tar.bz2 misskey-a96076ee5b395378eea9d44248d43cdc38160c5e.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index d1bc610f73..ef464d7e4f 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -100,9 +100,9 @@ class="sortable" @sort="onWidgetSort" > - <div v-for="widget in widgets" class="customize-container" :key="widget.id"> + <div v-for="widget in widgets" class="customize-container _panel" :key="widget.id"> <header> - <span class="handle"><fa :icon="faBars"/></span>{{ widget.name }}<button class="remove" @click="removeWidget(widget)"><fa :icon="faTimes"/></button> + <span class="handle"><fa :icon="faBars"/></span>{{ widget.name }}<button class="remove _button" @click="removeWidget(widget)"><fa :icon="faTimes"/></button> </header> <div @click="widgetFunc(widget.id)"> <component :is="`mkw-${widget.name}`" :widget="widget" :ref="widget.id" :is-customize-mode="true"/> @@ -965,10 +965,10 @@ export default Vue.extend({ > header { position: relative; line-height: 32px; - background: #eee; > .handle { padding: 0 8px; + cursor: move; } > .remove { |