##// END OF EJS Templates
Backport PR #8271: Allow to set same mode as existing if load fails....
Backport PR #8271: Allow to set same mode as existing if load fails. Setting the mode many times in a row, would fail to actually set the mode if it was failing to load the mode the first time. The prevent the above behavior by falling back **explicitly** to 'null' if mode does not exist yet, or can't be loaded. ...

File last commit:

r16912:30744239
r21463:d66c4462
Show More
completer.less
25 lines | 501 B | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 .completions {
position: absolute;
z-index: 10;
overflow: hidden;
border: 1px solid @border_color;
Brian E. Granger
More tabs to spaces on less files.
r13696 .corner-all;
.box-shadow(0px 6px 10px -1px #adadad);
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
.completions select {
background: white;
outline: none;
border: none;
padding: 0px;
margin: 0px;
overflow: auto;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 font-family: @font-family-monospace;
Brian E. Granger
More tabs to spaces on less files.
r13696 font-size: 110%;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @text-color;
Jonathan Frederic
Move width auto into less
r15960 width: auto;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
.completions select option.context {
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: darken(@brand-primary, 10%);
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }