mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
Recent folders for add series now show clickable cursor
This commit is contained in:
parent
f57dea7f1f
commit
475f4244c4
2 changed files with 8 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
||||||
var Marionette = require('marionette');
|
var Marionette = require('marionette');
|
||||||
|
|
||||||
module.exports = Marionette.ItemView.extend({
|
module.exports = Marionette.ItemView.extend({
|
||||||
template : 'AddSeries/RootFolders/RootFolderItemViewTemplate',
|
template : 'AddSeries/RootFolders/RootFolderItemViewTemplate',
|
||||||
tagName : 'tr',
|
className : 'recent-folder',
|
||||||
|
tagName : 'tr',
|
||||||
|
|
||||||
initialize : function() {
|
initialize : function() {
|
||||||
this.listenTo(this.model, 'change', this.render);
|
this.listenTo(this.model, 'change', this.render);
|
||||||
|
|
|
@ -108,7 +108,7 @@
|
||||||
margin : 30px 0px;
|
margin : 30px 0px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hint {
|
.hint {
|
||||||
color : #999999;
|
color : #999999;
|
||||||
font-style : italic;
|
font-style : italic;
|
||||||
|
@ -166,4 +166,8 @@ li.add-new:hover {
|
||||||
.root-folders {
|
.root-folders {
|
||||||
margin-top : 20px;
|
margin-top : 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.recent-folder {
|
||||||
|
.clickable();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue