diff --git a/app/static/styles.css b/app/static/styles.css index 91d6b8cd..01a2e55f 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -988,9 +988,6 @@ time { .post_utilities_bar div .dropdown-item:active { line-height: 26px; } -.post_utilities_bar .notify_toggle { - margin-left: auto; /* pull right */ -} .post_full .post_utilities_bar .voting_buttons_new { margin-left: -15px; @@ -1388,7 +1385,6 @@ time { line-height: 44px; } .comment .comment_actions .notify_toggle { - margin-left: auto; /* pull right */ font-size: 87%; } .comment .comment_actions .dropdown-item { @@ -1841,6 +1837,10 @@ form h5 { text-align: right; } +.pull-right { + margin-left: auto; +} + #timeSpent { cursor: wait; } diff --git a/app/static/styles.scss b/app/static/styles.scss index f2fa6014..9fa0df6d 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -591,10 +591,6 @@ time { } } } - - .notify_toggle { - margin-left: auto; /* pull right */ - } } .post_full .post_utilities_bar { @@ -1052,7 +1048,6 @@ time { } .notify_toggle { - margin-left: auto; /* pull right */ font-size: 87%; } @@ -1552,6 +1547,10 @@ form { text-align: right; } +.pull-right { + margin-left: auto; +} + #timeSpent { cursor: wait; } diff --git a/app/templates/post/_post_full.html b/app/templates/post/_post_full.html index d1725134..188a82e1 100644 --- a/app/templates/post/_post_full.html +++ b/app/templates/post/_post_full.html @@ -175,7 +175,7 @@ {{ len(post.cross_posts) }} {% endif -%} -
+
{% if current_user.is_authenticated and current_user.verified -%} {% include 'post/_post_notification_toggle.html' -%} {% endif -%} diff --git a/app/templates/post/_post_reply_teaser.html b/app/templates/post/_post_reply_teaser.html index fa33f2bb..6cd6906b 100644 --- a/app/templates/post/_post_reply_teaser.html +++ b/app/templates/post/_post_reply_teaser.html @@ -86,7 +86,7 @@ {% endif -%}
-
+
{% if current_user.is_authenticated and current_user.verified -%} {% with comment=dict(comment=post_reply) -%} {% include "post/_reply_notification_toggle.html" -%}