/var/lib/xymon/www/menu/xymonmenu-blue.css is in xymon 4.3.25-1.
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 | #menue {
position:absolute;
top: 0px;
left: 0;
padding-bottom: 2px;
z-index: 200;
}
.outer {
float: left;
display: block;
overflow: hidden;
padding-top: 2px;
padding-left: 4px;
height: 1.6em;
text-align: left;
font: 14px Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
width: 10em; /* Menu element width 0.05em wider than inner-1 width (see below) */
border: 1px solid #345678; /* Menu button border (button up) */
background: url(t2b-blue.gif); /* Menu button image (button up) */
color: #ffffff; /* Menu button text colour (button up) */
}
.outer:hover {
height: auto;
padding-top: 4px;
border: 1px solid #345678; /* Menu button border (button down) */
background: url(b2t-blue.gif); /* Menu button image (button down) */
color: #ebeb77; /* Menu button text colour (button down) */
}
a.inner-1 {
margin-top: 4px;
margin-left: -4px;
}
a.inner,
a.inner-1 {
margin-left: -4px;
display: block;
padding: 2px 0;
padding-left: 4px;
text-decoration: none;
width: 9.95em; /* Menu element width 0.05em narrower than outer width (see above) */
border-top: 1px solid #345678; /* Menu item top border colour */
border-right: 1px solid #345678; /* Menu item right border colour */
color: #eeeeee; /* Unvisited menu item text colour */
background: #456789; /* Unvisited menu item background colour */
}
a:visited.inner,
a:visited.inner-1 {
color: #eeeeee; /* Visited menu item text colour (usually same as unvisited) */
background: #456789; /* Visited menu item background colour (usually same as unvisited) */
}
a:hover.inner,
a:hover.inner-1 {
color: #333333; /* Selected menu item text colour */
background: #00bbbb; /* Selected menu item background colour */
}
span.menutag {
display: block;
cursor: default;
}
span.invis {
display: none;
}
|