]> cat aescling's git repositories - mastodon.git/commitdiff
Fix text color in "show more" link inside boost confirmation modal (#7183)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 19 Apr 2018 00:36:31 +0000 (02:36 +0200)
committerGitHub <noreply@github.com>
Thu, 19 Apr 2018 00:36:31 +0000 (02:36 +0200)
app/javascript/styles/mastodon/components.scss

index cdf3a9daa7c4cf59039781db9f1a2e56823e6065..9b5ab6f01de85ae41198c037ee8e97d3d5b6d29a 100644 (file)
     cursor: default;
   }
 
+  &::-moz-focus-inner {
+    border: 0;
+  }
+
+  &::-moz-focus-inner,
+  &:focus,
+  &:active {
+    outline: 0 !important;
+  }
+
   &.button-primary,
   &.button-alternative,
   &.button-secondary,
       background: lighten($action-button-color, 7%);
       text-decoration: none;
     }
+
+    &::-moz-focus-inner {
+      border: 0;
+    }
+
+    &::-moz-focus-inner,
+    &:focus,
+    &:active {
+      outline: 0 !important;
+    }
   }
 
   .status__content__text {
@@ -3899,6 +3919,10 @@ a.status-card {
     top: 10px;
     width: 48px;
   }
+
+  .status__content__spoiler-link {
+    color: lighten($ui-secondary-color, 8%);
+  }
 }
 
 .actions-modal {