Browse Source

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

Jonas 12 years ago
parent
commit
afbff781a7
  1. 15
      web/viewer.css

15
web/viewer.css

@ -99,7 +99,20 @@ select { @@ -99,7 +99,20 @@ select {
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;
}

Loading…
Cancel
Save