UX: Better alignment of similar topics in composer
This commit is contained in:
parent
d5efe2d7ee
commit
34d0cc6ad5
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue