diff options
Diffstat (limited to 'app/views/layouts')
-rwxr-xr-x | app/views/layouts/application.html.haml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 98ee041c1..aa3c560cb 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -46,6 +46,24 @@ border-style: dashed; } + - if current_account&.user&.setting_style_underline_a + :css + .status__content__text a, + .reply-indicator__content a, + .composer--reply > .content a, + .account__header__content a + { + text-decoration: underline; + } + + .status__content__text a:hover, + .reply-indicator__content a:hover, + .composer--reply > .content a:hover, + .account__header__content a:hover + { + text-decoration: none; + } + %body{ class: body_classes } = content_for?(:content) ? yield(:content) : yield |