diff options
Diffstat (limited to 'app/javascript/flavours/glitch/styles/components')
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/drawer.scss | 4 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/status.scss | 14 |
2 files changed, 15 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/drawer.scss b/app/javascript/flavours/glitch/styles/components/drawer.scss index b16d085f8..a9c683c37 100644 --- a/app/javascript/flavours/glitch/styles/components/drawer.scss +++ b/app/javascript/flavours/glitch/styles/components/drawer.scss @@ -128,6 +128,10 @@ flex: 1 1 auto; margin-inline-start: 8px; overflow: hidden; + + & > a:hover { + text-decoration: underline; + } } .drawer--results { diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 5aca09691..2b52051e4 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -326,7 +326,7 @@ } .display-name:hover .display-name__html { - text-decoration: none; + text-decoration: underline; } .status__content { @@ -350,7 +350,7 @@ } a:hover { - text-decoration: none; + text-decoration: underline; } } @@ -378,7 +378,11 @@ } .notification__message { - margin: -10px 0 10px; + margin: -10px 0px 10px; + + a:hover { + text-decoration: underline; + } } } @@ -518,6 +522,10 @@ overflow: hidden; text-overflow: ellipsis; } + + a:hover { + text-decoration: underline; + } } .status__action-bar { |