소스 검색

ux(playlist): migrate playlists page to new styles

bergquist 9 년 전
부모
커밋
c78669353f
1개의 변경된 파일41개의 추가작업 그리고 43개의 파일을 삭제
  1. 41 43
      public/app/features/playlist/partials/playlists.html

+ 41 - 43
public/app/features/playlist/partials/playlists.html

@@ -1,51 +1,49 @@
-<navbar icon="fa fa-fw fa-list" title="New Playlist">
+<navbar icon="fa fa-fw fa-list" title="Playlists">
 </navbar>
 
 <div class="page-container">
-  <div class="page-wide">
-
-		<a class="btn btn-success pull-right" href="playlists/create">
-			<i class="fa fa-plus"></i>
-			New Playlist
-		</a>
-
+  <div class="page-header">
     <h1>Saved playlists</h1>
+    <a class="btn btn-success pull-right" href="playlists/create">
+      <i class="fa fa-plus"></i>
+      New Playlist
+    </a>
+  </div>
 
-     <table class="filter-table" style="margin-top: 20px">
-      <thead>
-        <th><strong>Name</strong></th>
-        <th><strong>Start url</strong></th>
-        <th style="width: 68px"></th>
-        <th style="width: 68px"></th>
-        <th style="width: 25px"></th>
+  <table class="filter-table" style="margin-top: 20px">
+    <thead>
+      <th><strong>Name</strong></th>
+      <th><strong>Start url</strong></th>
+      <th style="width: 68px"></th>
+      <th style="width: 68px"></th>
+      <th style="width: 25px"></th>
 
-      </thead>
-      <tr ng-repeat="playlist in ctrl.playlists">
-        <td>
-					<a href="playlists/edit/{{playlist.id}}">{{playlist.name}}</a>
-        </td>
-        <td >
-					<a href="playlists/play/{{playlist.id}}">playlists/play/{{playlist.id}}</a>
-        </td>
-        <td class="text-center">
-          <a href="playlists/play/{{playlist.id}}" class="btn btn-inverse btn-small">
-            <i class="fa fa-play"></i>
-            Play
-          </a>
-        </td>
-        <td  class="text-right">
-          <a href="playlists/edit/{{playlist.id}}" class="btn btn-inverse btn-small">
-            <i class="fa fa-edit"></i>
-            Edit
-          </a>
-        </td>
-        <td  class="text-right">
-          <a ng-click="ctrl.removePlaylist(playlist)" class="btn btn-danger btn-small">
-            <i class="fa fa-remove"></i>
-          </a>
-        </td>
-      </tr>
-    </table>
+    </thead>
+    <tr ng-repeat="playlist in ctrl.playlists">
+      <td>
+				<a href="playlists/edit/{{playlist.id}}">{{playlist.name}}</a>
+      </td>
+      <td >
+				<a href="playlists/play/{{playlist.id}}">playlists/play/{{playlist.id}}</a>
+      </td>
+      <td class="text-center">
+        <a href="playlists/play/{{playlist.id}}" class="btn btn-inverse btn-small">
+          <i class="fa fa-play"></i>
+          Play
+        </a>
+      </td>
+      <td  class="text-right">
+        <a href="playlists/edit/{{playlist.id}}" class="btn btn-inverse btn-small">
+          <i class="fa fa-edit"></i>
+          Edit
+        </a>
+      </td>
+      <td  class="text-right">
+        <a ng-click="ctrl.removePlaylist(playlist)" class="btn btn-danger btn-small">
+          <i class="fa fa-remove"></i>
+        </a>
+      </td>
+    </tr>
+  </table>
 
-  </div>
 </div>