Add .slideView or .preView classes in speaker console view (#827)

This commit is contained in:
Falco Nogatz
2022-12-19 16:55:17 +01:00
committed by GitHub
parent 64d66bf77f
commit 972dc413f3
3 changed files with 27 additions and 8 deletions

View File

@@ -93,6 +93,23 @@ It is focused on plugin functionality, not the visual style of your presentation
padding-right: 1em;
}
/*
We might want to hide the help, toolbar, progress and progress bar in the
preView window of the impressConsole that is displayed when you press P.
*/
.impress-console.preView .impress-progress,
.impress-console.preView .impress-progressbar,
.impress-console.preView #impress-toolbar,
.impress-console.preView #impress-help {
display: none;
}
/*
Hide the help in the slideView as well.
*/
.impress-console.slideView #impress-help {
display: none;
}
/*
With help from the mouse-timeout plugin, we can hide the toolbar and
have it show only when you move/click/touch the mouse.