123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no">
- <title>Neue und verschwundene Knoten</title>
- <style type="text/css">
- .stroke-first {
- paint-order: stroke;
- }
- body {
- margin: 0;
- padding: 0;
- font-family: 'Roboto Slab', serif;
- font-size: 11pt;
- }
- 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 {
- width: auto !important;
- }
- table.attributes th {
- text-align: left;
- font-weight: bold;
- vertical-align: top;
- padding-right: 1em;
- white-space: nowrap;
- }
- table.attributes td {
- text-align: left !important;
- }
- .infobox .clients {
- font-family: "ionicons";
- color: #1566A9;
- word-spacing: -0.2em;
- }
- .infobox {
- position: relative;
- box-shadow: 0px 0.5px 3px rgba(0, 0, 0, 0.16), 0px 0.5px 2px rgba(0, 0, 0, 0.24);
- background: rgba(0, 0, 0, 0.02);
- padding: 0.25em 0;
- }
- button {
- -webkit-tap-highlight-color: transparent;
- font-family: "ionicons";
- box-shadow: 0px 0.5px 3px rgba(0, 0, 0, 0.16), 0px 0.5px 2px rgba(0, 0, 0, 0.24);
- border-radius: 0.9em;
- background: rgba(255, 255, 255, 0.7);
- border: none;
- cursor: pointer;
- height: 1.8em;
- width: 1.8em;
- font-size: 20pt;
- transition: box-shadow 0.5s, color 0.5s;
- outline: none;
- }
- button:hover {
- background: white;
- color: #dc0067;
- box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.19), 0px 3px 6px rgba(0, 0, 0, 0.23);
- }
- button:active {
- box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.19), inset 0px 3px 6px rgba(0, 0, 0, 0.23);
- }
- button.close {
- position: absolute;
- right: 0.7em;
- top: 0.7em;
- }
- button.close:after {
- content: "\f12a";
- }
- .sidebar h2, .sidebar h3 {
- padding: 0 10pt;
- }
- .sidebar p, .sidebar table, .sidebar pre, .sidebar ul {
- padding: 0 10pt 1em;
- }
- .sidebarhandle {
- position: absolute;
- right: -2.5em;
- top: 0.7em;
- z-index: 10;
- transition: right 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);
- }
- .hostname {
- }
- .online {
- color: #558020 !important;
- }
- .offline {
- color: #D43E2A !important;
- }
- .sidebar {
- z-index: 5;
- width: 40em;
- box-sizing: border-box;
- position: absolute;
- top: 0;
- left: 0;
- background: white;
- box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.19), 0px 3px 6px rgba(0, 0, 0, 0.23);
- transition: left 0.5s;
- }
- .sidebar.hidden {
- left: -40em;
- }
- .sidebar .container {
- overflow: auto;
- box-sizing: border-box;
- }
- .sidebar .container, .map {
- height: 100vh;
- }
- .sidebar .icon {
- padding: 0 0.25em;
- }
- .sidebar table {
- width: 100%;
- }
- .sidebar table th {
- text-align: left;
- }
- .sidebar td:not(:first-child), .sidebar th:not(:first-child) {
- text-align: right;
- }
- .sidebar a {
- color: #1566A9;
- }
- .bar {
- display: block;
- height: 1.4em;
- background: rgba(85, 128, 32, 0.5);
- position: relative;
- }
- .bar span {
- display: inline-block;
- height: 1.4em;
- background: rgba(85, 128, 32, 0.8);
- }
- .bar label {
- font-weight: bold;
- white-space: nowrap;
- color: white;
- position: absolute;
- right: 0.5em;
- }
- .map .node-alert {
- -webkit-animation: blink 2s linear;
- -webkit-animation-iteration-count: infinite;
- animation: blink 2s linear;
- animation-iteration-count: infinite;
- }
- @-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; }
- }
- @media screen and (max-width: 80em) {
- .sidebar {
- font-size: 0.8em;
- }
- }
- @media screen and (max-width: 60em) {
- .sidebar .container {
- overflow: visible;
- height: auto;
- }
- .sidebarhandle {
- display: none;
- }
- .map {
- height: 60vh;
- }
- .sidebar {
- position: static;
- margin-left: 0em !important;
- width: auto;
- height: auto;
- }
- .sidebar.hidden {
- width: auto;
- }
- .sidebar.hidden .sidebar .container {
- display: block;
- }
- }
- </style>
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab:700,400">
- <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css">
- <link rel="stylesheet" href="vendor/leaflet.label.css">
- <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.27.1/es6-shim.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/0.6.3/chroma.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/tablesort/3.0.2/tablesort.min.js"></script>
- <script src="vendor/leaflet.label.js"></script>
- <script src="vendor/tablesort.numeric.js"></script>
- <script src="helper.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.16/require.min.js" data-main="lib/main"></script>
- </head>
- <body>
- </body>
- </html>
|