mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
FEATURE: fix a:visited for anon in topic list
This commit is contained in:
parent
786cf6e61f
commit
df8d47bdb6
|
@ -16,10 +16,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
html.anon .topic-list a.title:visited:not(.badge-notification) {color: scale-color($primary, $lightness: 35%);}
|
||||
|
||||
.topic-list {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
|
||||
|
||||
|
||||
> tbody > tr {
|
||||
&.has-excerpt .star {
|
||||
vertical-align: top;
|
||||
|
|
|
@ -56,7 +56,7 @@ module ApplicationHelper
|
|||
end
|
||||
|
||||
def html_classes
|
||||
"#{mobile_view? ? 'mobile-view' : 'desktop-view'} #{mobile_device? ? 'mobile-device' : 'not-mobile-device'} #{rtl_class}"
|
||||
"#{mobile_view? ? 'mobile-view' : 'desktop-view'} #{mobile_device? ? 'mobile-device' : 'not-mobile-device'} #{rtl_class} #{current_user ? '' : 'anon'}"
|
||||
end
|
||||
|
||||
def rtl_class
|
||||
|
|
Loading…
Reference in New Issue
Block a user