1 |
4948
|
daigle
|
/*
|
2 |
|
|
* '$RCSfile$'
|
3 |
|
|
* Purpose: Default style sheet for KNB project web pages
|
4 |
|
|
* Using this stylesheet rather than placing styles directly in
|
5 |
|
|
* the KNB web documents allows us to globally change the
|
6 |
|
|
* formatting styles of the entire site in one easy place.
|
7 |
|
|
* Copyright: 2000 Regents of the University of California and the
|
8 |
|
|
* National Center for Ecological Analysis and Synthesis
|
9 |
|
|
* Authors: Matt Jones
|
10 |
|
|
*
|
11 |
|
|
* '$Author: daigle $'
|
12 |
|
|
* '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
|
13 |
|
|
* '$Revision: 4080 $'
|
14 |
|
|
*
|
15 |
|
|
* This program is free software; you can redistribute it and/or modify
|
16 |
|
|
* it under the terms of the GNU General Public License as published by
|
17 |
|
|
* the Free Software Foundation; either version 2 of the License, or
|
18 |
|
|
* (at your option) any later version.
|
19 |
|
|
*
|
20 |
|
|
* This program is distributed in the hope that it will be useful,
|
21 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
|
|
* GNU General Public License for more details.
|
24 |
|
|
*
|
25 |
|
|
* You should have received a copy of the GNU General Public License
|
26 |
|
|
* along with this program; if not, write to the Free Software
|
27 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
|
|
*/
|
29 |
|
|
|
30 |
|
|
/**********************************************************************
|
31 |
|
|
* simple calendar widgit settings. See:
|
32 |
|
|
* style/common/widgits/simple-calendar-widget.js
|
33 |
|
|
* for a full list of possible css settings.
|
34 |
|
|
**********************************************************************/
|
35 |
|
|
|
36 |
|
|
table.scw {
|
37 |
|
|
background-color: #124325;
|
38 |
|
|
}
|
39 |
|
|
|
40 |
|
|
td.scwCells {
|
41 |
|
|
background-color: #7BB865;
|
42 |
|
|
}
|
43 |
|
|
|
44 |
|
|
td.scwCells:hover,td.scwCellsHover {
|
45 |
|
|
background-color: #ECCE00;
|
46 |
|
|
}
|
47 |
|
|
|
48 |
|
|
td.scwInputDate {
|
49 |
|
|
background-color: #124325;
|
50 |
|
|
color: #7BB865;
|
51 |
|
|
}
|
52 |
|
|
|
53 |
|
|
td.scwInputDate:hover,td.scwInputDateHover {
|
54 |
|
|
background-color: #ECCE00;
|
55 |
|
|
color: #000000;
|
56 |
|
|
}
|
57 |
|
|
|
58 |
|
|
td.scwCellsWeekend {
|
59 |
|
|
background-color: #7BB865;
|
60 |
|
|
color: #000000;
|
61 |
|
|
}
|
62 |
|
|
|
63 |
|
|
td.scwCellsWeekend:hover,td.scwCellsWeekendHover {
|
64 |
|
|
background-color: #ECCE00;
|
65 |
|
|
}
|
66 |
|
|
|
67 |
|
|
td.scwCellsExMonth {
|
68 |
|
|
color: #000000;
|
69 |
|
|
}
|
70 |
|
|
|
71 |
|
|
td.scwCellsExMonth:hover,td.scwCellsExMonthHover {
|
72 |
|
|
background-color: #ECCE00;
|
73 |
|
|
}
|
74 |
|
|
|
75 |
|
|
td.scwNow {
|
76 |
|
|
background-color: #124325;
|
77 |
|
|
}
|
78 |
|
|
|
79 |
|
|
td.scwNow:hover {
|
80 |
|
|
color: #ECCE00;
|
81 |
|
|
}
|
82 |
|
|
|