Skip to content

Instantly share code, notes, and snippets.

@asadadams
asadadams / electron-reset.css
Created November 19, 2020 11:32 — forked from Splode/electron-reset.css
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;