##// END OF EJS Templates
allow splitting and merging of heading cells...
allow splitting and merging of heading cells I consider it a bug that you couldn't merge with heading cells, and that you couldn't split them, either. (So much so that I thought it was a bug in ipython-vimception when I ran into it). This change removes that limitation, so heading cells are on par with the other cells in terms of the kinds of manipulations one can carry out with them.

File last commit:

r16972:70452358
r17417:811c7332
Show More
page.less
95 lines | 1.5 KiB | text/x-less | LessCssLexer
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 /**
* Primary styles
*
* Author: IPython Development Team
*/
body {
background-color: white;
/* This makes sure that the body covers the entire window and needs to
be in a different element than the display: box in wrapper below */
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
Brian Granger
Refactoring templates and top level js/css organization.
r6192 overflow: visible;
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 }
div#header {
/* Initially hidden to prevent FLOUC */
display: none;
Jonathan Frederic
Move header padding removal to base page style
r16927 margin-bottom: 0px;
Jonathan Frederic
Post discussion with @ellisonbg
r16950 padding-left: 30px;
padding-bottom: 5px;
border-bottom: 1px solid @navbar-default-border;
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 }
MinRK
tweak header styling...
r10906 #ipython_notebook {
Jonathan Frederic
Lots of small alignment tweaks to get Bootstrap3 looking better
r16937 padding-left: 0px;
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 }
Paul Ivanov
use less.css for the style of the noscript message
r10988 #noscript {
width: auto;
padding-top: 16px;
padding-bottom: 16px;
text-align: center;
font-size: 22px;
color: red;
font-weight: bold;
}
MinRK
tweak header styling...
r10906 #ipython_notebook img {
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
Matthias BUSSONNIER
notebook : update logo...
r5702 height: 24px;
text-decoration:none;
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 color: black;
}
Brian Granger
Refactoring templates and top level js/css organization.
r6192 #site {
Brian Granger
Major refactoring of notebook....
r6193 width: 100%;
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 display: none;
}
Brian Granger
More minor theme/styling changes.
r5871 /* Smaller buttons */
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 .ui-button .ui-button-text {
padding: 0.2em 0.8em;
font-size: 77%;
}
MinRK
add read-only view for notebooks...
r5200
Brian Granger
Refactoring templates and top level js/css organization.
r6192 input.ui-button {
padding: 0.3em 0.9em;
}
MinRK
shrink navbars a little
r10912 .navbar span {
margin-top: 3px;
}
Brian Granger
Refactoring templates and top level js/css organization.
r6192
MinRK
add read-only view for notebooks...
r5200 span#login_widget {
float: right;
}
MinRK
disabile bootstrap's capitalized nav-header
r10905
.nav-header {
text-transform: none;
MinRK
tweak header styling...
r10906 }
#header > span {
margin-top: 10px;
MinRK
tweak quick-help...
r10939 }
MinRK
add modal_stretch class...
r16022 // class for stretching dialogs to fill the screen
jon
Fixed IPython dialog
r16933 .modal_stretch .modal-dialog {
MinRK
add modal_stretch class...
r16022 .vbox();
jon
Fixed IPython dialog
r16933 min-height: 80%;
MinRK
add modal_stretch class...
r16022 .modal-body {
max-height: none;
flex: 1;
}
MinRK
tweak quick-help...
r10939 }
MinRK
widen modal dialogs on wide displays...
r15900
@media (min-width: 768px) {
jon
Fixed IPython dialog
r16933 .modal .modal-dialog {
MinRK
add modal_stretch class...
r16022 width: 700px;
}
MinRK
widen modal dialogs on wide displays...
r15900 }
MinRK
add modal_stretch class...
r16022