[!!!][TASK] Refactor Scss, add Sass-lint and adjust styling
Add variables to allow easy modifications to color, font and also extending Style
This commit is contained in:
parent
6175d6bb7a
commit
ed06ff6b09
3
.sass-lint.yml
Normal file
3
.sass-lint.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
rules:
|
||||||
|
no-color-literals: 0
|
||||||
|
single-line-per-selector: 0
|
|
@ -4,7 +4,7 @@ module.exports = function (grunt) {
|
||||||
grunt.loadTasks("tasks");
|
grunt.loadTasks("tasks");
|
||||||
|
|
||||||
grunt.registerTask("default", ["bower-install-simple", "lint", "copy", "sass", "postcss", "requirejs:default", "inline"]);
|
grunt.registerTask("default", ["bower-install-simple", "lint", "copy", "sass", "postcss", "requirejs:default", "inline"]);
|
||||||
grunt.registerTask("lint", ["eslint"]);
|
grunt.registerTask("lint", ["sasslint", "eslint"]);
|
||||||
grunt.registerTask("dev", ["bower-install-simple", "lint", "copy", "sass", "requirejs:dev"]);
|
grunt.registerTask("dev", ["bower-install-simple", "lint", "copy", "sass", "requirejs:dev"]);
|
||||||
grunt.registerTask("serve", ["dev", "connect:server", "watch"]);
|
grunt.registerTask("serve", ["dev", "connect:server", "watch"]);
|
||||||
};
|
};
|
||||||
|
|
|
@ -54,6 +54,11 @@ Use `grunt serve` for development.
|
||||||
|
|
||||||
Copy `config.json.example` to `build/config.json` and change it to match your community.
|
Copy `config.json.example` to `build/config.json` and change it to match your community.
|
||||||
|
|
||||||
|
|
||||||
|
## Customize style
|
||||||
|
|
||||||
|
Start your development and edit files in `scss/custom/`. Additional information in comments.
|
||||||
|
|
||||||
## dataPath (string/array)
|
## dataPath (string/array)
|
||||||
|
|
||||||
`dataPath` can be either a string containing the address of a [HopGlass Server](https://github.com/plumpudding/hopglass-server) or an array containing multiple addresses.
|
`dataPath` can be either a string containing the address of a [HopGlass Server](https://github.com/plumpudding/hopglass-server) or an array containing multiple addresses.
|
||||||
|
|
7
assets/icons/_icon-mixin.scss
Normal file
7
assets/icons/_icon-mixin.scss
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
@mixin icon($name, $code, $prefix: 'ion-') {
|
||||||
|
.#{$prefix}#{$name} {
|
||||||
|
&:before {
|
||||||
|
content: '#{$code}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,96 +0,0 @@
|
||||||
@font-face {
|
|
||||||
font-family: "Ionicons";
|
|
||||||
src: url("fonts/icon.woff2") format("woff2"),
|
|
||||||
url("fonts/icon.woff") format("woff"),
|
|
||||||
url("fonts/icon.ttf") format("truetype");
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
[class^="ion-"]:before,
|
|
||||||
[class*=" ion-"]:before, .ion-inside {
|
|
||||||
display: inline-block;
|
|
||||||
font-family: "ionicons" !important;
|
|
||||||
speak: none;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
text-transform: none;
|
|
||||||
text-rendering: auto;
|
|
||||||
line-height: 1;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-android-add:before {
|
|
||||||
content: "\f2c7";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-chevron-left:before {
|
|
||||||
content: "\f124";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-chevron-right:before {
|
|
||||||
content: "\f125";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-pin:before {
|
|
||||||
content: "\f3a3";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-wifi:before {
|
|
||||||
content: "\f25c";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-eye:before {
|
|
||||||
content: "\f133";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-ios-arrow-thin-left:before {
|
|
||||||
content: "\f3d5";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-ios-arrow-thin-right:before {
|
|
||||||
content: "\f3d6";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-arrow-up-b:before {
|
|
||||||
content: "\f10d";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-arrow-down-b:before {
|
|
||||||
content: "\f104";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-android-locate:before {
|
|
||||||
content: "\f2e9";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-android-close:before {
|
|
||||||
content: "\f2d7";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-android-lock:before {
|
|
||||||
content: "\f392";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-ios-copy:before {
|
|
||||||
content: "\f41c";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-location:before {
|
|
||||||
content: "\f456";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-android-remove:before {
|
|
||||||
content: "\f2f4";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-ios-person:before {
|
|
||||||
content: "\f47e";
|
|
||||||
}
|
|
||||||
|
|
||||||
.ion-layer:before {
|
|
||||||
content: "\f229";
|
|
||||||
}
|
|
45
assets/icons/icon.scss
Normal file
45
assets/icons/icon.scss
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
// Needed for standalone scss
|
||||||
|
// @import 'icon-mixin';
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'ionicons';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: url('fonts/icon.woff2') format('woff2'),
|
||||||
|
url('fonts/icon.woff') format('woff'),
|
||||||
|
url('fonts/icon.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
[class^='ion-'], [class*=' ion-'] {
|
||||||
|
&:before {
|
||||||
|
display: inline-block;
|
||||||
|
font-family: $font-family-icons;
|
||||||
|
font-style: normal;
|
||||||
|
font-variant: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
speak: none;
|
||||||
|
text-rendering: auto;
|
||||||
|
text-transform: none;
|
||||||
|
vertical-align: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include icon('android-add', '\f2c7');
|
||||||
|
@include icon('chevron-left', '\f124');
|
||||||
|
@include icon('chevron-right', '\f125');
|
||||||
|
@include icon('pin', '\f3a3');
|
||||||
|
@include icon('wifi', '\f25c');
|
||||||
|
@include icon('eye', '\f133');
|
||||||
|
@include icon('ios-arrow-thin-left', '\f3d5');
|
||||||
|
@include icon('ios-arrow-thin-right', '\f3d6');
|
||||||
|
@include icon('arrow-up-b', '\f10d');
|
||||||
|
@include icon('arrow-down-b', '\f104');
|
||||||
|
@include icon('android-locate', '\f2e9');
|
||||||
|
@include icon('android-close', '\f2d7');
|
||||||
|
@include icon('android-lock', '\f392');
|
||||||
|
@include icon('ios-copy', '\f41c');
|
||||||
|
@include icon('location', '\f456');
|
||||||
|
@include icon('android-remove', '\f2f4');
|
||||||
|
@include icon('ios-person', '\f47e');
|
||||||
|
@include icon('layer', '\f229');
|
|
@ -3,7 +3,6 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||||||
<link rel="stylesheet" href="hopglass-icons.css?__inline=true">
|
|
||||||
<link rel="stylesheet" href="roboto-slab-fontface.css">
|
<link rel="stylesheet" href="roboto-slab-fontface.css">
|
||||||
<link rel="stylesheet" href="roboto-fontface.css">
|
<link rel="stylesheet" href="roboto-fontface.css">
|
||||||
<link rel="stylesheet" href="style.css?__inline=true">
|
<link rel="stylesheet" href="style.css?__inline=true">
|
||||||
|
|
|
@ -3,8 +3,6 @@ define(function () {
|
||||||
|
|
||||||
return function () {
|
return function () {
|
||||||
this.render = function (d) {
|
this.render = function (d) {
|
||||||
var el = document.createElement("div");
|
|
||||||
d.appendChild(el);
|
|
||||||
var s = "<h2>Über HopGlass</h2>";
|
var s = "<h2>Über HopGlass</h2>";
|
||||||
|
|
||||||
s += "<p>Mit Doppelklick und Shift+Doppelklick kann man in der Karte ";
|
s += "<p>Mit Doppelklick und Shift+Doppelklick kann man in der Karte ";
|
||||||
|
@ -34,7 +32,7 @@ define(function () {
|
||||||
s += "<a href=\"https://github.com/plumpudding/hopglass\">";
|
s += "<a href=\"https://github.com/plumpudding/hopglass\">";
|
||||||
s += "https://github.com/plumpudding/hopglass</a>.";
|
s += "https://github.com/plumpudding/hopglass</a>.";
|
||||||
|
|
||||||
el.innerHTML = s;
|
d.innerHTML = s;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -17,13 +17,11 @@ define(function () {
|
||||||
|
|
||||||
filters.forEach(function (d) {
|
filters.forEach(function (d) {
|
||||||
var li = document.createElement("li");
|
var li = document.createElement("li");
|
||||||
var div = document.createElement("div");
|
|
||||||
container.appendChild(li);
|
container.appendChild(li);
|
||||||
li.appendChild(div);
|
d.render(li);
|
||||||
d.render(div);
|
|
||||||
|
|
||||||
var button = document.createElement("button");
|
var button = document.createElement("button");
|
||||||
button.textContent = "";
|
button.classList.add("ion-android-close");
|
||||||
button.onclick = function () {
|
button.onclick = function () {
|
||||||
distributor.removeFilter(d);
|
distributor.removeFilter(d);
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ define(["helper"], function (helper) {
|
||||||
|
|
||||||
var label = document.createElement("label");
|
var label = document.createElement("label");
|
||||||
var strong = document.createElement("strong");
|
var strong = document.createElement("strong");
|
||||||
label.textContent = name + " ";
|
label.textContent = name + ": ";
|
||||||
label.appendChild(strong);
|
label.appendChild(strong);
|
||||||
|
|
||||||
function run(d) {
|
function run(d) {
|
||||||
|
@ -26,12 +26,12 @@ define(["helper"], function (helper) {
|
||||||
|
|
||||||
function draw(el) {
|
function draw(el) {
|
||||||
if (negate) {
|
if (negate) {
|
||||||
el.parentNode.classList.add("not");
|
el.classList.add("not");
|
||||||
} else {
|
} else {
|
||||||
el.parentNode.classList.remove("not");
|
el.classList.remove("not");
|
||||||
}
|
}
|
||||||
|
|
||||||
strong.textContent = (negate ? "¬" : "" ) + value;
|
strong.textContent = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
function render(el) {
|
function render(el) {
|
||||||
|
|
|
@ -63,7 +63,7 @@ define(["chroma-js", "map", "sidebar", "tabs", "container", "meshstats",
|
||||||
contentDiv.appendChild(buttons);
|
contentDiv.appendChild(buttons);
|
||||||
|
|
||||||
var buttonToggle = document.createElement("button");
|
var buttonToggle = document.createElement("button");
|
||||||
buttonToggle.textContent = "\uF133";
|
buttonToggle.classList.add("ion-eye", "shadow");
|
||||||
buttonToggle.onclick = function () {
|
buttonToggle.onclick = function () {
|
||||||
if (content.constructor === Map) {
|
if (content.constructor === Map) {
|
||||||
router.view("g");
|
router.view("g");
|
||||||
|
|
|
@ -11,17 +11,23 @@ define(["helper"], function (helper) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return function (config, el, router, d) {
|
return function (config, el, router, d) {
|
||||||
var unknown = !(d.source.node);
|
var unknown = !d.source.node;
|
||||||
var h2 = document.createElement("h2");
|
var h2 = document.createElement("h2");
|
||||||
var a1 = document.createElement("a");
|
var a1;
|
||||||
if (!unknown) {
|
if (!unknown) {
|
||||||
|
a1 = document.createElement("a");
|
||||||
a1.href = "#";
|
a1.href = "#";
|
||||||
a1.onclick = router.node(d.source.node);
|
a1.onclick = router.node(d.source.node);
|
||||||
|
} else {
|
||||||
|
a1 = document.createElement("span");
|
||||||
}
|
}
|
||||||
a1.textContent = unknown ? d.source.id : d.source.node.nodeinfo.hostname;
|
a1.textContent = unknown ? d.source.id : d.source.node.nodeinfo.hostname;
|
||||||
h2.appendChild(a1);
|
h2.appendChild(a1);
|
||||||
h2.appendChild(document.createTextNode(" \uF3D6 "));
|
|
||||||
h2.className = "ion-inside";
|
var arrow = document.createElement("spam");
|
||||||
|
arrow.classList.add("ion-ios-arrow-thin-right");
|
||||||
|
h2.appendChild(arrow);
|
||||||
|
|
||||||
var a2 = document.createElement("a");
|
var a2 = document.createElement("a");
|
||||||
a2.href = "#";
|
a2.href = "#";
|
||||||
a2.onclick = router.node(d.target.node);
|
a2.onclick = router.node(d.target.node);
|
||||||
|
|
|
@ -31,7 +31,7 @@ define(["helper"], function (helper) {
|
||||||
"uci set gluon-node-info.@location[0].longitude='" + d.lng.toFixed(9) + "';" +
|
"uci set gluon-node-info.@location[0].longitude='" + d.lng.toFixed(9) + "';" +
|
||||||
"uci commit gluon-node-info";
|
"uci commit gluon-node-info";
|
||||||
|
|
||||||
el.appendChild(createBox("uci", "Befehl", editUci, false));
|
el.appendChild(createBox("uci", "Uci", editUci));
|
||||||
|
|
||||||
var linkPlain = document.createElement("a");
|
var linkPlain = document.createElement("a");
|
||||||
linkPlain.textContent = "plain";
|
linkPlain.textContent = "plain";
|
||||||
|
@ -49,22 +49,13 @@ define(["helper"], function (helper) {
|
||||||
};
|
};
|
||||||
linkUci.href = "#";
|
linkUci.href = "#";
|
||||||
|
|
||||||
var hintText = document.createElement("p");
|
function createBox(name, title, inputElem) {
|
||||||
hintText.appendChild(document.createTextNode("Du kannst zwischen "));
|
|
||||||
hintText.appendChild(linkPlain);
|
|
||||||
hintText.appendChild(document.createTextNode(" und "));
|
|
||||||
hintText.appendChild(linkUci);
|
|
||||||
hintText.appendChild(document.createTextNode(" wechseln."));
|
|
||||||
el.appendChild(hintText);
|
|
||||||
|
|
||||||
function createBox(name, title, inputElem, isVisible) {
|
|
||||||
var visible = typeof isVisible !== "undefined" ? isVisible : true;
|
|
||||||
var box = document.createElement("div");
|
var box = document.createElement("div");
|
||||||
var heading = document.createElement("h3");
|
var heading = document.createElement("h3");
|
||||||
heading.textContent = title;
|
heading.textContent = title;
|
||||||
box.appendChild(heading);
|
box.appendChild(heading);
|
||||||
var btn = document.createElement("button");
|
var btn = document.createElement("button");
|
||||||
btn.className = "ion-ios-copy";
|
btn.classList.add("ion-ios-copy");
|
||||||
btn.title = "Kopieren";
|
btn.title = "Kopieren";
|
||||||
btn.onclick = function () {
|
btn.onclick = function () {
|
||||||
copy2clip(inputElem.id);
|
copy2clip(inputElem.id);
|
||||||
|
@ -76,7 +67,6 @@ define(["helper"], function (helper) {
|
||||||
line.appendChild(btn);
|
line.appendChild(btn);
|
||||||
box.appendChild(line);
|
box.appendChild(line);
|
||||||
box.id = "box-" + name;
|
box.id = "box-" + name;
|
||||||
box.style.display = visible ? "block" : "none";
|
|
||||||
return box;
|
return box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,16 +80,5 @@ define(["helper"], function (helper) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function switch2plain() {
|
|
||||||
document.getElementById("box-uci").style.display = "none";
|
|
||||||
document.getElementById("box-lat").style.display = "block";
|
|
||||||
document.getElementById("box-lng").style.display = "block";
|
|
||||||
}
|
|
||||||
|
|
||||||
function switch2uci() {
|
|
||||||
document.getElementById("box-uci").style.display = "block";
|
|
||||||
document.getElementById("box-lat").style.display = "none";
|
|
||||||
document.getElementById("box-lng").style.display = "none";
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -26,7 +26,7 @@ define(["infobox/link", "infobox/node", "infobox/location"], function (Link, Nod
|
||||||
el.destroy = destroy;
|
el.destroy = destroy;
|
||||||
|
|
||||||
var closeButton = document.createElement("button");
|
var closeButton = document.createElement("button");
|
||||||
closeButton.classList.add("close");
|
closeButton.classList.add("close", "ion-android-close");
|
||||||
closeButton.onclick = router.reset;
|
closeButton.onclick = router.reset;
|
||||||
el.appendChild(closeButton);
|
el.appendChild(closeButton);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
define(["moment", "tablesort", "helper", "moment.de"],
|
define(["chroma-js", "moment", "tablesort", "helper", "moment.de"],
|
||||||
function (moment, Tablesort, helper) {
|
function (chroma, moment, Tablesort, helper) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function showGeoURI(d) {
|
function showGeoURI(d) {
|
||||||
|
@ -158,7 +158,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
|
|
||||||
var span = document.createElement("span");
|
var span = document.createElement("span");
|
||||||
span.classList.add("clients");
|
span.classList.add("clients");
|
||||||
span.textContent = "\uF47E ".repeat(d.statistics.clients);
|
span.innerHTML = "<i class=\"ion-ios-person\"></i>".repeat(d.statistics.clients);
|
||||||
el.appendChild(span);
|
el.appendChild(span);
|
||||||
|
|
||||||
var spanmesh = document.createElement("span");
|
var spanmesh = document.createElement("span");
|
||||||
|
@ -255,8 +255,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
|
|
||||||
function showBar(className, v) {
|
function showBar(className, v) {
|
||||||
var span = document.createElement("span");
|
var span = document.createElement("span");
|
||||||
span.classList.add("bar");
|
span.classList.add("bar", className);
|
||||||
span.classList.add(className);
|
|
||||||
|
|
||||||
var bar = document.createElement("span");
|
var bar = document.createElement("span");
|
||||||
bar.style.width = (v * 100) + "%";
|
bar.style.width = (v * 100) + "%";
|
||||||
|
@ -271,8 +270,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
|
|
||||||
function showLoadBar(className, v) {
|
function showLoadBar(className, v) {
|
||||||
var span = document.createElement("span");
|
var span = document.createElement("span");
|
||||||
span.classList.add("bar");
|
span.classList.add("bar", className);
|
||||||
span.classList.add(className);
|
|
||||||
|
|
||||||
var bar = document.createElement("span");
|
var bar = document.createElement("span");
|
||||||
if (v >= 1) {
|
if (v >= 1) {
|
||||||
|
@ -411,7 +409,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
link.href = webpage;
|
link.href = webpage;
|
||||||
if (webpage.search(/^https:\/\//i) !== -1) {
|
if (webpage.search(/^https:\/\//i) !== -1) {
|
||||||
var lock = document.createElement("span");
|
var lock = document.createElement("span");
|
||||||
lock.className = "ion-android-lock";
|
lock.classList.add("ion-android-lock");
|
||||||
a.appendChild(lock);
|
a.appendChild(lock);
|
||||||
var t1 = document.createTextNode(" ");
|
var t1 = document.createTextNode(" ");
|
||||||
a.appendChild(t1);
|
a.appendChild(t1);
|
||||||
|
@ -476,6 +474,11 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
}
|
}
|
||||||
|
|
||||||
return function (config, el, router, d) {
|
return function (config, el, router, d) {
|
||||||
|
var linkScale = chroma.scale(chroma.bezier(["#04C714", "#FF5500", "#F02311"])).domain([1, 5]);
|
||||||
|
var h2 = document.createElement("h2");
|
||||||
|
h2.textContent = d.nodeinfo.hostname;
|
||||||
|
el.appendChild(h2);
|
||||||
|
|
||||||
var attributes = document.createElement("table");
|
var attributes = document.createElement("table");
|
||||||
attributes.classList.add("attributes");
|
attributes.classList.add("attributes");
|
||||||
|
|
||||||
|
@ -495,9 +498,9 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
}
|
}
|
||||||
helper.attributeEntry(attributes, top, d.nodeinfo.hostname);
|
helper.attributeEntry(attributes, top, d.nodeinfo.hostname);
|
||||||
} else {
|
} else {
|
||||||
var h2 = document.createElement("h2");
|
var heading = document.createElement("h2");
|
||||||
h2.textContent = d.nodeinfo.hostname;
|
heading.textContent = d.nodeinfo.hostname;
|
||||||
el.appendChild(h2);
|
el.appendChild(heading);
|
||||||
}
|
}
|
||||||
|
|
||||||
helper.attributeEntry(attributes, "Status", showStatus(d));
|
helper.attributeEntry(attributes, "Status", showStatus(d));
|
||||||
|
@ -579,28 +582,34 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
var tr = document.createElement("tr");
|
var tr = document.createElement("tr");
|
||||||
|
|
||||||
var td1 = document.createElement("td");
|
var td1 = document.createElement("td");
|
||||||
td1.className = "ion-inside";
|
|
||||||
td1.appendChild(document.createTextNode(d.incoming ? " \uF3D5 " : " \uF3D6 "));
|
|
||||||
tr.appendChild(td1);
|
|
||||||
|
|
||||||
var td2 = document.createElement("td");
|
var direction = document.createElement("span");
|
||||||
td2.appendChild(createLink(d, router));
|
direction.classList.add(d.incoming ? "ion-ios-arrow-thin-left" : "ion-ios-arrow-thin-right");
|
||||||
|
td1.appendChild(direction);
|
||||||
|
|
||||||
if (!unknown && helper.hasLocation(d.node)) {
|
if (!unknown && helper.hasLocation(d.node)) {
|
||||||
var span = document.createElement("span");
|
var span = document.createElement("span");
|
||||||
span.classList.add("icon");
|
span.classList.add("icon", "ion-location");
|
||||||
span.classList.add("ion-location");
|
td1.appendChild(span);
|
||||||
td2.appendChild(span);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr.appendChild(td1);
|
||||||
|
|
||||||
|
var td2 = document.createElement("td");
|
||||||
|
var a1 = document.createElement("a");
|
||||||
|
a1.classList.add("hostname", d.link.target.node.flags.online ? "online" : "unseen");
|
||||||
|
a1.textContent = unknown ? d.id : d.node.nodeinfo.hostname;
|
||||||
|
if (!unknown) {
|
||||||
|
a1.href = "#";
|
||||||
|
}
|
||||||
|
a1.onclick = router.node(d.node);
|
||||||
|
td2.appendChild(a1);
|
||||||
|
|
||||||
tr.appendChild(td2);
|
tr.appendChild(td2);
|
||||||
|
|
||||||
var td3 = document.createElement("td");
|
var td3 = document.createElement("td");
|
||||||
var a2 = document.createElement("a");
|
td3.textContent = helper.showTq(d.link);
|
||||||
a2.href = "#";
|
td3.style.color = linkScale(d.link.tq).hex();
|
||||||
a2.textContent = helper.showTq(d.link);
|
|
||||||
a2.onclick = router.link(d.link);
|
|
||||||
td3.appendChild(a2);
|
|
||||||
tr.appendChild(td3);
|
tr.appendChild(td3);
|
||||||
|
|
||||||
var td4 = document.createElement("td");
|
var td4 = document.createElement("td");
|
||||||
|
@ -612,11 +621,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
tr.appendChild(td4);
|
tr.appendChild(td4);
|
||||||
|
|
||||||
var td5 = document.createElement("td");
|
var td5 = document.createElement("td");
|
||||||
var a4 = document.createElement("a");
|
td5.textContent = helper.showDistance(d.link);
|
||||||
a4.href = "#";
|
|
||||||
a4.textContent = helper.showDistance(d.link);
|
|
||||||
a4.onclick = router.link(d.link);
|
|
||||||
td5.appendChild(a4);
|
|
||||||
td5.setAttribute("data-sort", d.link.distance !== undefined ? -d.link.distance : 1);
|
td5.setAttribute("data-sort", d.link.distance !== undefined ? -d.link.distance : 1);
|
||||||
tr.appendChild(td5);
|
tr.appendChild(td5);
|
||||||
|
|
||||||
|
@ -624,7 +629,7 @@ define(["moment", "tablesort", "helper", "moment.de"],
|
||||||
});
|
});
|
||||||
|
|
||||||
table.appendChild(tbody);
|
table.appendChild(tbody);
|
||||||
table.className = "node-links";
|
table.classList.add("node-links");
|
||||||
|
|
||||||
Tablesort(table);
|
Tablesort(table);
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ define(["sorttable", "virtual-dom", "helper"], function (SortTable, V, helper) {
|
||||||
|
|
||||||
return function (linkScale, router) {
|
return function (linkScale, router) {
|
||||||
var table = new SortTable(headings, 2, renderRow);
|
var table = new SortTable(headings, 2, renderRow);
|
||||||
|
table.el.classList.add("link-list");
|
||||||
|
|
||||||
function renderRow(d) {
|
function renderRow(d) {
|
||||||
var td1Content = [V.h("a", {href: "#", onclick: router.link(d)}, linkName(d))];
|
var td1Content = [V.h("a", {href: "#", onclick: router.link(d)}, linkName(d))];
|
||||||
|
@ -50,15 +51,11 @@ define(["sorttable", "virtual-dom", "helper"], function (SortTable, V, helper) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.render = function (d) {
|
this.render = function (d) {
|
||||||
var el = document.createElement("div");
|
|
||||||
el.last = V.h("div");
|
|
||||||
d.appendChild(el);
|
|
||||||
|
|
||||||
var h2 = document.createElement("h2");
|
var h2 = document.createElement("h2");
|
||||||
h2.textContent = "Verbindungen";
|
h2.textContent = "Verbindungen";
|
||||||
el.appendChild(h2);
|
d.appendChild(h2);
|
||||||
|
|
||||||
el.appendChild(table.el);
|
d.appendChild(table.el);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.setData = function (d) {
|
this.setData = function (d) {
|
||||||
|
|
|
@ -206,7 +206,7 @@ define(["moment", "router", "leaflet", "gui", "helper", "moment.de"],
|
||||||
|
|
||||||
var urls = [];
|
var urls = [];
|
||||||
|
|
||||||
if (typeof config.dataPath === "string" || config.dataPath instanceof String) {
|
if (typeof config.dataPath === "string") {
|
||||||
config.dataPath = [config.dataPath];
|
config.dataPath = [config.dataPath];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
10
lib/map.js
10
lib/map.js
|
@ -20,8 +20,7 @@ define(["map/clientlayer", "map/labelslayer",
|
||||||
},
|
},
|
||||||
|
|
||||||
onAdd: function () {
|
onAdd: function () {
|
||||||
var button = L.DomUtil.create("button", "add-layer");
|
var button = L.DomUtil.create("button", "add-layer ion-android-add shadow");
|
||||||
button.textContent = "\uF2C7";
|
|
||||||
|
|
||||||
// L.DomEvent.disableClickPropagation(button)
|
// L.DomEvent.disableClickPropagation(button)
|
||||||
// Click propagation isn't disabled as this causes problems with the
|
// Click propagation isn't disabled as this causes problems with the
|
||||||
|
@ -48,9 +47,7 @@ define(["map/clientlayer", "map/labelslayer",
|
||||||
},
|
},
|
||||||
|
|
||||||
onAdd: function () {
|
onAdd: function () {
|
||||||
var button = L.DomUtil.create("button", "locate-user");
|
var button = L.DomUtil.create("button", "locate-user ion-android-locate shadow");
|
||||||
button.textContent = "\uF2E9";
|
|
||||||
|
|
||||||
L.DomEvent.disableClickPropagation(button);
|
L.DomEvent.disableClickPropagation(button);
|
||||||
L.DomEvent.addListener(button, "click", this.onClick, this);
|
L.DomEvent.addListener(button, "click", this.onClick, this);
|
||||||
|
|
||||||
|
@ -87,8 +84,7 @@ define(["map/clientlayer", "map/labelslayer",
|
||||||
},
|
},
|
||||||
|
|
||||||
onAdd: function () {
|
onAdd: function () {
|
||||||
var button = L.DomUtil.create("button", "coord-picker");
|
var button = L.DomUtil.create("button", "coord-picker ion-pin shadow");
|
||||||
button.textContent = "\uF3A3";
|
|
||||||
|
|
||||||
// Click propagation isn't disabled as this causes problems with the
|
// Click propagation isn't disabled as this causes problems with the
|
||||||
// location picking mode; instead propagation is stopped in onClick().
|
// location picking mode; instead propagation is stopped in onClick().
|
||||||
|
|
|
@ -25,6 +25,8 @@ define(["sorttable", "virtual-dom", "helper"], function (SortTable, V, helper) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var headings = [{
|
var headings = [{
|
||||||
|
name: ''
|
||||||
|
}, {
|
||||||
name: "Knoten",
|
name: "Knoten",
|
||||||
sort: function (a, b) {
|
sort: function (a, b) {
|
||||||
var aname = typeof a.nodeinfo.hostname === "string" ? a.nodeinfo.hostname : a.nodeinfo.node_id;
|
var aname = typeof a.nodeinfo.hostname === "string" ? a.nodeinfo.hostname : a.nodeinfo.node_id;
|
||||||
|
@ -61,6 +63,7 @@ define(["sorttable", "virtual-dom", "helper"], function (SortTable, V, helper) {
|
||||||
|
|
||||||
return function (router) {
|
return function (router) {
|
||||||
function renderRow(d) {
|
function renderRow(d) {
|
||||||
|
var td0Content = [];
|
||||||
var td1Content = [];
|
var td1Content = [];
|
||||||
var aClass = ["hostname", d.flags.online ? "online" : "offline"];
|
var aClass = ["hostname", d.flags.online ? "online" : "offline"];
|
||||||
|
|
||||||
|
@ -71,28 +74,27 @@ define(["sorttable", "virtual-dom", "helper"], function (SortTable, V, helper) {
|
||||||
}, d.nodeinfo.hostname));
|
}, d.nodeinfo.hostname));
|
||||||
|
|
||||||
if (helper.hasLocation(d)) {
|
if (helper.hasLocation(d)) {
|
||||||
td1Content.push(V.h("span", {className: "icon ion-location"}));
|
td0Content.push(V.h("span", {className: "icon ion-location"}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var td0 = V.h("td", td0Content);
|
||||||
var td1 = V.h("td", td1Content);
|
var td1 = V.h("td", td1Content);
|
||||||
var td2 = V.h("td", showUptime(d.uptime));
|
var td2 = V.h("td", showUptime(d.uptime));
|
||||||
var td3 = V.h("td", d.meshlinks.toString());
|
var td3 = V.h("td", d.meshlinks.toString());
|
||||||
var td4 = V.h("td", ("clients" in d.statistics ? d.statistics.clients : 0).toFixed(0));
|
var td4 = V.h("td", ("clients" in d.statistics ? d.statistics.clients : 0).toFixed(0));
|
||||||
|
|
||||||
return V.h("tr", [td1, td2, td3, td4]);
|
return V.h("tr", [td0, td1, td2, td3, td4]);
|
||||||
}
|
}
|
||||||
|
|
||||||
var table = new SortTable(headings, 0, renderRow);
|
var table = new SortTable(headings, 1, renderRow);
|
||||||
|
table.el.classList.add('node-list');
|
||||||
|
|
||||||
this.render = function (d) {
|
this.render = function (d) {
|
||||||
var el = document.createElement("div");
|
|
||||||
d.appendChild(el);
|
|
||||||
|
|
||||||
var h2 = document.createElement("h2");
|
var h2 = document.createElement("h2");
|
||||||
h2.textContent = "Alle Knoten";
|
h2.textContent = "Alle Knoten";
|
||||||
el.appendChild(h2);
|
d.appendChild(h2);
|
||||||
|
|
||||||
el.appendChild(table.el);
|
d.appendChild(table.el);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.setData = function (d) {
|
this.setData = function (d) {
|
||||||
|
|
|
@ -11,7 +11,7 @@ define(function () {
|
||||||
var button = document.createElement("button");
|
var button = document.createElement("button");
|
||||||
sidebar.appendChild(button);
|
sidebar.appendChild(button);
|
||||||
|
|
||||||
button.classList.add("sidebarhandle");
|
button.classList.add("sidebarhandle", "shadow");
|
||||||
button.onclick = function () {
|
button.onclick = function () {
|
||||||
sidebar.classList.toggle("hidden");
|
sidebar.classList.toggle("hidden");
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,8 +6,7 @@ define(["moment", "virtual-dom", "helper", "moment.de"], function (moment, V, he
|
||||||
var el, tbody;
|
var el, tbody;
|
||||||
|
|
||||||
self.render = function (d) {
|
self.render = function (d) {
|
||||||
el = document.createElement("div");
|
el = d;
|
||||||
d.appendChild(el);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
self.setData = function (data) {
|
self.setData = function (data) {
|
||||||
|
@ -29,6 +28,7 @@ define(["moment", "virtual-dom", "helper", "moment.de"], function (moment, V, he
|
||||||
el.appendChild(h2);
|
el.appendChild(h2);
|
||||||
|
|
||||||
var table = document.createElement("table");
|
var table = document.createElement("table");
|
||||||
|
table.classList.add("node-list");
|
||||||
el.appendChild(table);
|
el.appendChild(table);
|
||||||
|
|
||||||
tbody = document.createElement("tbody");
|
tbody = document.createElement("tbody");
|
||||||
|
@ -38,6 +38,7 @@ define(["moment", "virtual-dom", "helper", "moment.de"], function (moment, V, he
|
||||||
|
|
||||||
var items = list.map(function (d) {
|
var items = list.map(function (d) {
|
||||||
var time = moment(d[field]).from(data.now);
|
var time = moment(d[field]).from(data.now);
|
||||||
|
var td0Content = [];
|
||||||
var td1Content = [];
|
var td1Content = [];
|
||||||
|
|
||||||
var aClass = ["hostname", d.flags.online ? "online" : "offline"];
|
var aClass = ["hostname", d.flags.online ? "online" : "offline"];
|
||||||
|
@ -49,13 +50,14 @@ define(["moment", "virtual-dom", "helper", "moment.de"], function (moment, V, he
|
||||||
}, d.nodeinfo.hostname));
|
}, d.nodeinfo.hostname));
|
||||||
|
|
||||||
if (helper.hasLocation(d)) {
|
if (helper.hasLocation(d)) {
|
||||||
td1Content.push(V.h("span", {className: "icon ion-location"}));
|
td0Content.push(V.h("span", {className: "icon ion-location"}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var td0 = V.h("td", td0Content);
|
||||||
var td1 = V.h("td", td1Content);
|
var td1 = V.h("td", td1Content);
|
||||||
var td2 = V.h("td", time);
|
var td2 = V.h("td", time);
|
||||||
|
|
||||||
return V.h("tr", [td1, td2]);
|
return V.h("tr", [td0, td1, td2]);
|
||||||
});
|
});
|
||||||
|
|
||||||
var tbodyNew = V.h("tbody", items);
|
var tbodyNew = V.h("tbody", items);
|
||||||
|
|
|
@ -21,14 +21,14 @@
|
||||||
"grunt-contrib-clean": "^1.0.0",
|
"grunt-contrib-clean": "^1.0.0",
|
||||||
"grunt-contrib-connect": "^1.0.2",
|
"grunt-contrib-connect": "^1.0.2",
|
||||||
"grunt-contrib-copy": "^1.0.0",
|
"grunt-contrib-copy": "^1.0.0",
|
||||||
"grunt-contrib-cssmin": "^1.0.1",
|
|
||||||
"grunt-contrib-requirejs": "^1.0.0",
|
"grunt-contrib-requirejs": "^1.0.0",
|
||||||
"grunt-contrib-uglify": "^1.0.1",
|
"grunt-contrib-uglify": "^1.0.1",
|
||||||
"grunt-contrib-watch": "^1.0.0",
|
"grunt-contrib-watch": "^1.0.0",
|
||||||
"grunt-eslint": "^18.1.0",
|
"grunt-eslint": "^18.1.0",
|
||||||
"grunt-inline": "^0.3.6",
|
"grunt-inline": "^0.3.6",
|
||||||
"grunt-postcss": "^0.8.0",
|
"grunt-postcss": "^0.8.0",
|
||||||
"grunt-sass": "^1.2.0"
|
"grunt-sass": "^1.2.0",
|
||||||
|
"grunt-sass-lint": "^0.2.0"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"env": {
|
"env": {
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
.filters {
|
|
||||||
margin: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
font-family: Roboto, sans-serif;
|
|
||||||
font-size: 0.83em;
|
|
||||||
font-weight: bold;
|
|
||||||
padding: 0 6pt 6pt !important;
|
|
||||||
|
|
||||||
li {
|
|
||||||
border-radius: 20pt;
|
|
||||||
display: flex;
|
|
||||||
padding: 0 0 0 8pt;
|
|
||||||
margin: 3pt;
|
|
||||||
align-items: center;
|
|
||||||
background: #009ee0;
|
|
||||||
color: rgba(255, 255, 255, 0.8);
|
|
||||||
|
|
||||||
label {
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
strong {
|
|
||||||
color: rgba(255, 255, 255, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.not {
|
|
||||||
background: #dc0067;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
box-shadow: none;
|
|
||||||
margin: 2pt;
|
|
||||||
padding: 0;
|
|
||||||
width: 18pt;
|
|
||||||
height: 18pt;
|
|
||||||
background: rgba(255, 255, 255, 0.0);
|
|
||||||
font-size: 12pt;
|
|
||||||
vertical-align: middle;
|
|
||||||
color: rgba(255, 255, 255, 0.8);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
box-shadow: none !important;
|
|
||||||
color: #dc0067;
|
|
||||||
background: rgba(255, 255, 255, 0.9);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
.legend .symbol {
|
|
||||||
width: 1em;
|
|
||||||
height: 1em;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: -5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend-new .symbol {
|
|
||||||
background-color: #93E929;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend-online .symbol {
|
|
||||||
background-color: #1566A9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend-offline .symbol {
|
|
||||||
background-color: #D43E2A;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend-online, .legend-offline {
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
|
@ -1,59 +0,0 @@
|
||||||
.stroke-first {
|
|
||||||
paint-order: stroke;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pick-coordinates {
|
|
||||||
cursor: crosshair;
|
|
||||||
}
|
|
||||||
|
|
||||||
.map {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
|
|
||||||
.node-alert {
|
|
||||||
-webkit-animation: blink 2s linear;
|
|
||||||
-webkit-animation-iteration-count: infinite;
|
|
||||||
animation: blink 2s linear;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-top button.leaflet-control {
|
|
||||||
margin-top: $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-bottom button.leaflet-control {
|
|
||||||
margin-bottom: $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-left button.leaflet-control {
|
|
||||||
margin-left: $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-right button.leaflet-control {
|
|
||||||
margin-right: $buttondistance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes blink {
|
|
||||||
0% {
|
|
||||||
opacity: 1.0;
|
|
||||||
}
|
|
||||||
80% {
|
|
||||||
opacity: 1.0;
|
|
||||||
}
|
|
||||||
90% {
|
|
||||||
opacity: 0.0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink {
|
|
||||||
0% {
|
|
||||||
opacity: 1.0;
|
|
||||||
}
|
|
||||||
80% {
|
|
||||||
opacity: 1.0;
|
|
||||||
}
|
|
||||||
90% {
|
|
||||||
opacity: 0.0;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
/* Original is in LESS and can be found here: https://gist.github.com/gefangenimnetz/3ef3e18364edf105c5af */
|
|
||||||
|
|
||||||
@mixin shadow($level:1) {
|
|
||||||
@if $level == 1 {
|
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
||||||
} @else if $level == 2 {
|
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
|
||||||
} @else if $level == 3 {
|
|
||||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
|
||||||
} @else if $level == 4 {
|
|
||||||
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
|
||||||
} @else if $level == 5 {
|
|
||||||
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
|
|
||||||
}
|
|
||||||
}
|
|
10
scss/custom/_custom.scss
Normal file
10
scss/custom/_custom.scss
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
// Example of overwriting variables. Take a look at modules/variables
|
||||||
|
// .node-links {
|
||||||
|
// color: $color-primary;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// You can also include additional files for style example https://github.com/ffrgb/meshviewer/tree/ffrgb-config/scss/custom
|
||||||
|
// Include syntax: @include "name" -> Filename: _name.scss
|
||||||
|
|
||||||
|
// SCSS supports css with a lot of additional features like variables or mixins.
|
||||||
|
// Autoprefixer runs in postcss, no need to add browser-prefixes like -webkit, -moz or -ms
|
4
scss/custom/_variables.scss
Normal file
4
scss/custom/_variables.scss
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
// Example of overwriting variables. Take a look at modules/variables
|
||||||
|
//$color-black: #fff;
|
||||||
|
//$color-white: invert($color-white);
|
||||||
|
//$color-primary: invert($color-primary);
|
521
scss/main.scss
521
scss/main.scss
|
@ -1,495 +1,26 @@
|
||||||
@import '_reset';
|
// Set variables
|
||||||
@import '_shadow';
|
@import 'modules/variables';
|
||||||
@import '_base';
|
@import 'custom/variables';
|
||||||
@import '_leaflet';
|
// Add modules
|
||||||
@import '_leaflet.label';
|
@import 'mixins/shadow';
|
||||||
@import '_leaflet-layer';
|
@import 'mixins/icon-mixin';
|
||||||
@import '_filters';
|
@import 'modules/reset';
|
||||||
@import '_loader';
|
@import 'modules/base';
|
||||||
|
@import 'modules/icon';
|
||||||
$minscreenwidth: 630pt;
|
@import 'leaflet';
|
||||||
$sidebarwidth: 420pt;
|
@import 'leaflet.label';
|
||||||
$sidebarwidthsmall: 320pt;
|
@import 'modules/leaflet-layer';
|
||||||
$buttondistance: 12pt;
|
@import 'modules/table';
|
||||||
|
@import 'modules/filter';
|
||||||
@import '_sidebar';
|
@import 'modules/sidebar';
|
||||||
@import '_map';
|
@import 'modules/map';
|
||||||
@import '_forcegraph';
|
@import 'modules/forcegraph';
|
||||||
@import '_legend';
|
@import 'modules/legend';
|
||||||
|
@import 'modules/proportion';
|
||||||
.content {
|
@import 'modules/tabs';
|
||||||
position: fixed;
|
@import 'modules/node';
|
||||||
width: 100%;
|
@import 'modules/infobox';
|
||||||
height: 100vh;
|
@import 'modules/button';
|
||||||
|
|
||||||
.buttons {
|
// Make adjustments in custom scss
|
||||||
direction: rtl;
|
@import 'custom/custom';
|
||||||
unicode-bidi: bidi-override;
|
|
||||||
|
|
||||||
z-index: 100;
|
|
||||||
position: absolute;
|
|
||||||
top: $buttondistance;
|
|
||||||
right: $buttondistance;
|
|
||||||
|
|
||||||
button {
|
|
||||||
margin-left: $buttondistance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs, header {
|
|
||||||
background: rgba(0, 0, 0, 0.02);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs {
|
|
||||||
padding: 1em 0 0 !important;
|
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
|
||||||
display: flex;
|
|
||||||
font-family: Roboto, sans-serif;
|
|
||||||
@include shadow(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs li {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
text-transform: uppercase;
|
|
||||||
text-align: center;
|
|
||||||
padding: 0.5em 0.5em 1em;
|
|
||||||
cursor: pointer;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs li:hover {
|
|
||||||
color: #dc0067;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs .visible {
|
|
||||||
border-bottom: 2pt solid #dc0067;
|
|
||||||
color: #dc0067;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-family: 'Roboto Slab', serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
th.sort-header::selection {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
th.sort-header {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
table th.sort-header:after {
|
|
||||||
font-family: "ionicons";
|
|
||||||
padding-left: 0.25em;
|
|
||||||
content: '\f10d';
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
table th.sort-header:hover:after {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
table th.sort-up:after, table th.sort-down:after, table th.sort-down:hover:after {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 0.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
table th.sort-up:after {
|
|
||||||
content: '\f104';
|
|
||||||
}
|
|
||||||
|
|
||||||
table.attributes th {
|
|
||||||
text-align: left;
|
|
||||||
font-weight: bold;
|
|
||||||
vertical-align: top;
|
|
||||||
padding-right: 1em;
|
|
||||||
white-space: nowrap;
|
|
||||||
line-height: 1.41em;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.attributes td {
|
|
||||||
text-align: left !important;
|
|
||||||
width: 100%;
|
|
||||||
line-height: 1.41em;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.attributes tr.routerpic {
|
|
||||||
max-height: 128px;
|
|
||||||
max-width: 128px;
|
|
||||||
min-width: 128px;
|
|
||||||
min-height: 128px;
|
|
||||||
/*height: 128px;*/
|
|
||||||
/*background-color: green;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
table.attributes tr.routerpic td {
|
|
||||||
font-weight: bold;
|
|
||||||
/*background-color: red;*/
|
|
||||||
font-size: large;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.attributes tr.routerpic th {
|
|
||||||
font-weight: bold;
|
|
||||||
/*background-color: red;*/
|
|
||||||
font-size: large;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nodenamesidebar {
|
|
||||||
position: relative;
|
|
||||||
font-weight: bold;
|
|
||||||
/*background-color: red;*/
|
|
||||||
font-size: large;
|
|
||||||
vertical-align: bottom;
|
|
||||||
bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
.infobox, .container {
|
|
||||||
@include shadow(2);
|
|
||||||
background: rgba(255, 255, 255, 0.97);
|
|
||||||
border-radius: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container table.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
line-height: 1.67em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.infobox .clients {
|
|
||||||
font-family: "ionicons";
|
|
||||||
color: #1566A9;
|
|
||||||
word-spacing: -0.2em;
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infobox .clientsMesh {
|
|
||||||
font-family: "ionicons";
|
|
||||||
color: #dbdbdb;
|
|
||||||
word-spacing: -0.2em;
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infobox {
|
|
||||||
position: relative;
|
|
||||||
padding: 0.25em 0;
|
|
||||||
margin-bottom: $buttondistance;
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="text"], textarea {
|
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
||||||
border-radius: 5px;
|
|
||||||
border: none;
|
|
||||||
line-height: 1.67em;
|
|
||||||
vertical-align: bottom;
|
|
||||||
margin-right: 0.7em;
|
|
||||||
padding: 3px 6px;
|
|
||||||
font-family: monospace;
|
|
||||||
width: 70%;
|
|
||||||
max-width: 500px;
|
|
||||||
min-height: 42px;
|
|
||||||
font-size: 1.15em;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
resize: vertical;
|
|
||||||
overflow: auto;
|
|
||||||
max-height: 300px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
-webkit-tap-highlight-color: transparent;
|
|
||||||
font-family: "ionicons";
|
|
||||||
@include shadow(1);
|
|
||||||
border-radius: 0.9em;
|
|
||||||
background: rgba(255, 255, 255, 0.7);
|
|
||||||
color: #333;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
height: 1.8em;
|
|
||||||
width: 1.8em;
|
|
||||||
font-size: 20pt;
|
|
||||||
transition: box-shadow 0.5s, color 0.5s;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.active {
|
|
||||||
color: #dc0067 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
|
||||||
background: white;
|
|
||||||
color: #dc0067;
|
|
||||||
@include shadow(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
button:active {
|
|
||||||
box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.19), inset 0 3px 6px rgba(0, 0, 0, 0.23);
|
|
||||||
}
|
|
||||||
|
|
||||||
button::-moz-focus-inner {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.close {
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
font-size: 20pt;
|
|
||||||
float: right;
|
|
||||||
margin-right: $buttondistance;
|
|
||||||
margin-top: $buttondistance;
|
|
||||||
box-shadow: none;
|
|
||||||
background: transparent;
|
|
||||||
border-radius: 0;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-family: "ionicons";
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #dc0067;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
content: '\f2d7';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar h2, .sidebar h3 {
|
|
||||||
padding-left: $buttondistance;
|
|
||||||
padding-right: $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
p, pre, ul, h4 {
|
|
||||||
padding: 0 $buttondistance 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
padding: 0 $buttondistance;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
border-spacing: 0 0.5em;
|
|
||||||
td, th {
|
|
||||||
line-height: 1.41em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table {
|
|
||||||
border-collapse: separate;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table th {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table:not(.node-links) th:first-child,
|
|
||||||
.sidebar table:not(.node-links) td:first-child {
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table.node-links th:nth-child(2),
|
|
||||||
.sidebar table.node-links td:nth-child(2) {
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
width: 45%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table.node-links th:first-child,
|
|
||||||
.sidebar table.node-links td:first-child {
|
|
||||||
width: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebarhandle {
|
|
||||||
position: fixed;
|
|
||||||
left: $sidebarwidth + 2 * $buttondistance;
|
|
||||||
top: $buttondistance;
|
|
||||||
z-index: 10;
|
|
||||||
transition: left 0.5s, box-shadow 0.5s, color 0.5s, transform 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebarhandle:after {
|
|
||||||
padding-right: 0.125em;
|
|
||||||
content: "\f124";
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar.hidden .sidebarhandle {
|
|
||||||
transform: scale(-1, 1);
|
|
||||||
left: $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.online {
|
|
||||||
color: #558020 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.offline {
|
|
||||||
color: #D43E2A !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.unseen {
|
|
||||||
color: #D89100 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
z-index: 5;
|
|
||||||
width: $sidebarwidth;
|
|
||||||
box-sizing: border-box;
|
|
||||||
position: absolute;
|
|
||||||
top: $buttondistance;
|
|
||||||
left: $buttondistance;
|
|
||||||
padding-bottom: $buttondistance;
|
|
||||||
transition: left 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar.hidden {
|
|
||||||
left: -$sidebarwidth - $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar .icon {
|
|
||||||
padding: 0 0.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table {
|
|
||||||
width: 100%;
|
|
||||||
table-layout: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table th {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table:not(.node-links) td:not(:first-child),
|
|
||||||
.sidebar table:not(.node-links) th:not(:first-child) {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar table.node-links td:not(:nth-child(-n+2)),
|
|
||||||
.sidebar table.node-links th:not(:nth-child(-n+2)) {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar a {
|
|
||||||
color: #1566A9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar {
|
|
||||||
display: block;
|
|
||||||
height: 1.4em;
|
|
||||||
background: rgba(85, 128, 32, 0.5);
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
span {
|
|
||||||
display: inline-block;
|
|
||||||
height: 1.4em;
|
|
||||||
background: rgba(85, 128, 32, 0.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
font-weight: bold;
|
|
||||||
white-space: nowrap;
|
|
||||||
color: white;
|
|
||||||
position: absolute;
|
|
||||||
right: 0.5em;
|
|
||||||
top: 0.1em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.proportion th {
|
|
||||||
font-weight: normal !important;
|
|
||||||
text-align: right !important;
|
|
||||||
font-size: 0.95em;
|
|
||||||
padding-right: 0.71em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proportion td {
|
|
||||||
text-align: left !important;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proportion td, .proportion th {
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.proportion span {
|
|
||||||
display: inline-block;
|
|
||||||
background: black;
|
|
||||||
padding: 0.25em 0.5em;
|
|
||||||
font-weight: bold;
|
|
||||||
min-width: 1.5em;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 80em) {
|
|
||||||
.sidebar {
|
|
||||||
font-size: 0.8em;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
margin: 0;
|
|
||||||
width: $sidebarwidthsmall;
|
|
||||||
min-height: 100vh;
|
|
||||||
@include shadow(2);
|
|
||||||
background: white;
|
|
||||||
|
|
||||||
.sidebarhandle {
|
|
||||||
left: $sidebarwidthsmall + $buttondistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container, .infobox {
|
|
||||||
margin: 0;
|
|
||||||
box-shadow: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: $minscreenwidth) {
|
|
||||||
.sidebarhandle {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
position: relative;
|
|
||||||
width: auto;
|
|
||||||
height: 60vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
position: static;
|
|
||||||
margin: 0 !important;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar.hidden {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
1
scss/mixins/_icon-mixin.scss
Symbolic link
1
scss/mixins/_icon-mixin.scss
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../assets/icons/_icon-mixin.scss
|
14
scss/mixins/_shadow.scss
Normal file
14
scss/mixins/_shadow.scss
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
// Original is in LESS and can be found here: https://gist.github.com/gefangenimnetz/3ef3e18364edf105c5af
|
||||||
|
@mixin shadow($level: 1) {
|
||||||
|
@if $level == 1 {
|
||||||
|
box-shadow: 0 1px 3px rgba($color-black, .12), 0 1px 2px rgba($color-black, .24);
|
||||||
|
} @else if $level == 2 {
|
||||||
|
box-shadow: 0 3px 6px rgba($color-black, .16), 0 3px 6px rgba($color-black, .23);
|
||||||
|
} @else if $level == 3 {
|
||||||
|
box-shadow: 0 10px 20px rgba($color-black, .19), 0 6px 6px rgba($color-black, .23);
|
||||||
|
} @else if $level == 4 {
|
||||||
|
box-shadow: 0 14px 28px rgba($color-black, .25), 0 10px 10px rgba($color-black, .22);
|
||||||
|
} @else if $level == 5 {
|
||||||
|
box-shadow: 0 19px 38px rgba($color-black, .3), 0 15px 12px rgba($color-black, .22);
|
||||||
|
}
|
||||||
|
}
|
56
scss/modules/_base.scss
Normal file
56
scss/modules/_base.scss
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
body {
|
||||||
|
background: $color-white;
|
||||||
|
color: $color-black;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-size: $font-size;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
background: rgba($color-black, .02);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2em;
|
||||||
|
padding: .67em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
padding: .83em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.17em;
|
||||||
|
padding: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, h3 {
|
||||||
|
padding-left: $buttondistance;
|
||||||
|
padding-right: $buttondistance;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, pre, ul, h4 {
|
||||||
|
padding: 0 $buttondistance 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $color-online;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
line-height: 1.67em;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
47
scss/modules/_button.scss
Normal file
47
scss/modules/_button.scss
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
button {
|
||||||
|
background: $color-white;
|
||||||
|
border: 0;
|
||||||
|
border-radius: .9em;
|
||||||
|
color: $color-black;
|
||||||
|
cursor: pointer;
|
||||||
|
font-family: $font-family-icons;
|
||||||
|
font-size: 20pt;
|
||||||
|
height: 1.8em;
|
||||||
|
opacity: .7;
|
||||||
|
outline: none;
|
||||||
|
transition: box-shadow .5s, color .5s;
|
||||||
|
width: 1.8em;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
color: $color-primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $color-white;
|
||||||
|
color: $color-primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.shadow {
|
||||||
|
@include shadow(1);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@include shadow(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
box-shadow: inset 0 5px 20px rgba($color-black, .19), inset 0 3px 6px rgba($color-black, .23);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.close {
|
||||||
|
background: none;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
color: rgba($color-black, .5);
|
||||||
|
float: right;
|
||||||
|
font-size: 20pt;
|
||||||
|
height: auto;
|
||||||
|
margin: $buttondistance;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
40
scss/modules/_filter.scss
Normal file
40
scss/modules/_filter.scss
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.filters {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
font-size: .83em;
|
||||||
|
padding: 0 6pt 6pt;
|
||||||
|
|
||||||
|
li {
|
||||||
|
align-items: center;
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid $color-primary;
|
||||||
|
color: $color-primary;
|
||||||
|
display: flex;
|
||||||
|
margin: 3pt;
|
||||||
|
padding: 0 0 0 8pt;
|
||||||
|
|
||||||
|
label {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background: none;
|
||||||
|
color: $color-gray-light;
|
||||||
|
font-size: 12pt;
|
||||||
|
height: 18pt;
|
||||||
|
margin: 2pt;
|
||||||
|
width: 18pt;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $color-primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.not {
|
||||||
|
label {
|
||||||
|
color: $color-primary;
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
.graph {
|
.graph {
|
||||||
|
background: $color-gray-dark;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #2B2B2B;
|
|
||||||
|
|
||||||
canvas {
|
canvas {
|
||||||
display: block;
|
display: block;
|
27
scss/modules/_infobox.scss
Normal file
27
scss/modules/_infobox.scss
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
.infobox {
|
||||||
|
.clients {
|
||||||
|
color: $color-online;
|
||||||
|
font-family: $font-family-icons;
|
||||||
|
}
|
||||||
|
|
||||||
|
input, textarea {
|
||||||
|
border: 1px solid $color-gray-light;
|
||||||
|
font-family: $font-family-monospace;
|
||||||
|
font-size: 1.15em;
|
||||||
|
line-height: 1.67em;
|
||||||
|
margin-right: .7em;
|
||||||
|
max-width: 500px;
|
||||||
|
min-height: 42px;
|
||||||
|
padding: 3px 6px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
width: calc(100% - 80px);
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
font-size: .8em;
|
||||||
|
height: 100px;
|
||||||
|
max-height: 300px;
|
||||||
|
overflow: auto;
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,22 +1,21 @@
|
||||||
.leaflet-control-layers {
|
.leaflet-control-layers {
|
||||||
box-shadow: none;
|
|
||||||
border-radius: 0;
|
|
||||||
background: none;
|
background: none;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-control-layers-toggle {
|
.leaflet-control-layers-toggle {
|
||||||
background: none;
|
background: none;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: "\f229";
|
color: $color-primary;
|
||||||
|
content: '\f229';
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-family: "ionicons" !important;
|
font-family: $font-family-icons;
|
||||||
font-size: 2.3rem;
|
font-size: 2.3rem;
|
||||||
|
line-height: 1;
|
||||||
speak: none;
|
speak: none;
|
||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
color: #e32d6d;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,8 +24,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-control-layers-list {
|
.leaflet-control-layers-list {
|
||||||
background: rgba(255, 255, 255, 0.9);
|
background: rgba($color-white, .9);
|
||||||
|
color: $color-gray-dark;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
32
scss/modules/_legend.scss
Normal file
32
scss/modules/_legend.scss
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
.legend {
|
||||||
|
.symbol {
|
||||||
|
border-radius: 50%;
|
||||||
|
display: inline-block;
|
||||||
|
height: 1em;
|
||||||
|
vertical-align: -5%;
|
||||||
|
width: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dot looks compared to thin font a bit darker - lighten it 10%
|
||||||
|
.legend-new {
|
||||||
|
.symbol {
|
||||||
|
background-color: lighten($color-new, 10%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-online {
|
||||||
|
.symbol {
|
||||||
|
background-color: lighten($color-online, 10%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-offline {
|
||||||
|
.symbol {
|
||||||
|
background-color: lighten($color-offline, 10%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-online, .legend-offline {
|
||||||
|
margin-left: 1em;
|
||||||
|
}
|
41
scss/modules/_map.scss
Normal file
41
scss/modules/_map.scss
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
.content {
|
||||||
|
height: 100vh;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.buttons {
|
||||||
|
direction: rtl;
|
||||||
|
position: absolute;
|
||||||
|
right: $buttondistance;
|
||||||
|
top: $buttondistance;
|
||||||
|
unicode-bidi: bidi-override;
|
||||||
|
z-index: 100;
|
||||||
|
|
||||||
|
button {
|
||||||
|
margin-left: $buttondistance;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: $minscreenwidth) {
|
||||||
|
right: 0;
|
||||||
|
transform: scale(.8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $minscreenwidth) {
|
||||||
|
height: 60vh;
|
||||||
|
position: relative;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stroke-first {
|
||||||
|
paint-order: stroke;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pick-coordinates {
|
||||||
|
cursor: crosshair;
|
||||||
|
}
|
||||||
|
|
||||||
|
.map {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
21
scss/modules/_node.scss
Normal file
21
scss/modules/_node.scss
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
.bar {
|
||||||
|
background: rgba($color-new, .5);
|
||||||
|
display: block;
|
||||||
|
height: 1.4em;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
span {
|
||||||
|
background: rgba($color-new, .8);
|
||||||
|
display: inline-block;
|
||||||
|
height: 1.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
color: $color-white;
|
||||||
|
font-weight: bold;
|
||||||
|
position: absolute;
|
||||||
|
right: .5em;
|
||||||
|
top: .1em;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
20
scss/modules/_proportion.scss
Normal file
20
scss/modules/_proportion.scss
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
.proportion {
|
||||||
|
th {
|
||||||
|
font-size: .95em;
|
||||||
|
font-weight: normal;
|
||||||
|
padding-right: .71em;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
|
font-weight: bold;
|
||||||
|
min-width: 1.5em;
|
||||||
|
padding: .25em .5em;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,5 @@
|
||||||
/**
|
// Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
|
||||||
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
|
// http://cssreset.com
|
||||||
* http://cssreset.com
|
|
||||||
*/
|
|
||||||
html, body, div, span, applet, object, iframe,
|
html, body, div, span, applet, object, iframe,
|
||||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
a, abbr, acronym, address, big, cite, code,
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
@ -12,23 +10,17 @@ dl, dt, dd, ol, ul, li,
|
||||||
fieldset, form, label, legend,
|
fieldset, form, label, legend,
|
||||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
article, aside, canvas, details, embed,
|
article, aside, canvas, details, embed,
|
||||||
figure, figcaption, footer, header, hgroup,
|
figure, figcaption, footer, header,
|
||||||
menu, nav, output, ruby, section, summary,
|
menu, nav, output, ruby, section, summary,
|
||||||
time, mark, audio, video {
|
time, mark, audio, video {
|
||||||
|
border: 0;
|
||||||
|
font: inherit;
|
||||||
|
font-size: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
|
||||||
font-size: 100%;
|
|
||||||
font: inherit;
|
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* HTML5 display-role reset for older browsers */
|
|
||||||
article, aside, details, figcaption, figure,
|
|
||||||
footer, header, hgroup, menu, nav, section {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
@ -41,12 +33,6 @@ blockquote, q {
|
||||||
quotes: none;
|
quotes: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote:before, blockquote:after,
|
|
||||||
q:before, q:after {
|
|
||||||
content: '';
|
|
||||||
content: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
127
scss/modules/_sidebar.scss
Normal file
127
scss/modules/_sidebar.scss
Normal file
|
@ -0,0 +1,127 @@
|
||||||
|
.sidebar {
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
transition: left .5s;
|
||||||
|
width: $sidebarwidth;
|
||||||
|
z-index: 5;
|
||||||
|
|
||||||
|
&.hidden {
|
||||||
|
left: -$sidebarwidth - $buttondistance;
|
||||||
|
|
||||||
|
.sidebarhandle {
|
||||||
|
left: $buttondistance;
|
||||||
|
transform: scale(-1, 1);
|
||||||
|
}
|
||||||
|
@media screen and (max-width: $minscreenwidth) {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-list, .node-links {
|
||||||
|
th, td {
|
||||||
|
&:first-child {
|
||||||
|
width: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(2) {
|
||||||
|
overflow: hidden;
|
||||||
|
text-align: left;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-links {
|
||||||
|
th, td {
|
||||||
|
&:first-child {
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-list {
|
||||||
|
th, td {
|
||||||
|
&:nth-child(1) {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 66%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.infobox, .container {
|
||||||
|
@include shadow(2);
|
||||||
|
background: rgba($color-white, .97);
|
||||||
|
min-height: 100vh;
|
||||||
|
overflow-y: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
&.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 80em) {
|
||||||
|
@include shadow(2);
|
||||||
|
background: $color-white;
|
||||||
|
font-size: .8em;
|
||||||
|
margin: 0;
|
||||||
|
width: $sidebarwidthsmall;
|
||||||
|
|
||||||
|
.sidebarhandle {
|
||||||
|
left: $sidebarwidthsmall + $buttondistance;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container, .infobox {
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $minscreenwidth) {
|
||||||
|
height: auto;
|
||||||
|
min-height: 0;
|
||||||
|
position: static;
|
||||||
|
width: auto;
|
||||||
|
|
||||||
|
.sidebarhandle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
height: 60vh;
|
||||||
|
position: relative;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebarhandle {
|
||||||
|
left: $sidebarwidth + 2 * $buttondistance;
|
||||||
|
position: fixed;
|
||||||
|
top: $buttondistance;
|
||||||
|
transition: left .5s, box-shadow .5s, color .5s, transform .5s;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '\f124';
|
||||||
|
padding-right: .125em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.online {
|
||||||
|
color: $color-new;
|
||||||
|
}
|
||||||
|
|
||||||
|
.offline {
|
||||||
|
color: $color-offline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.unseen {
|
||||||
|
color: #d89100;
|
||||||
|
}
|
76
scss/modules/_table.scss
Normal file
76
scss/modules/_table.scss
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
table {
|
||||||
|
border-collapse: separate;
|
||||||
|
border-spacing: 0 .5em;
|
||||||
|
padding: 0 $buttondistance;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&.attributes {
|
||||||
|
line-height: 1.41em;
|
||||||
|
|
||||||
|
th {
|
||||||
|
font-weight: bold;
|
||||||
|
padding-right: 1em;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
line-height: 1.41em;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
&.sort-header {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&::selection {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '\f10d';
|
||||||
|
font-family: $font-family-icons;
|
||||||
|
padding-left: .25em;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&::after {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.sort-up {
|
||||||
|
&::after {
|
||||||
|
content: '\f104';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.sort-up, &.sort-down {
|
||||||
|
&:after {
|
||||||
|
opacity: .4;
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab {
|
||||||
|
table {
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
}
|
27
scss/modules/_tabs.scss
Normal file
27
scss/modules/_tabs.scss
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
.tabs {
|
||||||
|
@include shadow(1);
|
||||||
|
background: rgba($color-black, .02);
|
||||||
|
display: flex;
|
||||||
|
font-family: $font-family;
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 1em 0 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
color: rgba($color-black, .5);
|
||||||
|
cursor: pointer;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
padding: .5em .5em 1em;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $color-black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.visible {
|
||||||
|
border-bottom: 2pt solid $color-primary;
|
||||||
|
color: $color-primary;
|
||||||
|
}
|
||||||
|
}
|
22
scss/modules/_variables.scss
Normal file
22
scss/modules/_variables.scss
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
$color-white: #fff !default;
|
||||||
|
$color-black: #000 !default;
|
||||||
|
|
||||||
|
$color-gray-light: darken($color-white, 30%) !default;
|
||||||
|
$color-gray-dark: lighten($color-black, 20%) !default;
|
||||||
|
|
||||||
|
$color-primary: #dc0067 !default;
|
||||||
|
|
||||||
|
$color-new: #459c18 !default;
|
||||||
|
$color-online: #1566a9 !default;
|
||||||
|
$color-offline: #cf3e2a !default;
|
||||||
|
|
||||||
|
$font-family: 'Roboto Slab', serif !default;
|
||||||
|
$font-family-secondary: Roboto, sans-serif !default;
|
||||||
|
$font-family-icons: ionicons !default;
|
||||||
|
$font-family-monospace: monospace !default;
|
||||||
|
$font-size: 11pt !default;
|
||||||
|
|
||||||
|
$minscreenwidth: 630pt !default;
|
||||||
|
$sidebarwidth: 420pt !default;
|
||||||
|
$sidebarwidthsmall: 320pt !default;
|
||||||
|
$buttondistance: 12pt !default;
|
1
scss/modules/icon.scss
Symbolic link
1
scss/modules/icon.scss
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../assets/icons/icon.scss
|
|
@ -39,9 +39,7 @@ module.exports = function (grunt) {
|
||||||
cwd: "bower_components/roboto-fontface"
|
cwd: "bower_components/roboto-fontface"
|
||||||
},
|
},
|
||||||
ionicons: {
|
ionicons: {
|
||||||
src: ["fonts/*",
|
src: ["fonts/*"],
|
||||||
"hopglass-icons.css"
|
|
||||||
],
|
|
||||||
expand: true,
|
expand: true,
|
||||||
dest: "build/",
|
dest: "build/",
|
||||||
cwd: "assets/icons/"
|
cwd: "assets/icons/"
|
||||||
|
@ -77,16 +75,6 @@ module.exports = function (grunt) {
|
||||||
src: "build/style.css"
|
src: "build/style.css"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
cssmin: {
|
|
||||||
target: {
|
|
||||||
files: {
|
|
||||||
"build/style.css": ["bower_components/leaflet/dist/leaflet.css",
|
|
||||||
"bower_components/Leaflet.label/dist/leaflet.label.css",
|
|
||||||
"style.css"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
inline: {
|
inline: {
|
||||||
dist: {
|
dist: {
|
||||||
options: {
|
options: {
|
||||||
|
|
|
@ -13,6 +13,12 @@ module.exports = function (grunt) {
|
||||||
},
|
},
|
||||||
npm: {}
|
npm: {}
|
||||||
},
|
},
|
||||||
|
sasslint: {
|
||||||
|
options: {
|
||||||
|
configFile: '.sass-lint.yml'
|
||||||
|
},
|
||||||
|
target: ['scss/main.scss', 'scss/*/*.scss']
|
||||||
|
},
|
||||||
eslint: {
|
eslint: {
|
||||||
sources: {
|
sources: {
|
||||||
src: ["app.js", "!Gruntfile.js", "lib/**/*.js"]
|
src: ["app.js", "!Gruntfile.js", "lib/**/*.js"]
|
||||||
|
@ -24,5 +30,6 @@ module.exports = function (grunt) {
|
||||||
});
|
});
|
||||||
|
|
||||||
grunt.loadNpmTasks("grunt-check-dependencies");
|
grunt.loadNpmTasks("grunt-check-dependencies");
|
||||||
|
grunt.loadNpmTasks('grunt-sass-lint');
|
||||||
grunt.loadNpmTasks("grunt-eslint");
|
grunt.loadNpmTasks("grunt-eslint");
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue