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 | 23 | // tree |
|
24 | 24 | @import "../tree/less/style.less"; |
|
25 | 25 | |
|
26 | // edit | |
|
27 | @import "../edit/less/style.less"; | |
|
28 | ||
|
26 | 29 | // notebook |
|
27 | 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 | 8141 | * IPython notebook |
|
8123 | 8142 | * |
|
8124 | 8143 | */ |
@@ -5,18 +5,6 b'' | |||
|
5 | 5 | {% block stylesheet %} |
|
6 | 6 | <link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}"> |
|
7 | 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 | 8 | {{super()}} |
|
21 | 9 | {% endblock %} |
|
22 | 10 |
General Comments 0
You need to be logged in to leave comments.
Login now