##// END OF EJS Templates
invoke css
Jonathan Frederic -
Show More
@@ -363,14 +363,20 div.cell {
363 363 }
364 364 div.cell.selected {
365 365 border-color: #ababab;
366 /* Don't border the cells when printing */
367 }
368 @media print {
369 div.cell.selected {
370 border-color: transparent;
371 }
366 372 }
367 373 div.cell.edit_mode {
368 374 border-color: green;
369 }
370 375 /* Don't border the cells when printing */
376 }
371 377 @media print {
372 div.cell {
373 border-color: transparent !important;
378 div.cell.edit_mode {
379 border-color: transparent;
374 380 }
375 381 }
376 382 div.prompt {
@@ -463,7 +469,9 div.unrecognized_cell .inner_cell a:hover {
463 469 display: none;
464 470 }
465 471 }
472 div.code_cell {
466 473 /* avoid page breaking on code cells when printing */
474 }
467 475 @media print {
468 476 div.code_cell {
469 477 page-break-inside: avoid;
@@ -8203,14 +8203,20 div.cell {
8203 8203 }
8204 8204 div.cell.selected {
8205 8205 border-color: #ababab;
8206 /* Don't border the cells when printing */
8207 }
8208 @media print {
8209 div.cell.selected {
8210 border-color: transparent;
8211 }
8206 8212 }
8207 8213 div.cell.edit_mode {
8208 8214 border-color: green;
8209 }
8210 8215 /* Don't border the cells when printing */
8216 }
8211 8217 @media print {
8212 div.cell {
8213 border-color: transparent !important;
8218 div.cell.edit_mode {
8219 border-color: transparent;
8214 8220 }
8215 8221 }
8216 8222 div.prompt {
@@ -8303,7 +8309,9 div.unrecognized_cell .inner_cell a:hover {
8303 8309 display: none;
8304 8310 }
8305 8311 }
8312 div.code_cell {
8306 8313 /* avoid page breaking on code cells when printing */
8314 }
8307 8315 @media print {
8308 8316 div.code_cell {
8309 8317 page-break-inside: avoid;
@@ -9504,11 +9512,15 p {
9504 9512 -webkit-box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9505 9513 box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9506 9514 }
9515 @media print {
9516 .notebook_app #header {
9517 display: none;
9518 }
9519 }
9507 9520 /* Hide the header when printing */
9508 9521 @media print {
9509 #header,
9510 9522 #header-spacer {
9511 display: none !important;
9523 display: none;
9512 9524 }
9513 9525 }
9514 9526 /* CSS for the cell toolbar */
General Comments 0
You need to be logged in to leave comments. Login now