aboutsummaryrefslogtreecommitdiff
path: root/src/components/popover/popover.vue
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-08-06 10:17:44 +0000
committerlain <lain@soykaf.club>2020-08-06 10:17:44 +0000
commit3e6e6096bfd1dad3283396c086e45b09523faaee (patch)
treedc322fff1bd377b920669287fbdd5653ba9bfede /src/components/popover/popover.vue
parent9a10ad38260cc4d1ef93a6988ef2cb0941080156 (diff)
parente57562959f5e71fd6e3bf180e2856d504ffb1fcf (diff)
Merge branch 'feat/separate-timeline-navigation-from-navpanel' into 'develop'
Separate timeline navigation from navpanel See merge request pleroma/pleroma-fe!1172
Diffstat (limited to 'src/components/popover/popover.vue')
-rw-r--r--src/components/popover/popover.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/popover/popover.vue b/src/components/popover/popover.vue
index a271cb1b..5c99c509 100644
--- a/src/components/popover/popover.vue
+++ b/src/components/popover/popover.vue
@@ -14,7 +14,7 @@
ref="content"
:style="styles"
class="popover"
- :class="popoverClass"
+ :class="popoverClass || 'popover-default'"
>
<slot
name="content"
@@ -34,6 +34,9 @@
z-index: 8;
position: absolute;
min-width: 0;
+}
+
+.popover-default {
transition: opacity 0.3s;
box-shadow: 1px 1px 4px rgba(0,0,0,.6);