Change the cursor so that text selection doesn't appear possible in presentation mode

This commit is contained in:
Jonas 2013-09-05 00:18:36 +02:00
parent c5bcd7a7ef
commit afbff781a7

View File

@ -99,7 +99,20 @@ select {
display: none; display: none;
} }
#viewerContainer.presentationControls { :-webkit-full-screen .textLayer > div {
cursor: none;
}
:-moz-full-screen .textLayer > div {
cursor: none;
}
:fullscreen .textLayer > div {
cursor: none;
}
#viewerContainer.presentationControls,
#viewerContainer.presentationControls .textLayer > div {
cursor: default; cursor: default;
} }