discourse/app/assets/stylesheets/common/components/keyboard_shortcuts.scss

56 lines
964 B
SCSS
Raw Normal View History

.topic-list-item td:first-child,
.topic-post {
border-left: 1px solid transparent;
}
.topic-list tr.selected td:first-child,
.topic-list-item.selected td:first-child,
2018-07-17 02:51:05 +08:00
.latest-topic-list-item.selected {
box-shadow: inset 3px 0 0 $danger; // needs to be inset for Edge
}
.featured-topic.selected,
.topic-post.selected {
2018-07-17 02:52:00 +08:00
box-shadow: -3px 0 0 $danger;
}
.latest .featured-topic {
padding-left: 4px;
}
.topic-list-item.selected {
background-color: inherit;
}
.keyboard-shortcuts-modal .modal-body {
max-height: 560px;
}
#keyboard-shortcuts-help {
2018-02-15 01:26:05 +08:00
div.row {
width: 100%;
div {
float: left;
width: 32%;
2018-02-15 01:26:05 +08:00
}
2014-08-14 17:54:53 +08:00
}
ul {
list-style: none;
2014-08-14 17:54:53 +08:00
margin-left: 0;
li {
margin: 5px 0;
}
kbd {
font-size: $base-font-size;
font-family: $base-font-family;
margin: 0;
2015-08-19 12:42:41 +08:00
color: dark-light-choose(#444, #aaa);
font-weight: bold;
padding: 2px 6px;
2014-04-14 05:51:24 +08:00
white-space: nowrap;
}
}
}