Commit 4815f92f by Jordan Neufeld

Fix text overflow on playlist search #13464

parent 3c6a6e69
...@@ -84,11 +84,11 @@ ...@@ -84,11 +84,11 @@
background-color: $list-item-bg; background-color: $list-item-bg;
margin-bottom: 4px; margin-bottom: 4px;
.search-result-icon:before { .search-result-icon:before {
content: "\f009"; content: '\f009';
} }
&.search-item-dash-home .search-result-icon:before { &.search-item-dash-home .search-result-icon:before {
content: "\f015"; content: '\f015';
} }
} }
...@@ -105,7 +105,10 @@ ...@@ -105,7 +105,10 @@
.playlist-available-list { .playlist-available-list {
td { td {
line-height: 2rem; line-height: 2rem;
max-width: 335px;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
} }
.add-dashboard { .add-dashboard {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment