##// END OF EJS Templates
include vbox into .cell css definition
Matthias BUSSONNIER -
Show More
@@ -109,7 +109,7 var IPython = (function (IPython) {
109 109 CodeCell.prototype.create_element = function () {
110 110 IPython.Cell.prototype.create_element.apply(this, arguments);
111 111
112 var cell = $('<div></div>').addClass('cell border-box-sizing code_cell vbox');
112 var cell = $('<div></div>').addClass('cell border-box-sizing code_cell');
113 113 cell.attr('tabindex','2');
114 114
115 115 this.celltoolbar = new IPython.CellToolbar(this);
@@ -67,7 +67,7 var IPython = (function (IPython) {
67 67 */
68 68 TextCell.prototype.create_element = function () {
69 69 IPython.Cell.prototype.create_element.apply(this, arguments);
70 var cell = $("<div>").addClass('cell text_cell border-box-sizing vbox');
70 var cell = $("<div>").addClass('cell text_cell border-box-sizing');
71 71 cell.attr('tabindex','2');
72 72
73 73 this.celltoolbar = new IPython.CellToolbar(this);
@@ -171,6 +171,7 div.ui-widget-content {
171 171
172 172 .cell {
173 173 border: 1px solid transparent;
174 .vbox();
174 175
175 176 &.selected {
176 177 .corner-all;
General Comments 0
You need to be logged in to leave comments. Login now