mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +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 () {
|
Page.prototype.style = function () {
|
||||||
$('div#header').addClass('border-box-sizing').
|
$('div#header').addClass('border-box-sizing').
|
||||||
addClass('ui-widget-content').
|
|
||||||
css('border-top-style','none').
|
css('border-top-style','none').
|
||||||
css('border-left-style','none').
|
css('border-left-style','none').
|
||||||
css('border-right-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.*/
|
a hack to deal with our current css styles and no new styling should be added in this file.*/
|
||||||
|
|
||||||
#ipython-main-app {
|
#ipython-main-app {
|
||||||
width: 100%;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 110%;
|
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.*/
|
a hack to deal with our current css styles and no new styling should be added in this file.*/
|
||||||
|
|
||||||
#ipython-main-app {
|
#ipython-main-app {
|
||||||
width: 920px;
|
|
||||||
margin: 30px auto 0px auto;
|
margin: 30px auto 0px auto;
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
{% block site %}
|
{% block site %}
|
||||||
|
|
||||||
<div id="ipython-main-app">
|
<div id="ipython-main-app" class="container">
|
||||||
|
|
||||||
{% if login_available %}
|
{% if login_available %}
|
||||||
<div class="navbar">
|
<div class="navbar">
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
{% block site %}
|
{% block site %}
|
||||||
|
|
||||||
<div id="ipython-main-app">
|
<div id="ipython-main-app" class="container">
|
||||||
|
|
||||||
{% if message %}
|
{% if message %}
|
||||||
{% for key in message %}
|
{% for key in message %}
|
||||||
|
@ -20,7 +20,7 @@ data-read-only={{read_only}}
|
|||||||
|
|
||||||
{% block site %}
|
{% block site %}
|
||||||
|
|
||||||
<div id="ipython-main-app">
|
<div id="ipython-main-app" class="container">
|
||||||
|
|
||||||
<div id="tabs" class="tabbable">
|
<div id="tabs" class="tabbable">
|
||||||
<ul class="nav nav-tabs" id="tabs">
|
<ul class="nav nav-tabs" id="tabs">
|
||||||
|
Loading…
Reference in New Issue
Block a user