root/afridex/plugins/Flutter/css/epoch_styles.css @ 22

Revision 21, 2.3 kB (checked in by admin, 18 years ago)
Line 
1/*!!
2Epoch DHTML JavaScript Calendar - Version 2.0.2
3English Edition
4CSS Style File
5(c) 2006-2007 MeanFreePath
6Free for NON-COMMERCIAL use - see website for details and updates
7http://www.meanfreepath.com/javascript_calendar/index.html
8!!*/
9
10table.calendar {
11        font-family: Helvetica, Arial, sans-serif;
12        font-size: 0.8em;
13        border-collapse: collapse;
14        background-color: white;
15        border: solid #999999 1px;
16        background-color: white;
17        width: 215px;
18        text-align: center;
19        /*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/
20        -moz-user-select: none;
21    /*-khtml-user-select: none;*/
22}
23table.calendar a {
24}
25table.calendar a:hover {
26}
27table.calendar input, table.calendar select {
28        font-size: 10px;
29}
30table.calendar td, table.calendar th {
31        border: 0;
32        font-size: 10px;
33        text-align: center;
34}
35div.mainheading {
36        margin: 2px;
37}
38.closeBtn {
39        /*float: right;
40        width: 15px;
41        /*font-size: 1.5em;
42        height: 13px;
43
44        padding: 0 0 3px 0;
45        margin: 1px 8px 0 0;
46        border: solid black 1px;*/
47}
48/*all styles related to the main calendar grid*/
49table.cells {
50        border-collapse: collapse;
51        border: solid #CCCCCC 1px;
52        cursor: pointer;
53        empty-cells: show;
54        margin: 0 6px 0 6px;
55}
56/*the day headings*/
57table.cells th {
58        border: solid #CCCCCC 1px;
59        text-align: left;
60        font-weight: bold;
61        color: #0054E3;
62        width: 22px;
63}
64table.cells th.wkhead {
65        border-right: double #CCCCCC 3px;
66        cursor: default;
67        width: 22px;
68}
69/*The date cells*/
70table.cells td {
71        border: solid #CCCCCC 1px;
72        vertical-align: top;
73        text-align: left;
74        font-weight: bold;
75        height: 20px; /*IE doesn't like ems*/
76}
77table.cells td.wkhead {
78        background-color: white;
79        text-align: center;
80        border-right: double #CCCCCC 3px;
81        color: #0054E3;
82}
83table.cells td.noselect {
84        background-color: #EEEEEE;
85        color: #BBBBBB;
86        text-decoration: line-through;
87        cursor: default;
88}
89table.cells td.hlday {
90        background-color: #99FF99;
91}
92table.cells td.wkday {
93        background-color: #DDDDDD;
94}
95table.cells td.wkend {
96        background-color: #DDDDDD;
97}
98table.cells td.curdate {
99
100}
101table.cells td.cell_selected {
102        background-color: #99CCFF;
103        color: black;
104}
105table.cells td.notmnth {
106        background-color: #FFFFFF;
107        color: #CCCCCC;
108}
109table.cells td.notallowed {
110        background-color: white;
111        color: #EEEEEE;
112        font-style: italic;
113}
114table.cells td.hover {
115        background-color: #999999;
116}
117table.cells td div {
118        padding: 1px;
119        margin: 0;
120}
Note: See TracBrowser for help on using the browser.