##// END OF EJS Templates
use \0 instead of 'wake up' to finish output...
use \0 instead of 'wake up' to finish output since we are now seeing the captured output, we don't need `wake up` at the end of all of our test outputs.

File last commit:

r19953:21dc9b62
r20318:d5648dc2
Show More
variables.less
59 lines | 1.6 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;
Matthias Bussonnier
rework css media-query...
r19953 @grid-float-breakpoint: 541px;
@screen-xs: 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 */
Matthias Bussonnier
fix end_space size...
r19872 @page-min-height: 0;
Jonathan Frederic
Improve edit app
r19660 @page-backdrop-color: #EEE;
@page-color: @body-bg;
Matthias Bussonnier
fix border radius on element....
r19716 @page-padding: 15px;
Matthias Bussonnier
rework css media-query...
r19953
// preven container size to jump from 768px to 720px
// when window width go from 768 to 769+
@container-sm : @screen-sm-min;