##// END OF EJS Templates
Backport PR #8131: handle undefined when sorting quick help...
Backport PR #8131: handle undefined when sorting quick help Since undefined is neither less than nor greater than anything in Javascript, the sort function was treating it as equal to everything, causing inconsistent behavior depending on the sort algorithm of the browser. closes #8089 This ensures undefined elements are sorted last in the sequence.

File last commit:

r19298:d8390523
r20884:3740b498
Show More
notificationwidget.less
20 lines | 348 B | text/x-less | LessCssLexer
/ IPython / html / static / notebook / less / notificationwidget.less
Brian E. Granger
Add edit/command mode indicator.
r15115 .notification_widget {
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @navbar-default-link-color;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 z-index: 10;
Jason Grout
abstract hard-coded style values to be variables for different theming
r17292 background: @notification_widget_bg;
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368 .btn-default();
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368
.notification_widget.warning {
Matthias BUSSONNIER
fix missing semicolons
r17391 .btn-warning();
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368 }
.notification_widget.success {
Matthias BUSSONNIER
fix missing semicolons
r17391 .btn-success();
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368 }
.notification_widget.info {
Matthias BUSSONNIER
fix missing semicolons
r17391 .btn-info();
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368 }
.notification_widget.danger {
Matthias BUSSONNIER
fix missing semicolons
r17391 .btn-danger();
Matthias BUSSONNIER
Introduce info/warning/danger to notification area...
r17368 }