UX: Better alignment of similar topics in composer

This commit is contained in:
Kris 2019-02-25 17:03:29 -05:00
parent d5efe2d7ee
commit 34d0cc6ad5
1 changed files with 18 additions and 13 deletions

View File

@ -114,6 +114,8 @@
} }
a.close { a.close {
display: flex;
align-items: center;
position: absolute; position: absolute;
right: 10px; right: 10px;
top: 10px; top: 10px;
@ -131,7 +133,7 @@
opacity: 1; opacity: 1;
} }
ul.topics { ul {
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -164,32 +166,35 @@
} }
.posts-count { .posts-count {
background-color: dark-light-choose($tertiary, $tertiary-medium); background-color: $tertiary;
} }
ul {
list-style: none;
margin: 0;
padding: 0;
}
.search-link { .search-link {
.topic-title {
flex: 0 1 auto;
margin-right: 0.5em;
}
.topic-statuses:empty {
display: none;
}
span.badge-wrapper {
margin-left: 0;
}
.blurb { .blurb {
color: dark-light-choose($primary-high, $secondary-medium); color: $primary-high;
} }
.topic-title, .topic-title,
.blurb { .blurb {
.fa { .d-icon {
color: dark-light-choose($primary-high, $secondary-medium); color: $primary-high;
} }
} }
span.topic { span.topic {
display: flex; display: flex;
align-items: baseline;
flex-wrap: wrap; flex-wrap: wrap;
} }
} }
.badge-wrapper {
margin-left: 5px;
}
} }
.composer-popup:nth-of-type(2) { .composer-popup:nth-of-type(2) {