diff options
author | ThibG <thib@sitedethib.com> | 2019-02-01 18:24:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-01 18:24:36 +0100 |
commit | 1cd7b15532f0cbfeec42460be434bbc9a117764d (patch) | |
tree | c579bf0580d7b027c810ca2abc86dc885c5b5b12 /app/javascript/flavours/glitch/styles | |
parent | f611da489929d2592b61b0c0f7c870ae33782343 (diff) | |
parent | 663593b508e419cb1a4f9f93ce75e0065e0833d4 (diff) |
Merge pull request #904 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/javascript/flavours/glitch/styles')
-rw-r--r-- | app/javascript/flavours/glitch/styles/contrast/diff.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/contrast/diff.scss b/app/javascript/flavours/glitch/styles/contrast/diff.scss index eee9ecc3e..7d8993a50 100644 --- a/app/javascript/flavours/glitch/styles/contrast/diff.scss +++ b/app/javascript/flavours/glitch/styles/contrast/diff.scss @@ -12,3 +12,54 @@ } } } + +.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; + } +} |