kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
4.9 KiB
239 lines
4.9 KiB
18 years ago
|
/* The main calendar widget. DIV containing a table. */
|
||
|
|
||
17 years ago
|
img.calendar-trigger {
|
||
|
cursor: pointer;
|
||
|
vertical-align: middle;
|
||
|
margin-left: 4px;
|
||
12 years ago
|
margin-right: 7px;
|
||
17 years ago
|
}
|
||
|
|
||
17 years ago
|
div.calendar { position: relative; z-index: 30;}
|
||
18 years ago
|
|
||
14 years ago
|
div.calendar, div.calendar table {
|
||
18 years ago
|
border: 1px solid #556;
|
||
|
font-size: 11px;
|
||
|
color: #000;
|
||
|
cursor: default;
|
||
18 years ago
|
background: #fafbfc;
|
||
18 years ago
|
font-family: tahoma,verdana,sans-serif;
|
||
|
}
|
||
|
|
||
|
/* Header part -- contains navigation buttons and day names. */
|
||
|
|
||
14 years ago
|
div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
|
||
18 years ago
|
text-align: center; /* They are the navigation buttons */
|
||
|
padding: 2px; /* Make the buttons seem like they're pressing */
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar .nav {
|
||
18 years ago
|
background: #467aa7;
|
||
18 years ago
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .title { /* This holds the current "month, year" */
|
||
18 years ago
|
font-weight: bold; /* Pressing it will take you to the current date */
|
||
|
text-align: center;
|
||
|
background: #fff;
|
||
|
color: #000;
|
||
|
padding: 2px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .headrow { /* Row <TR> containing navigation buttons */
|
||
18 years ago
|
background: #467aa7;
|
||
18 years ago
|
color: #fff;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .daynames { /* Row <TR> containing the day names */
|
||
18 years ago
|
background: #bdf;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .name { /* Cells <TD> containing the day names */
|
||
18 years ago
|
border-bottom: 1px solid #556;
|
||
|
padding: 2px;
|
||
|
text-align: center;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .weekend { /* How a weekend day name shows in header */
|
||
18 years ago
|
color: #a66;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .hilite { /* How do the buttons in header appear when hover */
|
||
18 years ago
|
background-color: #80b0da;
|
||
18 years ago
|
color: #000;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar thead .active { /* Active (pressed) buttons in header */
|
||
18 years ago
|
background-color: #77c;
|
||
|
padding: 2px 0px 0px 2px;
|
||
|
}
|
||
|
|
||
|
/* The body part -- contains all the days in month. */
|
||
|
|
||
14 years ago
|
div.calendar tbody .day { /* Cells <TD> containing month days dates */
|
||
18 years ago
|
width: 2em;
|
||
|
color: #456;
|
||
|
text-align: right;
|
||
|
padding: 2px 4px 2px 2px;
|
||
|
}
|
||
14 years ago
|
div.calendar tbody .day.othermonth {
|
||
18 years ago
|
font-size: 80%;
|
||
|
color: #bbb;
|
||
|
}
|
||
14 years ago
|
div.calendar tbody .day.othermonth.oweekend {
|
||
18 years ago
|
color: #fbb;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar table .wn {
|
||
18 years ago
|
padding: 2px 3px 2px 2px;
|
||
|
border-right: 1px solid #000;
|
||
|
background: #bdf;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody .rowhilite td {
|
||
18 years ago
|
background: #def;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody .rowhilite td.wn {
|
||
18 years ago
|
background: #80b0da;
|
||
18 years ago
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody td.hilite { /* Hovered cells <TD> */
|
||
18 years ago
|
background: #80b0da;
|
||
18 years ago
|
padding: 1px 3px 1px 1px;
|
||
|
border: 1px solid #bbb;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody td.active { /* Active (pressed) cells <TD> */
|
||
18 years ago
|
background: #cde;
|
||
|
padding: 2px 2px 0px 2px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody td.selected { /* Cell showing today date */
|
||
18 years ago
|
font-weight: bold;
|
||
|
border: 1px solid #000;
|
||
|
padding: 1px 3px 1px 1px;
|
||
|
background: #fff;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody td.weekend { /* Cells showing weekend days */
|
||
18 years ago
|
color: #a66;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody td.today { /* Cell showing selected date */
|
||
18 years ago
|
font-weight: bold;
|
||
|
color: #f00;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody .disabled { color: #999; }
|
||
18 years ago
|
|
||
14 years ago
|
div.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
|
||
18 years ago
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
|
||
18 years ago
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* The footer part -- status bar and "Close" button */
|
||
|
|
||
14 years ago
|
div.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
|
||
18 years ago
|
text-align: center;
|
||
|
background: #556;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
|
||
18 years ago
|
background: #fff;
|
||
|
color: #445;
|
||
|
border-top: 1px solid #556;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tfoot .hilite { /* Hover style for buttons in footer */
|
||
18 years ago
|
background: #aaf;
|
||
|
border: 1px solid #04f;
|
||
|
color: #000;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
|
||
18 years ago
|
background: #77c;
|
||
|
padding: 2px 0px 0px 2px;
|
||
|
}
|
||
|
|
||
|
/* Combo boxes (menus that display months/years for direct selection) */
|
||
|
|
||
14 years ago
|
div.calendar .combo {
|
||
18 years ago
|
position: absolute;
|
||
|
display: none;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
width: 4em;
|
||
|
cursor: default;
|
||
|
border: 1px solid #655;
|
||
|
background: #def;
|
||
|
color: #000;
|
||
|
font-size: 90%;
|
||
|
z-index: 100;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar .combo .label,
|
||
|
div.calendar .combo .label-IEfix {
|
||
18 years ago
|
text-align: center;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar .combo .label-IEfix {
|
||
18 years ago
|
width: 4em;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar .combo .hilite {
|
||
18 years ago
|
background: #acf;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar .combo .active {
|
||
18 years ago
|
border-top: 1px solid #46a;
|
||
|
border-bottom: 1px solid #46a;
|
||
|
background: #eef;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time {
|
||
18 years ago
|
border-top: 1px solid #000;
|
||
|
padding: 1px 0px;
|
||
|
text-align: center;
|
||
|
background-color: #f4f0e8;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time .hour,
|
||
|
div.calendar td.time .minute,
|
||
|
div.calendar td.time .ampm {
|
||
18 years ago
|
padding: 0px 3px 0px 4px;
|
||
|
border: 1px solid #889;
|
||
|
font-weight: bold;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time .ampm {
|
||
18 years ago
|
text-align: center;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time .colon {
|
||
18 years ago
|
padding: 0px 2px 0px 3px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time span.hilite {
|
||
18 years ago
|
border-color: #000;
|
||
|
background-color: #667;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
14 years ago
|
div.calendar td.time span.active {
|
||
18 years ago
|
border-color: #f00;
|
||
|
background-color: #000;
|
||
|
color: #0f0;
|
||
|
}
|