Graphics edits

GitIgnore .idea folder
Minor graphics changes
This commit is contained in:
Incnas
2017-11-20 20:18:52 +11:00
parent 68040a3c67
commit cce224b3f7
7 changed files with 14 additions and 17 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
/node_modules
/npm-debug.log
/app/public/external
/app/public/external
/.idea
+1 -9
View File
@@ -233,16 +233,8 @@ html, body {
cursor: pointer;
}
.btn-cancel {
background: #881111;
top: 90px; left: 20px;
}
.btn-ok {
top: 90px; left: 170px;
background: #118811;
}
.btn-cancel:hover {
background: #ff2222;
}
.btn-ok:hover {
background: #22ff22;
}
}
+1 -1
View File
@@ -113,7 +113,7 @@ app.directive("rwcPasswordEntry", function($timeout) {
template: [
"<div class='rwc-password-entry-container' ng-class='{\"hide-me\": !visible}'>",
" <div class='box'>",
" <input type = 'password' placeholder = 'Passcode...' ng-model = 'passcode' />",
" <input type = 'password' placeholder = 'Password...' ng-model = 'passcode' />",
" <div class = 'btn btn-cancel' ng-click = 'reset(null)'>Cancel</div>",
" <div class = 'btn btn-ok' ng-click = 'submit()'>Submit</div>",
" </div>",
+6 -2
View File
@@ -2,7 +2,7 @@
<html lang="en" ng-app="RpiWifiConfig">
<head>
<title>Rpi Wifi Config</title>
<title>Gardenspace Configuration Wizard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
@@ -16,8 +16,12 @@
<body ng-controller = "AppController"
ng-keyup = "$event.keyCode == 27 ? change_selection(null) : ''">
<div>
<img src="/assets/img/logo.jpg" alt="Gardenspace Logo" />
</div>
<div class = "page-header">
<i class = "fa fa-wifi"></i> Choose a Wifi Ap
<i class = "fa fa-wifi"></i> Choose a Wifi AP
<a href = "#" ng-click = "rescan()" ng-class = "{ 'active': scan_running }">
<i class = "fa fa-refresh"
ng-class = "{ 'fa-spin': scan_running }"></i>
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

+3 -3
View File
@@ -3,10 +3,10 @@
"wifi_driver_type": "nl80211",
"access_point": {
"force_reconfigure": true,
"force_reconfigure": false,
"wifi_interface": "wlan0",
"ssid": "rpi-config-ap",
"passphrase": "zzzzzzzz",
"ssid": "gardenspace",
"passphrase": "gardenspace",
"domain": "rpi.config",
"ip_addr": "192.168.44.1",
"netmask": "255.255.255.0",
+1 -1
View File
@@ -68,7 +68,7 @@ async.series([
function start_http_server(next_step) {
console.log("\nHTTP server running...");
require("./app/api.js")(wifi_manager, next_step);
},
}
], function(error) {
if (error) {