##// END OF EJS Templates
More movign around of things in notebook and js/less.
Brian E. Granger -
Show More
@@ -0,0 +1,11 b''
1 // Mixin CSS classes
2
3 .border-box-sizing {
4 box-sizing: border-box;
5 -moz-box-sizing: border-box;
6 -webkit-box-sizing: border-box;
7 }
8
9 .corner-all {
10 border-radius: @corner_radius;
11 } No newline at end of file
@@ -1,4 +1,9 b''
1 // Our base less styles. This should be @import'ed by the main .less
2 // files of each page. This file should not itself be compiled to css.
3
1 @import "../../../components/bootstrap/less/bootstrap.less";
4 @import "../../../components/bootstrap/less/bootstrap.less";
2 @import "variables.less";
5 @import "variables.less";
6 @import "mixins.less";
3 @import "flexbox.less";
7 @import "flexbox.less";
4 @import "page.less";
8 @import "page.less";
9
@@ -1,5 +1,3 b''
1 // Our customizations to bootstrap
1 // Our customizations to bootstrap no here.
2
2
3 @textColor: @black;
3 @textColor: @black;
4
5 @baseFontSize: 10pt; No newline at end of file
@@ -1,3 +1,5 b''
1 // Bootstrap customizations specific to this page.
2
1 @corner_radius: 4px;
3 @corner_radius: 4px;
2 @notebook_background : white;
4 @notebook_background : white;
3 @cell_selected_background: darken(@notebook_background, 2%);
5 @cell_selected_background: darken(@notebook_background, 2%);
@@ -6,14 +8,4 b''
6 @light_border_color: darken(@cell_selected_background, 17%);
8 @light_border_color: darken(@cell_selected_background, 17%);
7 @borderwidth : 1px;
9 @borderwidth : 1px;
8 @fontBaseColor : black;
10 @fontBaseColor : black;
9
10 @baseFontSize: 30pt;
11 @baseFontSize: 30pt;
11
12
13
14
15 // utilities mixins
16
17 .corner-all {
18 border-radius:@corner_radius;
19 }
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/base.html to IPython/frontend/html/notebook/templates/page.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/base.html to IPython/frontend/html/notebook/templates/page.html
General Comments 0
You need to be logged in to leave comments. Login now