Skip to content

Instantly share code, notes, and snippets.

@asadadams
Forked from Splode/electron-reset.css
Created November 19, 2020 11:32
Show Gist options
  • Save asadadams/8ee6590619b1cac629dee76a0a2ceac4 to your computer and use it in GitHub Desktop.
Save asadadams/8ee6590619b1cac629dee76a0a2ceac4 to your computer and use it in GitHub Desktop.
Disable selection/highlighting and element draggin in Electron
/* disable selection */
:not(input):not(textarea),
:not(input):not(textarea)::after,
:not(input):not(textarea)::before {
-webkit-user-select: none;
user-select: none;
cursor: default;
}
input, button, textarea, :focus {
outline: none;
}
/* disable image and anchor dragging */
a:not([draggable=true]), img:not([draggable=true]) {
-webkit-user-drag: none;
user-drag: none;
}
a[href^="http://"],
a[href^="https://"],
a[href^="ftp://"] {
-webkit-user-drag: auto;
user-drag: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment