##// END OF EJS Templates
basic LESS for editor
Min RK -
Show More
@@ -0,0 +1,9 b''
1 #texteditor-container {
2 border-bottom: 1px solid #ccc;
3 }
4
5 #filename {
6 font-size: 16pt;
7 display: table;
8 padding: 0px 5px;
9 }
@@ -0,0 +1,8 b''
1 .selected-keymap {
2 i.fa {
3 padding: 0px 5px;
4 }
5 i.fa:before {
6 content: @fa-var-check;
7 }
8 }
@@ -0,0 +1,7 b''
1 /*!
2 *
3 * IPython text editor webapp
4 *
5 */
6 @import "menubar.less";
7 @import "edit.less";
@@ -23,6 +23,9 b''
23 // tree
23 // tree
24 @import "../tree/less/style.less";
24 @import "../tree/less/style.less";
25
25
26 // edit
27 @import "../edit/less/style.less";
28
26 // notebook
29 // notebook
27 @import "../notebook/less/style.less";
30 @import "../notebook/less/style.less";
28
31
@@ -8119,6 +8119,25 b' ul#new-notebook-menu {'
8119 }
8119 }
8120 /*!
8120 /*!
8121 *
8121 *
8122 * IPython text editor webapp
8123 *
8124 */
8125 .selected-keymap i.fa {
8126 padding: 0px 5px;
8127 }
8128 .selected-keymap i.fa:before {
8129 content: "\f00c";
8130 }
8131 #texteditor-container {
8132 border-bottom: 1px solid #ccc;
8133 }
8134 #filename {
8135 font-size: 16pt;
8136 display: table;
8137 padding: 0px 5px;
8138 }
8139 /*!
8140 *
8122 * IPython notebook
8141 * IPython notebook
8123 *
8142 *
8124 */
8143 */
@@ -5,18 +5,6 b''
5 {% block stylesheet %}
5 {% block stylesheet %}
6 <link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
6 <link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
7 <link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
7 <link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
8 <style>
9 #texteditor-container {
10 border-bottom: 1px solid #ccc;
11 }
12
13 #filename {
14 font-size: 16pt;
15 display: table;
16 padding: 0px 5px;
17 }
18 </style>
19
20 {{super()}}
8 {{super()}}
21 {% endblock %}
9 {% endblock %}
22
10
General Comments 0
You need to be logged in to leave comments. Login now