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