about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/javascript/flavours/glitch/styles/monsterpit.scss6
-rw-r--r--app/lib/formatter.rb2
2 files changed, 5 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/styles/monsterpit.scss b/app/javascript/flavours/glitch/styles/monsterpit.scss
index 0ef995534..71b4f4910 100644
--- a/app/javascript/flavours/glitch/styles/monsterpit.scss
+++ b/app/javascript/flavours/glitch/styles/monsterpit.scss
@@ -7,11 +7,13 @@
     font-style: italic;
     font-size: 12px;
     text-align: right;
+    margin-bottom: 4px;
   }
-  details.tags {
+  p.tags {
     color: lighten($dark-text-color, 20%);
     font-size: 12px;
     text-align: right;
+    margin-bottom: 4px;
 
     a {
       color: darken($secondary-text-color, 20%);
@@ -23,7 +25,7 @@
   p.signature {
     color: $dark-text-color;
   }
-  details.tags {
+  p.tags {
     color: $dark-text-color;
 
     a {
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb
index 326f0655b..7623f0acd 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -241,7 +241,7 @@ class Formatter
     unless status.tags.blank?
       tags = status.tags.pluck(:name).reject { |t| t.end_with?('.') }.map{ |t| "##{t}" }
       tags = encode_and_link_urls(tags.join(' '))
-      html = "#{html}<details class=\"tags\"><summary>\xf0\x9f\x8f\xb7</summary><p class=\"tags\">#{tags}</p></details>"
+      html = "#{html}<p class=\"tags\">#{tags} \xf0\x9f\x8f\xb7</p>"
     end
 
     html.html_safe # rubocop:disable Rails/OutputSafety