소스 검색

Merge pull request #13548 from neufeldtech/playlist_fix

Fix text overflow on playlist search  #13464
Torkel Ödegaard 7 년 전
부모
커밋
b411e8eb25
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      public/sass/pages/_playlist.scss

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

@@ -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 @@
 .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 {