##// END OF EJS Templates
make file and other less
Bussonnier Matthias -
Show More
@@ -0,0 +1,7 b''
1
2 .PHONY: css
3
4 default: css
5
6 css: less/style.less
7 lessc -x less/style.less css/style.min.css
@@ -1,3 +1,16 b''
1 .hbox{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
2 .hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
3 .vbox{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;}
4 .vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
5 .reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;}
6 .box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
7 .box-flex1,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
8 .box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;}
9 .box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1;}
10 .box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2;}
11 .start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;}
12 .end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;}
13 .center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;}
1 14 .corner-all{border-radius:3px;}
2 15 body{overflow:hidden;background-color:#ffffff;}
3 16 span#save_widget{padding:5px;margin:0px 0px 0px 300px;display:inline-block;}
@@ -1,3 +1,4 b''
1 @import "flexible-box-model.less";
1 2 @import "notebook.less";
2 3 @import "printnotebook.less";
3 4 @import "renderedhtml.less";
@@ -19,11 +19,7 b' window.mathjax_url = "{{mathjax_url}}";'
19 19 <link rel="stylesheet" href="{{ static_url("css/celltoolbar.css") }}" type="text/css" />
20 20
21 21 {% if use_less %}
22 <link rel="stylesheet/less" href="{{ static_url("less/notebook.less") }}" type="text/css" />
23 <link rel="stylesheet/less" href="{{ static_url("less/tooltip.less") }}" type="text/css" />
24 <link rel="stylesheet/less" href="{{ static_url("less/renderedhtml.less") }}" type="text/css" />
25
26 <link rel="stylesheet/less" href="{{ static_url("less/printnotebook.less") }}" type="text/css"/>
22 <link rel="stylesheet/less" href="{{ static_url("less/style.less") }}" type="text/css" />
27 23 {% else %}
28 24 <link rel="stylesheet" href="{{ static_url("css/style.min.css") }}" type="text/css"/>
29 25 {% endif %}
@@ -13,7 +13,6 b''
13 13 <meta http-equiv="X-UA-Compatible" content="chrome=1">
14 14 <link rel="stylesheet" href="{{static_url("jquery/css/themes/base/jquery-ui.min.css") }}" type="text/css" />
15 15 <link rel="stylesheet" href="{{static_url("css/boilerplate.css") }}" type="text/css" />
16 <link rel="stylesheet" href="{{static_url("css/fbm.css") }}" type="text/css" />
17 16 <link rel="stylesheet" href="{{static_url("css/page.css") }}" type="text/css"/>
18 17 {% block stylesheet %}
19 18 {% endblock %}
@@ -5,6 +5,7 b''
5 5 {% block stylesheet %}
6 6 <link rel="stylesheet" href="{{static_url("css/projectdashboard.css") }}" type="text/css" />
7 7 <link rel="stylesheet" href="{{static_url("css/alternateuploadform.css") }}" type="text/css" />
8 <link rel="stylesheet" href="{{static_url("css/style.min.css") }}" type="text/css" />
8 9 {% endblock %}
9 10
10 11
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now