Recent folders for add series now show clickable cursor

This commit is contained in:
Mark McDowall 2015-05-17 16:10:10 -07:00
parent f57dea7f1f
commit 475f4244c4
2 changed files with 8 additions and 3 deletions

View File

@ -1,8 +1,9 @@
var Marionette = require('marionette');
module.exports = Marionette.ItemView.extend({
template : 'AddSeries/RootFolders/RootFolderItemViewTemplate',
tagName : 'tr',
template : 'AddSeries/RootFolders/RootFolderItemViewTemplate',
className : 'recent-folder',
tagName : 'tr',
initialize : function() {
this.listenTo(this.model, 'change', this.render);

View File

@ -108,7 +108,7 @@
margin : 30px 0px;
text-align: center;
}
.hint {
color : #999999;
font-style : italic;
@ -166,4 +166,8 @@ li.add-new:hover {
.root-folders {
margin-top : 20px;
}
.recent-folder {
.clickable();
}
}