mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 23:28:06 +02:00
Prevent text selection in Presentation Mode (bug 1018882)
This commit is contained in:
parent
1480850045
commit
86309faf3c
1 changed files with 6 additions and 0 deletions
|
@ -55,6 +55,7 @@ select {
|
|||
height: 100%;
|
||||
overflow: hidden;
|
||||
cursor: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
#viewerContainer:-moz-full-screen {
|
||||
|
@ -65,6 +66,7 @@ select {
|
|||
height: 100%;
|
||||
overflow: hidden;
|
||||
cursor: none;
|
||||
-moz-user-select: none;
|
||||
}
|
||||
|
||||
#viewerContainer:-ms-fullscreen {
|
||||
|
@ -74,6 +76,7 @@ select {
|
|||
height: 100%;
|
||||
overflow: hidden !important;
|
||||
cursor: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
#viewerContainer:-ms-fullscreen::-ms-backdrop {
|
||||
|
@ -88,6 +91,9 @@ select {
|
|||
height: 100%;
|
||||
overflow: hidden;
|
||||
cursor: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
:-webkit-full-screen a:not(.internalLink) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue