about summary refs log tree commit diff
path: root/app/assets/stylesheets/components.scss
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-08-24 21:08:00 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-08-24 21:08:00 +0200
commita541e937ca8b299092d0dc7f45d8f0b66ecc0131 (patch)
tree2a388e24631eaaad899107b65ac8c498085b3aa0 /app/assets/stylesheets/components.scss
parentbc0692d75b1eeb7bc439869d892da9b835b40e0d (diff)
More styling for statuses
Diffstat (limited to 'app/assets/stylesheets/components.scss')
-rw-r--r--app/assets/stylesheets/components.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss
new file mode 100644
index 000000000..0bec9ba80
--- /dev/null
+++ b/app/assets/stylesheets/components.scss
@@ -0,0 +1,20 @@
+.status__content {
+  a {
+    color: #2b90d9;
+    text-decoration: none;
+
+    &:hover {
+      text-decoration: underline;
+    }
+
+    &.mention {
+      &:hover {
+        text-decoration: none;
+
+        span {
+          text-decoration: underline;
+        }
+      }
+    }
+  }
+}