##// END OF EJS Templates
a few 1 pixel fixes....
a few 1 pixel fixes. this uses the same html/css structure acroos the tabs, and reduce the overlay click zone that expended the size of the header to 25px instead of 24px

File last commit:

r19298:d8390523
r19703:6879cac4
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 }