/usr/share/zabbix/styles/calendar.css is in zabbix-frontend-php 1:1.8.11-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 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 | /* CSS Document */
div.calendar{
position: absolute;
width: 180px;
top: 10px;
right: 30px;
border: 1px blue solid;
z-index: 100;
}
div.calendardays{
border: 1px orange solid;
}
div.calendartime{
background-color: #DDEEFF;
text-align: center;
padding-top: 2px;
padding-bottom: 2px;
height: 42px;
}
table.calendarhat{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-align: center;
background-color:#DDEEFF;
font-weight: bold;
}
table.calendarhat tr td{
height: 18px;
width: 22px;
}
table.calendarhat tr td.long{
text-align:center;
width: 116px;
overflow: hidden;
}
/* CELLS */
table.calendartab{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-align: center;
background-color:#EEEEEE;
border-spacing: 1px;
}
table.calendartab tr.header td:hover{
cursor:default;
}
table.calendartab tr td{
height: 18px;
width: 22px;
background-color:#FFFFFF;
}
table.calendartab tr td:hover{
cursor: pointer;
}
table.calendartab tr td.holiday{
background-color:#AADDEE;
}
table.calendartab tr td.grey{
color:#AFAFAF;
}
table.calendartab tr td.selected{
/*
border-left: 1px #333333 groove;
border-top: 1px #333333 groove;
*/
background-color: #008888;
color: #eeeeee;
}
/* SPAN */
div.calendar span.title{
text-align:center;
color:#000099;
}
div.calendar span.clndr_left_arrow{
padding-left: 5px;
}
div.calendar span.clndr_left_arrow:hover{
cursor: pointer;
}
div.calendar span.clndr_right_arrow{
padding-right: 5px;
}
div.calendar span.clndr_right_arrow:hover{
cursor: pointer;
}
/* INPUT */
div.calendar input.calendar_textbox{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-align: center;
width: 26px;
height: 14px;
vertical-align:middle;
}
div.calendar input[type="button"] {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
border: 1px solid #00888B;
background: #AADDEE;
cursor:pointer;
}
|