/css-electron-reset

Reset Electron stylesheets so it behaves like a native application

Primary LanguageCSSMIT LicenseMIT

css-electron-reset stability

npm version build status downloads js-standard-style

Reset Electron stylesheets so it behaves like a native application

CSS

html {
  -webkit-user-select: none;
  -webkit-user-drag: none;
  cursor: default;
}

input, textarea, select, button, img {
  -webkit-user-drag: none;
}

.draggable {
  -webkit-app-region: drag;
}

.selectable {
  -webkit-user-select: auto;
  cursor: auto;
}

License

MIT