mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 03:16:42 +01:00
fixed minor design bus
This commit is contained in:
parent
04787e9f07
commit
d63ef0e65c
2 changed files with 9 additions and 3 deletions
|
@ -184,8 +184,14 @@ html body {
|
|||
.border-radius(0px);
|
||||
}
|
||||
|
||||
.btn.btn-primary {
|
||||
.btn.btn-primary, .add-btn, .btn-success {
|
||||
background: @pfm-purple;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn-success.disabled {
|
||||
background: @pfm-purple;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.ui-datepicker {
|
||||
|
|
|
@ -14,12 +14,12 @@
|
|||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li bindonce ng-repeat="playlist in playlists">
|
||||
<a bo-class="{disabled: playlist.message, 'btn-success': playlist.message}" bo-href="playlist.url" pfm-eat-click ng-click="addToPlaylist(playlist); $event.stopPropagation()">
|
||||
<a ng-class="{disabled: playlist.message, 'btn-success': playlist.message}" bo-href="playlist.url" pfm-eat-click ng-click="addToPlaylist(playlist); $event.stopPropagation()">
|
||||
<span ng-hide="playlist.message" bo-text="playlist.title"></span>
|
||||
<span ng-show="playlist.message">{{playlist.message}}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li><a href="#" class="btn-primary" pfm-eat-click ng-click="addToNewPlaylist()">Add to New Playlist</a></li>
|
||||
<li><a href="#" class="add-btn" pfm-eat-click ng-click="addToNewPlaylist()">Add to New Playlist</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#" class="btn">Share or Embed</a></li>
|
||||
|
|
Loading…
Reference in a new issue