##// END OF EJS Templates
fix access to png width and height in nbconvert html basic template
fix access to png width and height in nbconvert html basic template

File last commit:

r19716:3cc62b6a
r19893:3996b0e5
Show More
variables.less
53 lines | 1.4 KiB | text/x-less | LessCssLexer
Brian E. Granger
Adding files that I mised in the last commit.
r10713 // Our customizations to bootstrap go here.
Brian E. Granger
Working on cleaning up our less files.
r10700
Jonathan Frederic
Review comments
r16957 @black: #000;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 @text-color: @black;
@font-size-base: 13px;
@font-family-monospace: monospace; // to allow user to customize their fonts
Min RK
remove some custom css...
r19298 @navbar-height: 30px;
Jonathan Frederic
Review comments
r16957 @breadcrumb-color: darken(@border_color, 30%);
@blockquote-font-size: inherit;
Jonathan Frederic
Review #2
r16970 @modal-inner-padding: 15px;
MinRK
move grid-float-breakpoint to 540px...
r18415 @grid-float-breakpoint: 540px;
Thomas Kluyver
Enlarge Jupyter logo to 28px height
r19516 @logo_height: 28px;
Matthias Bussonnier
fix border radius on element....
r19716 @border-radius-small: 1px;
Jonathan Frederic
Address review comments
r19653 @border-radius-base: 2px;
Matthias Bussonnier
fix border radius on element....
r19716 @border-radius-large: 3px;;
Jonathan Frederic
Make things consistent
r19655 @grid-gutter-width: 0px;
Jonathan Frederic
Review comments
r16957
// Disable modal slide-in from top animation.
.modal {
&.fade .modal-dialog {
.translate(0, 0);
}
}
// Set the default code color.
Paul Ivanov
don't color code in crimson...
r15841 code {
color: @black; // default code color in bootstrap is #d14 (crimson / amaranth)
}
Jonathan Frederic
Review comments
r16957 // Override bootstrap pre element styling.
MinRK
cleanup some `pre` css inheritance...
r16205 pre {
// bootstrap has pre defaults that we don't want to inherit.
// start pre tag defaults based on the surrounding context instead.
font-size: inherit;
line-height: inherit;
}
Jonathan Frederic
Review comments
r16957 // Disable bold labels in BS3
label {
font-weight: normal;
}
Brian E. Granger
Adding files that I mised in the last commit.
r10713 // Our own global variables for all pages go here
Jonathan Frederic
Make things consistent
r19655 @global-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
Jonathan Frederic
Prevent terminal from scrolling
r19656 @global-shadow-dark: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
Jonathan Frederic
Make things consistent
r19655 @page-header-padding: 20px;
Jonathan Frederic
Improve edit app
r19660 /* Make the page background atleast 100% the height of the view port */
@page-backdrop-height: 100vh;
/* Make the page itself atleast 70% the height of the view port */
@page-min-height: 70vh;
@page-backdrop-color: #EEE;
@page-color: @body-bg;
Matthias Bussonnier
fix border radius on element....
r19716 @page-padding: 15px;