From 23fe5917ec5623a66badef6bdb2bf03375d087a1 Mon Sep 17 00:00:00 2001 From: vickydotbat Date: Fri, 24 Apr 2026 17:35:35 +0200 Subject: [PATCH] Upvote Icon Change to Heart and Post Tool Always Show --- scss/westgate/_posts.scss | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/scss/westgate/_posts.scss b/scss/westgate/_posts.scss index af000d5..e6455bf 100644 --- a/scss/westgate/_posts.scss +++ b/scss/westgate/_posts.scss @@ -137,6 +137,34 @@ li[component="post"] [component="post/reply-count"]:hover { border-color: rgba(194, 163, 90, 0.2) !important; } +@media (min-width: 992px) { + li[component="post"] [component="post/actions"] { + opacity: 1 !important; + transition: none !important; + } +} + +li[component="post"] [component="post/upvote"] { + position: relative; + + i.fa-chevron-up { + display: none !important; + } + + &::before { + content: "\f004"; + font-family: "Font Awesome 6 Free"; + font-size: 0.95rem; + font-weight: 900; + line-height: 1; + color: var(--bs-primary); + } + + &.upvoted::before { + color: #d47a87; + } +} + .topic-sidebar-tools .btn, [component="topic/navigator"] { background: rgba(255, 255, 255, 0.018) !important;