mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
ipython-main-app should be a bootstrap container
This commit is contained in:
parent
b145150b52
commit
fa9b8b86bd
@ -18,7 +18,6 @@ var IPython = (function (IPython) {
|
||||
|
||||
Page.prototype.style = function () {
|
||||
$('div#header').addClass('border-box-sizing').
|
||||
addClass('ui-widget-content').
|
||||
css('border-top-style','none').
|
||||
css('border-left-style','none').
|
||||
css('border-right-style','none');
|
||||
|
@ -3,7 +3,6 @@ This is only required when different pages style the same element differently. T
|
||||
a hack to deal with our current css styles and no new styling should be added in this file.*/
|
||||
|
||||
#ipython-main-app {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
font-size: 110%;
|
||||
}
|
@ -3,6 +3,5 @@ This is only required when different pages style the same element differently. T
|
||||
a hack to deal with our current css styles and no new styling should be added in this file.*/
|
||||
|
||||
#ipython-main-app {
|
||||
width: 920px;
|
||||
margin: 30px auto 0px auto;
|
||||
}
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
{% block site %}
|
||||
|
||||
<div id="ipython-main-app">
|
||||
<div id="ipython-main-app" class="container">
|
||||
|
||||
{% if login_available %}
|
||||
<div class="navbar">
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
{% block site %}
|
||||
|
||||
<div id="ipython-main-app">
|
||||
<div id="ipython-main-app" class="container">
|
||||
|
||||
{% if message %}
|
||||
{% for key in message %}
|
||||
|
@ -20,7 +20,7 @@ data-read-only={{read_only}}
|
||||
|
||||
{% block site %}
|
||||
|
||||
<div id="ipython-main-app">
|
||||
<div id="ipython-main-app" class="container">
|
||||
|
||||
<div id="tabs" class="tabbable">
|
||||
<ul class="nav nav-tabs" id="tabs">
|
||||
|
Loading…
Reference in New Issue
Block a user