1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00

Remove a tags from lists.

This commit is contained in:
Dan Barber 2014-04-16 10:07:56 +01:00
parent 8c2412ca98
commit f3732eb264
3 changed files with 7 additions and 3 deletions

View File

@ -33,8 +33,12 @@
top: 0 top: 0
ul.root, ol.artists, ol.albums ul.root, ol.artists, ol.albums
@extend .list @extend .list
li
cursor: pointer
ol.songs ol.songs
@extend .song-list @extend .song-list
li
cursor: pointer
div div
position: absolute position: absolute
width: $interface-width width: $interface-width

View File

@ -10,6 +10,8 @@
@include button @include button
ol ol
@extend .song-list @extend .song-list
li
cursor: pointer
li.playing li.playing
.title .title
color: $highlight color: $highlight

View File

@ -1,5 +1,3 @@
<ul class="root"> <ul class="root">
<li ng-repeat="entry in currentPane().entries"> <li ng-repeat="entry in currentPane().entries" ng-click="newPane(entry.path, {})">{{ entry.label }}</li>
<a href="#" ng-click="newPane(entry.path, {})">{{ entry.label }}</a>
</li>
</ul> </ul>