mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
35 lines
654 B
SCSS
35 lines
654 B
SCSS
.topic-list-item td:first-child, .topic-post {
|
|
background-color: inherit;
|
|
border-left: 1px solid transparent;
|
|
}
|
|
|
|
.topic-list-item.selected td:first-child, .topic-post.selected {
|
|
border-left: 1px solid $topic-list-starred-color;
|
|
}
|
|
|
|
.topic-list-item.selected {
|
|
background-color: inherit;
|
|
}
|
|
|
|
.keyboard-shortcuts-modal .modal-body {
|
|
max-height: 500px;
|
|
}
|
|
|
|
#keyboard-shortcuts-help {
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
margin: 5px 0
|
|
}
|
|
|
|
b {
|
|
background-color: $nav-stacked-divider-color;
|
|
color: $nav-stacked-color;
|
|
display: inline-block;
|
|
margin: 0 2px;
|
|
padding: 2px 4px;
|
|
}
|
|
}
|
|
}
|