##// END OF EJS Templates
Merge pull request #3514 from minrk/ui-state-disabled...
Merge pull request #3514 from minrk/ui-state-disabled use bootstrap `disabled` instead of `ui-state-disabled`

File last commit:

r11033:fa36e98f
r11138:0ab1d3d4 merge
Show More
cell.less
29 lines | 725 B | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 .cell {
border: 1px solid transparent;
.vbox();
&.selected {
.corner-all;
border : thin @border_color solid;
}
}
div.cell {
width: 100%;
padding: 5px 5px 5px 0px;
/* This acts as a spacer between cells, that is outside the border */
MinRK
menubar not full-width...
r10970 margin: 2px 0px 2px 7px;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 outline: none;
}
div.prompt {
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
width: 11ex;
/* This 0.4em is tuned to match the padding on the CodeMirror editor. */
padding: 0.4em;
margin: 0px;
font-family: @monoFontFamily;
text-align: right;
/* This has to match that of the the CodeMirror class line-height below */
MinRK
bootstrap tree
r10891 line-height: @code_line_height;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }