##// END OF EJS Templates
Test case for setting only lower or upper, no sensible default so should be an error
Test case for setting only lower or upper, no sensible default so should be an error

File last commit:

r17391:9e80835b
r17704:400433c5
Show More
notificationwidget.less
31 lines | 551 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;
MinRK
compress menubar a few pixels vertically
r10971 padding: 1px 12px;
margin: 2px 4px;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 z-index: 10;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 border-radius: @border-radius-base;
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 .pull-right();
.border-box-sizing();
.btn();
.btn-default();
.btn-xs();
Matthias BUSSONNIER
more subtle kernel indicator...
r15042
&.span {
padding-right:2px;
}
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 }