diff --git a/HELP b/HELP new file mode 100644 index 0000000..83d6f0e --- /dev/null +++ b/HELP @@ -0,0 +1 @@ +Are you a bit lost? Be sure to read https://meta.discourse.org/t/how-to-develop-custom-themes/60848 diff --git a/common/common.scss b/common/common.scss index df729f5..ebc2242 100644 --- a/common/common.scss +++ b/common/common.scss @@ -331,6 +331,7 @@ html body #main-outlet { position: relative; transition: box-shadow 100ms ease-in-out; box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05); + overflow: hidden; &.visited { border: 1px solid rgba(var(--primary-rgb), 0.1); .discourse-tag { @@ -513,3 +514,25 @@ html body #main-outlet { background-color: var(--primary-low-mid); border-radius: 0.5em; } + +.topic-list tr.selected td:nth-child(2), +.topic-list-item.selected td:nth-child(2), +.latest-topic-list-item.selected, +.search-results .fps-result.selected { + box-shadow: inset 3px 0 0 var(--danger); +} + +.topic-list tr.selected td:first-child, +.topic-list-item.selected td:first-child, +.latest-topic-list-item.selected, +.search-results .fps-result.selected { + box-shadow: none; +} + +.topic-list .main-link.focused + .posters { + box-shadow: inset 3px 0 0 var(--tertiary); +} + +.topic-list .main-link.focused { + box-shadow: none; +}