]> cat aescling's git repositories - mastodon.git/commitdiff
Fix link color in high-contrast theme, add underlines (#9949)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 31 Jan 2019 23:15:38 +0000 (00:15 +0100)
committerThibaut Girka <thib@sitedethib.com>
Fri, 1 Feb 2019 15:23:13 +0000 (16:23 +0100)
Improve sorting of default themes in the dropdown

app/javascript/flavours/glitch/styles/contrast/diff.scss

index eee9ecc3ef7f27706957e5c66aae23f19599895b..7d8993a50802a1e7ef6e0c99125b4d5fd375ef5a 100644 (file)
     }
   }
 }
+
+.status__content a,
+.reply-indicator__content a {
+  color: lighten($ui-highlight-color, 12%);
+  text-decoration: underline;
+
+  &.mention {
+    text-decoration: none;
+  }
+
+  &.mention span {
+    text-decoration: underline;
+
+    &:hover,
+    &:focus,
+    &:active {
+      text-decoration: none;
+    }
+  }
+
+  &:hover,
+  &:focus,
+  &:active {
+    text-decoration: none;
+  }
+
+  &.status__content__spoiler-link {
+    color: $secondary-text-color;
+    text-decoration: none;
+  }
+}
+
+.status__content__read-more-button {
+  text-decoration: underline;
+
+  &:hover,
+  &:focus,
+  &:active {
+    text-decoration: none;
+  }
+}
+
+.getting-started__footer a {
+  text-decoration: underline;
+
+  &:hover,
+  &:focus,
+  &:active {
+    text-decoration: none;
+  }
+}