'no notes on this slide' placeholder

master
Hakim El Hattab 2017-05-18 16:03:20 +02:00
parent 052a3f0c71
commit 7ae18c6b1e
3 changed files with 16 additions and 1 deletions

View File

@ -1483,6 +1483,11 @@ body {
text-align: left; text-align: left;
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
-webkit-overflow-scrolling: touch; } -webkit-overflow-scrolling: touch; }
.reveal .speaker-notes .notes-placeholder {
color: #ccc;
font-style: italic; }
.reveal .speaker-notes:focus {
outline: none; }
.reveal .speaker-notes:before { .reveal .speaker-notes:before {
content: 'Speaker notes'; content: 'Speaker notes';
display: block; display: block;

View File

@ -1612,6 +1612,15 @@ $controlsArrowAngleActive: 36deg;
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
.notes-placeholder {
color: #ccc;
font-style: italic;
}
&:focus {
outline: none;
}
&:before { &:before {
content: 'Speaker notes'; content: 'Speaker notes';
display: block; display: block;
@ -1620,6 +1629,7 @@ $controlsArrowAngleActive: 36deg;
} }
} }
.reveal.show-notes { .reveal.show-notes {
max-width: 75vw; max-width: 75vw;
overflow: visible; overflow: visible;

View File

@ -2788,7 +2788,7 @@
if( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) { if( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {
dom.speakerNotes.innerHTML = getSlideNotes() || ''; dom.speakerNotes.innerHTML = getSlideNotes() || '<span class="notes-placeholder">No notes on this slide.</span>';
} }