Browse Source

Fix text color in "show more" link inside boost confirmation modal (#7183)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
ba917e15f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      app/javascript/styles/mastodon/components.scss

+ 24
- 0
app/javascript/styles/mastodon/components.scss View File

@ -40,6 +40,16 @@
cursor: default;
}
&::-moz-focus-inner {
border: 0;
}
&::-moz-focus-inner,
&:focus,
&:active {
outline: 0 !important;
}
&.button-primary,
&.button-alternative,
&.button-secondary,
@ -666,6 +676,16 @@
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 {

Loading…
Cancel
Save