Selaa lähdekoodia

Merge pull request #13548 from neufeldtech/playlist_fix

Fix text overflow on playlist search  #13464
Torkel Ödegaard 7 vuotta sitten
vanhempi
commit
b411e8eb25
1 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa
  1. 5 2
      public/sass/pages/_playlist.scss

+ 5 - 2
public/sass/pages/_playlist.scss

@@ -84,11 +84,11 @@
     background-color: $list-item-bg;
     margin-bottom: 4px;
     .search-result-icon:before {
-      content: "\f009";
+      content: '\f009';
     }
 
     &.search-item-dash-home .search-result-icon:before {
-      content: "\f015";
+      content: '\f015';
     }
   }
 
@@ -105,7 +105,10 @@
 .playlist-available-list {
   td {
     line-height: 2rem;
+    max-width: 335px;
     white-space: nowrap;
+    text-overflow: ellipsis;
+    overflow: hidden;
   }
 
   .add-dashboard {