Prevent selecting UI text, add icon for NW.js

master
Skylar Ittner 4 years ago
parent d702653adf
commit 89e013d92f

@ -1,38 +1,45 @@
{ {
"name": "com.netsyms.packagehelper", "name": "com.netsyms.packagehelper",
"displayName": "PackageHelper", "displayName": "PackageHelper",
"version": "1.4.0", "version": "1.4.0",
"description": "Assistant app for door-to-door package delivery.", "description": "Assistant app for door-to-door package delivery.",
"main": "www/index.html", "product_string": "PackageHelper",
"scripts": { "main": "www/index.html",
"test": "echo \"Error: no test specified\" && exit 1" "window": {
}, "icon": "res/logo.png",
"keywords": [ "id": "com.netsyms.packagehelper_window_main_00001",
"ecosystem:cordova" "frame": true
],
"author": "Netsyms Technologies",
"license": "MPL-2.0",
"cordova": {
"plugins": {
"cordova-plugin-geolocation": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-powermanagement-netsyms": {},
"cordova-plugin-whitelist": {},
"phonegap-plugin-barcodescanner": {},
"cordova-plugin-device": {}
}, },
"platforms": [ "user_agent": "Mozilla/5.0 (%osinfo) %name/%ver NW.js/%nwver WebKit/%webkit_ver Chromium/%chromium_ver",
"android", "scripts": {
"browser" "test": "echo \"Error: no test specified\" && exit 1"
] },
}, "keywords": [
"dependencies": { "ecosystem:cordova"
"cordova-android": "^8.1.0", ],
"cordova-browser": "^6.0.0", "author": "Netsyms Technologies",
"cordova-plugin-device": "^2.0.3", "license": "MPL-2.0",
"cordova-plugin-inappbrowser": "^3.1.0", "cordova": {
"cordova-plugin-powermanagement-netsyms": "git+https://source.netsyms.com/Netsyms/cordova-plugin-powermanagement", "plugins": {
"cordova-plugin-whitelist": "^1.3.4" "cordova-plugin-geolocation": {},
}, "cordova-plugin-inappbrowser": {},
"devDependencies": {} "cordova-plugin-powermanagement-netsyms": {},
} "cordova-plugin-whitelist": {},
"phonegap-plugin-barcodescanner": {},
"cordova-plugin-device": {}
},
"platforms": [
"android",
"browser"
]
},
"dependencies": {
"cordova-android": "^8.1.0",
"cordova-browser": "^6.0.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-inappbrowser": "^3.1.0",
"cordova-plugin-powermanagement-netsyms": "git+https://source.netsyms.com/Netsyms/cordova-plugin-powermanagement",
"cordova-plugin-whitelist": "^1.3.4"
},
"devDependencies": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -23,6 +23,17 @@ Framework7 and FontAwesome both have a .fab class
padding-bottom: var(--f7-fab-size); padding-bottom: var(--f7-fab-size);
} }
.navbar, .item-link .item-title, .item-divider, .item-label, .noselect {
user-select: none;
}
.navbar-inner {
-webkit-app-region: drag;
}
.navbar-inner > * {
-webkit-app-region: no-drag;
}
/* /*
* Material icons are too big and disrupt the flow of text * Material icons are too big and disrupt the flow of text
*/ */

@ -12,7 +12,7 @@
</div> </div>
<div class="page-content"> <div class="page-content">
<div class="row margin-top"> <div class="row margin-top noselect">
<div class="col text-align-center"> <div class="col text-align-center">
<div <div
id="delivery-progress-gauge" id="delivery-progress-gauge"

Loading…
Cancel
Save