Fix multi-line URLs on cards

This commit is contained in:
Jeremy Kauffman 2017-09-17 12:43:18 -04:00
parent f2116b21bb
commit c3a9eee10a
2 changed files with 6 additions and 1 deletions

View file

@ -19,7 +19,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
* *
### Fixed ### Fixed
* * URLs on cards no longer wrap and show an ellipsis if longer than one line
* *
### Deprecated ### Deprecated

View file

@ -35,6 +35,11 @@
margin-top: var(--card-margin); margin-top: var(--card-margin);
margin-bottom: var(--card-margin); margin-bottom: var(--card-margin);
} }
.card__title-primary .meta {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.card__title-identity { .card__title-identity {
margin-top: $spacing-vertical * 1/3; margin-top: $spacing-vertical * 1/3;
margin-bottom: $spacing-vertical * 1/3; margin-bottom: $spacing-vertical * 1/3;