##// END OF EJS Templates
ipython-main-app should be a bootstrap container
MinRK -
Show More
@@ -18,7 +18,6 b' var IPython = (function (IPython) {'
18 18
19 19 Page.prototype.style = function () {
20 20 $('div#header').addClass('border-box-sizing').
21 addClass('ui-widget-content').
22 21 css('border-top-style','none').
23 22 css('border-left-style','none').
24 23 css('border-right-style','none');
@@ -3,7 +3,6 b' This is only required when different pages style the same element differently. T'
3 3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4 4
5 5 #ipython-main-app {
6 width: 100%;
7 6 position: relative;
8 7 font-size: 110%;
9 8 } No newline at end of file
@@ -3,6 +3,5 b' This is only required when different pages style the same element differently. T'
3 3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4 4
5 5 #ipython-main-app {
6 width: 920px;
7 6 margin: 30px auto 0px auto;
8 7 }
@@ -11,7 +11,7 b''
11 11
12 12 {% block site %}
13 13
14 <div id="ipython-main-app">
14 <div id="ipython-main-app" class="container">
15 15
16 16 {% if login_available %}
17 17 <div class="navbar">
@@ -10,7 +10,7 b''
10 10
11 11 {% block site %}
12 12
13 <div id="ipython-main-app">
13 <div id="ipython-main-app" class="container">
14 14
15 15 {% if message %}
16 16 {% for key in message %}
@@ -20,7 +20,7 b' data-read-only={{read_only}}'
20 20
21 21 {% block site %}
22 22
23 <div id="ipython-main-app">
23 <div id="ipython-main-app" class="container">
24 24
25 25 <div id="tabs" class="tabbable">
26 26 <ul class="nav nav-tabs" id="tabs">
General Comments 0
You need to be logged in to leave comments. Login now