##// END OF EJS Templates
use fixed-width icons, closes #5555
Paul Ivanov -
Show More
@@ -204,7 +204,7 b' var IPython = (function (IPython) {'
204 204 item.data('name', name);
205 205 item.data('path', path);
206 206 item.find(".item_name").text(name);
207 item.find(".item_icon").addClass('folder_icon');
207 item.find(".item_icon").addClass('folder_icon').addClass('icon-fixed-width');
208 208 item.find("a.item_link")
209 209 .attr('href',
210 210 utils.url_join_encode(
@@ -221,7 +221,7 b' var IPython = (function (IPython) {'
221 221 item.data('nbname', nbname);
222 222 item.data('path', path);
223 223 item.find(".item_name").text(nbname);
224 item.find(".item_icon").addClass('notebook_icon');
224 item.find(".item_icon").addClass('notebook_icon').addClass('icon-fixed-width');
225 225 item.find("a.item_link")
226 226 .attr('href',
227 227 utils.url_join_encode(
@@ -236,7 +236,7 b' var IPython = (function (IPython) {'
236 236
237 237 NotebookList.prototype.add_name_input = function (nbname, item) {
238 238 item.data('nbname', nbname);
239 item.find(".item_icon").addClass('notebook_icon');
239 item.find(".item_icon").addClass('notebook_icon').addClass('icon-fixed-width');
240 240 item.find(".item_name").empty().append(
241 241 $('<input/>')
242 242 .addClass("nbname_input")
General Comments 0
You need to be logged in to leave comments. Login now