mirror of https://github.com/Sonarr/Sonarr
parent
0a2ac32dfc
commit
28de886bb1
|
@ -1,11 +1,11 @@
|
|||
@import "/content/prefixer";
|
||||
@import "../prefixer";
|
||||
|
||||
.backgrid-paginator {
|
||||
text-align : center;
|
||||
box-sizing : border-box;
|
||||
border-top : none;
|
||||
.box-sizing(border-box);
|
||||
.border-radios(0 0 4px 4px);
|
||||
.border-radius(0 0 4px 4px);
|
||||
|
||||
ul {
|
||||
display : inline-block;
|
||||
|
@ -25,7 +25,6 @@
|
|||
text-decoration : none;
|
||||
}
|
||||
}
|
||||
|
||||
.active {
|
||||
i, span {
|
||||
background-color : #f5f5f5;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
@import "menu";
|
||||
@import "backgrid/backgrid";
|
||||
@import "../shared/styles/clickable";
|
||||
@import "/content/prefixer";
|
||||
@import "prefixer";
|
||||
|
||||
.progress {
|
||||
width : 125px;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "/content/prefixer";
|
||||
@import "prefixer";
|
||||
|
||||
#main-menu-region {
|
||||
i:before {
|
||||
|
|
|
@ -24,7 +24,7 @@ define(
|
|||
data: { 'deleteFiles': deleteFiles },
|
||||
wait: true
|
||||
}).done(function () {
|
||||
App.modalRegion.close();
|
||||
App.modalRegion.closeModal();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
@import "../Shared/Styles/card.less";
|
||||
@import "../Shared/Styles/clickable.less";
|
||||
@import "/content/prefixer";
|
||||
@import "../Content/prefixer";
|
||||
|
||||
.series-item {
|
||||
padding-bottom : 30px;
|
||||
|
|
|
@ -17,7 +17,7 @@ define(
|
|||
this.model.destroy({
|
||||
wait: true
|
||||
}).done(function () {
|
||||
App.modalRegion.close();
|
||||
App.modalRegion.closeModal();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
'use strict';
|
||||
define(
|
||||
[
|
||||
'$',
|
||||
'marionette',
|
||||
'bootstrap'
|
||||
], function (Marionette) {
|
||||
], function ($, Marionette) {
|
||||
return Marionette.Region.extend({
|
||||
el: '#modal-region',
|
||||
|
||||
|
@ -30,14 +31,9 @@ define(
|
|||
'backdrop': 'static'});
|
||||
},
|
||||
|
||||
|
||||
onClose: function(){
|
||||
this.closeModal();
|
||||
},
|
||||
|
||||
|
||||
closeModal: function () {
|
||||
this.$el.modal('hide');
|
||||
$(this.el).modal('hide');
|
||||
this.reset();
|
||||
}
|
||||
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "/Content/prefixer";
|
||||
@import "../../Content/prefixer";
|
||||
|
||||
.card() {
|
||||
margin : 10px;
|
||||
|
|
Loading…
Reference in New Issue