mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
4f1a517490
Units are ignored for zero values in CSS except for a few edge cases.
38 lines
690 B
SCSS
38 lines
690 B
SCSS
@import "../foundation/variables";
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|