/usr/share/ntop/html/sankey.css is in ntop-data 3:5.0.1+dfsg1-2.2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | body {
font: 12px sans-serif, "Helvetica Neue", Helvetica;
}
/* loading data overlay */
.loader {
cursor: wait;
height: 100%;
width: 100%;
position: fixed;
left: 0;
top: 0;
z-index:2 !important;
background-color: white;
filter: alpha(opacity=30); /* internet explorer */
opacity: 0.50; /* fx, safari, opera */
}
.loader img {
cursor: wait;
position: absolute;
top: 50%;
left: 50%;
z-index:1;
margin: -64px 0em 0em -64px;
filter: alpha(opacity=100);
opacity: 1;
}
/* Formattazione del form */
form {
font: 11px sans-serif;
}
input[type="submit"] {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
margin: 1em 0em 0em 0em;
}
input[type="reset"] {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
margin: 1em 0em 0em 0em;
}
input[type="text"] {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
margin: 1em 0em 0em 0em;
}
input[type="button"] {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
margin: 1em 0em 0em 0em;
}
input[type="checkbox"] {
vertical-align: middle;
}
select {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
margin: 1em 0em 0em 0em;
}
ul#layer4 {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
list-style-type: none;
margin-left: 0;
padding-left: 0;
height: 7.5em;
overflow: auto;
border: 1px solid #ccc;
}
ul#layer7 {
font: 11px sans-serif, "Helvetica Neue", Helvetica;
list-style-type: none;
margin-left: 0;
padding-left: 0;
height: 12em;
width: 16em;
overflow: auto;
border: 1px solid #ccc;
}
/* Formattazione del grafico svg */
svg {
font: 10px sans-serif, "Helvetica Neue", Helvetica;
}
#chart {
height: 600px;
}
.node rect {
fill-opacity: .9;
shape-rendering: crispEdges;
cursor: pointer;
}
.node text {
pointer-events: none;
text-shadow: 0 1px 0 #fff;
}
.link {
fill: none;
cursor: pointer;
stroke: #000;
stroke-opacity: .4;
}
.link:hover {
stroke-opacity: .7;
}
|