/etc/icinga/stylesheets/menu.css is in icinga-cgi-bin 1.11.6-1+b4.
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | * {
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
color: #000;
background: #ededed url(../images/menu_body.gif) top left repeat-y;
}
img {
border: 0;
}
ul {
list-style-type: none;
}
#menu {
width: 199px;
}
#menu h2 {
position: relative;
padding: 0 5px;
height: 26px;
color: #ef9f1b;
background: #ededed url(../images/menu_bar.gif) top left repeat-x;
border-bottom: 1px solid #fff;
line-height: 26px;
font-size: 1em;
}
#menu h2 img {
position: absolute;
top: 9px;
right: 8px;
}
#menu ul li {
padding: 0 10px;
border-bottom: 1px solid #fff;
}
#menu ul li a {
padding-left: 12px;
background: url(../images/menu_li1.gif) 0 0.35em no-repeat;
}
#menu ul li a:link, #menu ul li a:active, #menu ul li a:visited {
color: #6e7475;
text-decoration: none;
}
#menu ul li a:hover {
background: url(../images/menu_li2.gif) 0 0.35em no-repeat;
color: #000;
}
#menu ul li.menuli_style1 {
background-color: #ededed;
}
#menu ul li.menuli_style2 {
background-color: #e9e9e9;
}
#menu a.flag {
padding-left: 12px;
background: url(../images/menu_blank.gif) 0 0.35em no-repeat;
}
#menu div.flag {
padding: 0 10px;
height: 26px;
line-height: 26px;
color: #6e7475;
}
#menu ul li.menuli_style3 {
background-color: #e9e9e9;
color: #6e7475;
text-decoration: none;
padding-left: 20px;
}
/* Styles for autocomplete */
li.ui-autocomplete-category {
padding: 3px 0px 0px 5px;
height: 18px;
background: #ededed url(../images/menu_cat_gray.png) top left repeat-x;
font-size: 11px;
/* font-weight: bold; */
}
/* IE hack (as usual) */
html>body li.ui-autocomplete-category {
vertical-align: center;
height: auto;
min-height: 18px;
}
li.ui-menu-item {
text-align: left;
font-size: 10px;
border-bottom: 1px solid white;
padding: 0 0 0 2px;
color: #000;
background: #e8e8e8;
}
ul.ui-autocomplete {
width: 150px;
position: absolute;
border-width: 2px;
/* disabled shadow
box-shadow: 0px 8px 16px 0px #666666;
-webkit-box-shadow: 0px 8px 16px 0px #666666;
-moz-box-shadow: 0px 8px 16px 0px #666666;
*/
}
.statusgroup {
border-left: 8px solid #8A8A8A;
}
.statusOK, .statusUP, .statusRECOVERY {
border-left: 8px solid #00cc33;
}
.statusCRITICAL, .statusDOWN {
border-left: 8px solid #ff5252;
}
.statusWARNING {
border-left: 8px solid #ffb533;
}
.statusUNKNOWN, .statusUNREACHABLE {
border-left: 8px solid #db54fd;
}
.statusPENDING {
border-left: 8px solid #73cce3;
}
|