basic LESS for editor

pull/37/head
Min RK 12 years ago
parent 776c9a0316
commit 9a504dd7c3

@ -0,0 +1,9 @@
#texteditor-container {
border-bottom: 1px solid #ccc;
}
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}

@ -0,0 +1,8 @@
.selected-keymap {
i.fa {
padding: 0px 5px;
}
i.fa:before {
content: @fa-var-check;
}
}

@ -0,0 +1,7 @@
/*!
*
* IPython text editor webapp
*
*/
@import "menubar.less";
@import "edit.less";

@ -23,6 +23,9 @@
// tree
@import "../tree/less/style.less";
// edit
@import "../edit/less/style.less";
// notebook
@import "../notebook/less/style.less";

@ -8119,6 +8119,25 @@ ul#new-notebook-menu {
}
/*!
*
* IPython text editor webapp
*
*/
.selected-keymap i.fa {
padding: 0px 5px;
}
.selected-keymap i.fa:before {
content: "\f00c";
}
#texteditor-container {
border-bottom: 1px solid #ccc;
}
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}
/*!
*
* IPython notebook
*
*/

@ -5,18 +5,6 @@
{% block stylesheet %}
<link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
<link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
<style>
#texteditor-container {
border-bottom: 1px solid #ccc;
}
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}
</style>
{{super()}}
{% endblock %}

Loading…
Cancel
Save