summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-12-05 12:57:15 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-12-05 12:57:15 +0900
commitfbbc7d005d8addee596fabe6306bad60baf49cd2 (patch)
treec9ebaf8f037a8ffece1aaebd62bbcb0a25bfaddd
parentUse vuedraggable instead of vue-draggable-next (diff)
downloadsharkey-fbbc7d005d8addee596fabe6306bad60baf49cd2.tar.gz
sharkey-fbbc7d005d8addee596fabe6306bad60baf49cd2.tar.bz2
sharkey-fbbc7d005d8addee596fabe6306bad60baf49cd2.zip
:art:
-rw-r--r--src/client/components/note.vue2
-rw-r--r--src/client/style.scss10
2 files changed, 2 insertions, 10 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 22d2906d95..071acf7c90 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -1,6 +1,6 @@
<template>
<div
- class="note _panelElevated"
+ class="note _panel"
v-if="!muted"
v-show="!isDeleted"
:tabindex="!isDeleted ? '-1' : null"
diff --git a/src/client/style.scss b/src/client/style.scss
index 08344eddf7..5d81cf7133 100644
--- a/src/client/style.scss
+++ b/src/client/style.scss
@@ -239,16 +239,8 @@ hr {
background: var(--panel);
border-radius: var(--radius);
//border: var(--panelBorder);
- overflow: hidden;
-}
-
-// TODO: 普通のpanelとの使い分けが特に決まっていないので廃止してもいいかも?
-._panelElevated {
- @extend ._panel;
-
- //position: relative;
- //z-index: 1;
box-shadow: var(--panelShadow);
+ overflow: hidden;
}
._card {