##// END OF EJS Templates
fix help-links on Firefox...
fix help-links on Firefox link text must come after icon to layout properly on Firefox this makes help links from the kernel match those already populated from the template

File last commit:

r19298:d8390523
r20236:a234d15b
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 }