Skip to content

Commit 976b9b3

Browse files
FIX: Adjust location of selected & focus styling of topic list items (discourse#22)
1 parent d2bfcd6 commit 976b9b3

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

HELP

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Are you a bit lost? Be sure to read https://meta.discourse.org/t/how-to-develop-custom-themes/60848

common/common.scss

+23
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ html body #main-outlet {
331331
position: relative;
332332
transition: box-shadow 100ms ease-in-out;
333333
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
334+
overflow: hidden;
334335
&.visited {
335336
border: 1px solid rgba(var(--primary-rgb), 0.1);
336337
.discourse-tag {
@@ -513,3 +514,25 @@ html body #main-outlet {
513514
background-color: var(--primary-low-mid);
514515
border-radius: 0.5em;
515516
}
517+
518+
.topic-list tr.selected td:nth-child(2),
519+
.topic-list-item.selected td:nth-child(2),
520+
.latest-topic-list-item.selected,
521+
.search-results .fps-result.selected {
522+
box-shadow: inset 3px 0 0 var(--danger);
523+
}
524+
525+
.topic-list tr.selected td:first-child,
526+
.topic-list-item.selected td:first-child,
527+
.latest-topic-list-item.selected,
528+
.search-results .fps-result.selected {
529+
box-shadow: none;
530+
}
531+
532+
.topic-list .main-link.focused + .posters {
533+
box-shadow: inset 3px 0 0 var(--tertiary);
534+
}
535+
536+
.topic-list .main-link.focused {
537+
box-shadow: none;
538+
}

0 commit comments

Comments
 (0)