2018-06-08 17:49:31 +08:00
|
|
|
.topic-list-item td:first-child,
|
|
|
|
.topic-post {
|
2013-09-21 07:33:49 +08:00
|
|
|
border-left: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-list tr.selected td:first-child,
|
|
|
|
.topic-list-item.selected td:first-child,
|
2020-03-25 12:45:35 +08:00
|
|
|
.latest-topic-list-item.selected,
|
|
|
|
.search-results .fps-result.selected {
|
2020-08-04 10:57:10 +08:00
|
|
|
box-shadow: inset 3px 0 0 var(--danger); // needs to be inset for Edge
|
2018-07-17 02:51:05 +08:00
|
|
|
}
|
|
|
|
|
2018-06-12 20:24:29 +08:00
|
|
|
.featured-topic.selected,
|
2018-06-08 17:49:31 +08:00
|
|
|
.topic-post.selected {
|
2020-08-04 10:57:10 +08:00
|
|
|
box-shadow: -3px 0 0 var(--danger);
|
2013-09-21 07:33:49 +08:00
|
|
|
}
|
|
|
|
|
2021-08-03 06:36:48 +08:00
|
|
|
.tabLoc:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2018-06-12 20:24:29 +08:00
|
|
|
.latest .featured-topic {
|
|
|
|
padding-left: 4px;
|
|
|
|
}
|
|
|
|
|
2013-09-21 07:33:49 +08:00
|
|
|
.topic-list-item.selected {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:17:31 +08:00
|
|
|
.keyboard-shortcuts-modal .modal-body {
|
2016-08-11 10:41:32 +08:00
|
|
|
max-height: 560px;
|
2014-01-24 22:17:31 +08:00
|
|
|
}
|
|
|
|
|
2020-03-10 00:37:32 +08:00
|
|
|
.keyboard-shortcuts-modal .modal-inner-container {
|
|
|
|
max-width: 880px;
|
|
|
|
}
|
|
|
|
|
2013-09-21 07:33:49 +08:00
|
|
|
#keyboard-shortcuts-help {
|
2022-03-02 04:37:26 +08:00
|
|
|
display: grid;
|
|
|
|
grid-gap: 0.5em 1.25em;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2020-03-10 00:37:32 +08:00
|
|
|
|
2022-03-02 04:37:26 +08:00
|
|
|
@for $i from 1 through 25 {
|
|
|
|
.span-#{$i} {
|
|
|
|
grid-row-end: span $i;
|
|
|
|
}
|
2014-08-14 17:54:53 +08:00
|
|
|
}
|
2020-03-10 00:37:32 +08:00
|
|
|
|
2013-09-21 07:33:49 +08:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
2020-03-10 00:37:32 +08:00
|
|
|
margin-bottom: 2rem;
|
2014-08-14 17:54:53 +08:00
|
|
|
margin-left: 0;
|
2013-09-21 07:33:49 +08:00
|
|
|
|
|
|
|
li {
|
2020-03-10 00:37:32 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--primary-very-low);
|
2020-03-10 00:37:32 +08:00
|
|
|
border-radius: 3px;
|
|
|
|
display: inline-flex;
|
|
|
|
margin: 0 6px;
|
2020-06-01 21:00:56 +08:00
|
|
|
padding: 2px 1px 4px;
|
2020-03-10 00:37:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span:first-child {
|
|
|
|
margin-left: 0;
|
2013-09-21 07:33:49 +08:00
|
|
|
}
|
|
|
|
|
2019-05-21 11:39:32 +08:00
|
|
|
kbd {
|
2022-10-12 22:05:42 +08:00
|
|
|
font-family: var(--font-family);
|
2019-05-21 11:39:32 +08:00
|
|
|
font-weight: bold;
|
2013-09-21 07:33:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|