aboutsummaryrefslogtreecommitdiff
path: root/src/components/status_content
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2020-08-06 13:38:07 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2020-08-06 13:38:07 +0000
commitb9d1ecec44375c15e0425fb78dbc8ca92c0669a8 (patch)
tree7aa1707f56b22855c8c7ffa84320bbb2a7c0aa1c /src/components/status_content
parent3e6e6096bfd1dad3283396c086e45b09523faaee (diff)
parent0feab1d97cb4683f2cc1869e08078097e787fcd1 (diff)
Merge branch 'stylelint-rscss-1' into 'develop'
Stylelint + RSCSS initial approach See merge request pleroma/pleroma-fe!1205
Diffstat (limited to 'src/components/status_content')
-rw-r--r--src/components/status_content/status_content.vue13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/components/status_content/status_content.vue b/src/components/status_content/status_content.vue
index ab48786c..fb469a2f 100644
--- a/src/components/status_content/status_content.vue
+++ b/src/components/status_content/status_content.vue
@@ -1,6 +1,6 @@
<template>
<!-- eslint-disable vue/no-v-html -->
- <div class="status-body">
+ <div class="StatusContent">
<slot name="header" />
<div
v-if="status.summary_html"
@@ -133,7 +133,7 @@
$status-margin: 0.75em;
-.status-body {
+.StatusContent {
flex: 1;
min-width: 0;
@@ -284,13 +284,4 @@ $status-margin: 0.75em;
color: $fallback--cGreen;
color: var(--postGreentext, $fallback--cGreen);
}
-
-.timeline :not(.panel-disabled) > {
- .status-el:last-child {
- border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
- border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
- border-bottom: none;
- }
-}
-
</style>