mirror of https://github.com/zulip/zulip.git
css: Use SCSS nesting for '.hashtag' in left-sidebar.scss
This commit is contained in:
parent
eb9a252ec9
commit
d99b0cf7f5
|
@ -12,9 +12,15 @@ $topic_indent: calc($far_left_gutter_size + $left_col_size + 4px);
|
|||
display: none;
|
||||
}
|
||||
|
||||
.hashtag:empty::after {
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
.hashtag {
|
||||
&:empty {
|
||||
&::after {
|
||||
content: "#";
|
||||
line-height: 0;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.stream-privacy {
|
||||
|
@ -73,11 +79,6 @@ li.show-more-topics {
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.hashtag:empty::after {
|
||||
content: "#";
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
max-width: 18em;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue