css-electron-reset
v1.0.0
Published
Reset Electron stylesheets so it behaves like a native application
Downloads
7
Readme
css-electron-reset
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;
}