Merge pull request #3643 from Snuffleupagus/issue-3423

Change the cursor so that text selection doesn't appear possible in presentation mode
This commit is contained in:
Brendan Dahl 2013-10-01 13:27:19 -07:00
commit 17a953c7b3

View File

@ -121,7 +121,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;
} }