mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-24 19:56:37 +00:00
Allow window to be dragged from anywhere
Fixes: https://github.com/resin-io/etcher/issues/191
This commit is contained in:
parent
3ef3567d89
commit
a40ad6fd54
@ -16,4 +16,5 @@
|
|||||||
|
|
||||||
[ng-click] {
|
[ng-click] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
-webkit-app-region: no-drag;
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,18 @@ body {
|
|||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Allow window to be dragged from anywhere */
|
||||||
|
* {
|
||||||
|
-webkit-app-region: drag;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
a,
|
||||||
|
input {
|
||||||
|
-webkit-app-region: no-drag;
|
||||||
|
}
|
||||||
|
|
||||||
/* Prevent WebView bounce effect in OS X */
|
/* Prevent WebView bounce effect in OS X */
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user