mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Fix: CSS to reveal hidden or partially visible avatars on 2nd line
clear:left was added to an existing selector that match other elements that may no need it. in case of a negative affect it should be moved to its own selector .topic-map .links { }
This commit is contained in:
parent
cc23bb84d9
commit
a6d6f6b42a
@ -384,7 +384,7 @@ a.star {
|
|||||||
|
|
||||||
/* limit to one line of avatars for now */
|
/* limit to one line of avatars for now */
|
||||||
height:30px;
|
height:30px;
|
||||||
overflow:hidden;
|
overflow:visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
@ -415,6 +415,7 @@ a.star {
|
|||||||
.avatars,
|
.avatars,
|
||||||
.links,
|
.links,
|
||||||
.information {
|
.information {
|
||||||
|
clear:left;
|
||||||
padding: 7px 10px 15px 10px;
|
padding: 7px 10px 15px 10px;
|
||||||
color: $primary;
|
color: $primary;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user