##// 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:

r16937:85c6f87f
r20318:d5648dc2
Show More
mixins.less
19 lines | 289 B | text/x-less | LessCssLexer
Brian E. Granger
More movign around of things in notebook and js/less.
r10703 // Mixin CSS classes
.border-box-sizing {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.corner-all {
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 border-radius: @border-radius-base;
Matthias BUSSONNIER
use baseBorderRadius instead of corner_radius...
r13547 }
Jonathan Frederic
Get notebook running with Bootstrap3
r16912
.border-radius(@radius) {
border-radius: @radius;
Jonathan Frederic
Lots of small alignment tweaks to get Bootstrap3 looking better
r16937 }
.no-padding {
padding: 0px;
}