##// END OF EJS Templates
Merge pull request #7620 from minrk/permission-messages...
Merge pull request #7620 from minrk/permission-messages add missing error dialogs to tree actions

File last commit:

r19298:d8390523
r20242:4614ac18 merge
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 }