/usr/share/loganalyzer/css/menu.css is in loganalyzer 3.6.6+dfsg-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 | #menu {
z-index: 10;
/* width: 16px; /* set width of menu */
}
#menu ul { /* remove bullets and list indents */
z-index: 10;
position: relative;
/* position: absolute;*/
display: block;
list-style: none;
white-space:nowrap;
margin: 0;
padding: 0;
vertical-align: text-top;
}
/* style, color and size links and headings to suit */
#menu a, #menu h2 {
display: block;
margin: 0px;
padding: 1px 1px;
}
#menu h2 {
font-size: 10px;
font-weight: bold;
text-align: center;
}
#menu a {
text-decoration: none;
}
#menu a:hover {
text-decoration: none;
}
#menu li {
text-align: left;
/* make the list elements a containing block for the nested lists */
position: relative;
}
#menu ul li ul li {
border-width: 1px;
border-style: solid;
border-color: #44617D #203040 #203040 #44617D;
}
#menu ul ul {
z-index: 2;
white-space: nowrap;
position: absolute;
top: 12px; /*14px; */
left: 0px; /* to position them to the right of their containing block */
width: auto;
min-width: 250px; /* workaround for FF */
height: 16px;
}
div#menu ul ul,
div#menu ul li:hover ul ul
{
display: none;
}
div#menu ul li:hover ul,
div#menu ul ul li:hover ul
{
display: block;
}
|