mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-17 02:24:22 +01:00
Style update to modals
This commit is contained in:
parent
98c16e0aa6
commit
8925365c7e
10 changed files with 14 additions and 14 deletions
|
@ -10,7 +10,7 @@
|
|||
<input type="text" ng-model="album.share.url" />
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">Close</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<p>Your download contains some tracks which are in lossy formats instead of your chosen lossless format ({{::format.name}}. This is because they were originally uploaded in a lossy format (e.g., MP3). As a result, these tracks have been replaced by their lossy files.</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">OK</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">OK</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
<a class="btn btn-flat btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<p>Are you sure you want to delete {{ album.title }}?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger" ng-click="confirmDeleteAlbum();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">No</button>
|
||||
<button type="button" class="btn btn-flat btn-danger" ng-click="confirmDeleteAlbum();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">No</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<p>Are you sure you want to delete {{ playlistToDelete.title }}?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger" ng-click="confirmDeletePlaylist();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">No</button>
|
||||
<button type="button" class="btn btn-flat btn-danger" ng-click="confirmDeletePlaylist();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">No</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<p>Are you sure you want to delete {{ track.title }}?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger" ng-click="confirmDeleteTrack();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">No</button>
|
||||
<button type="button" class="btn btn-flat btn-danger" ng-click="confirmDeleteTrack();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">No</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<p>Are you sure you want to delete {{ track.title }}?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger" ng-click="confirmDeleteTrack();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-primary" ng-click="$hide()">No</button>
|
||||
<button type="button" class="btn btn-flat btn-danger" ng-click="confirmDeleteTrack();$hide()">Yes</button>
|
||||
<button type="button" class="btn btn-flat btn-primary" ng-click="$hide()">No</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<input type="text" ng-model="playlist.share.url" />
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
<a class="btn btn-flat btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<textarea type="text" ng-model="track.share.bbcode"></textarea>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
<a class="btn btn-flat btn-primary" ng-click="$hide()" ng-disabled="isLoading">Close</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
2
resources/assets/styles/layout.less
vendored
2
resources/assets/styles/layout.less
vendored
|
@ -313,7 +313,7 @@ header {
|
|||
.modal-content {
|
||||
.material-shadow(3);
|
||||
border: 0;
|
||||
border-radius: 2px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
|
|
Loading…
Reference in a new issue