MediaWiki:Gadget-GrAnnotations.css: Difference between revisions

No edit summary
No edit summary
Line 769: Line 769:
}
}


// To disable default context menu in mobile browsers
/* Force disable selection on everything inside the body content */
.mw-body-content {
.mw-body-content,
     -webkit-touch-callout: none !important; /* Disables default iOS menu */
.mw-body-content * {
     -webkit-user-select: none;             /* Disables selection safari */
     -webkit-touch-callout: none !important;  
     -moz-user-select: none;               /* Disables selection firefox */
     -webkit-user-select: none !important; 
     -ms-user-select: none;                 /* Disables selection IE/Edge */
    -khtml-user-select: none !important;  
     user-select: none;                     /* Standard property */
     -moz-user-select: none !important;  
     -ms-user-select: none !important;    
     user-select: none !important;        
}
}