summaryrefslogtreecommitdiff
path: root/frontend/beta/css/yui/calendar.css
Unidiff
Diffstat (limited to 'frontend/beta/css/yui/calendar.css') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/css/yui/calendar.css189
1 files changed, 189 insertions, 0 deletions
diff --git a/frontend/beta/css/yui/calendar.css b/frontend/beta/css/yui/calendar.css
new file mode 100644
index 0000000..a634e50
--- a/dev/null
+++ b/frontend/beta/css/yui/calendar.css
@@ -0,0 +1,189 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29/*
30Copyright (c) 2006, Yahoo! Inc. All rights reserved.
31Code licensed under the BSD License:
32http://developer.yahoo.net/yui/license.txt
33Version 0.11.3
34*/
35
36.yui-cal2upwrapper {*height:1%;} /* IE */
37.yui-cal2upwrapper:after {content:'.';clear:both;display:block;visibility:hidden;height:0;} /* others */
38
39.yui-calcontainer {
40 float:left;
41 padding:5px;
42 background-color:#F7F9FB;
43 border:1px solid #7B9EBD;
44}
45
46.yui-calcontainer .title {
47 font:100% sans-serif;
48 color:#000;
49 font-weight:bold;
50 margin-bottom:5px;
51 height:auto;
52 position:relative;
53}
54
55.yui-calcontainer .title .close-icon {
56 position:absolute;
57 right:0;
58 top:0;
59 border:none;
60}
61
62.yui-calcontainer .cal2up {
63 float:left;
64}
65
66.yui-calendar .calnavleft {
67 position:absolute;
68 background-repeat:no-repeat;
69 cursor:pointer;
70 top:2px;
71 bottom:0;
72 width:9px;
73 height:12px;
74 left:2px;
75}
76
77.yui-calendar .calnavright {
78 position:absolute;
79 background-repeat:no-repeat;
80 cursor:pointer;
81 top:2px;
82 bottom:0;
83 width:9px;
84 height:12px;
85 right:2px;
86}
87
88/* Calendar element styles */
89
90.yui-calendar {
91 font:100% sans-serif;
92 text-align:center;
93 border-spacing:0;
94 border-collapse:separate;
95}
96
97.yui-calendar td.calcell {
98 padding:.1em .2em;
99 border:1px solid #E0E0E0;
100 background-color:#FFF;
101}
102
103.yui-calendar td.calcell a {
104 color:#003DB8;
105 text-decoration:none;
106}
107
108.yui-calendar td.calcell.today {
109 border:1px solid #000;
110}
111
112.yui-calendar td.calcell.oom {
113 cursor:default;
114 color:#999;
115 background-color:#EEE;
116 border:1px solid #E0E0E0;
117}
118
119.yui-calendar td.calcell.selected {
120 color:#003DB8;
121 background-color:#FFF19F;
122 border:1px solid #FF9900;
123}
124
125.yui-calendar td.calcell.calcellhover {
126 cursor:pointer;
127 color:#FFF;
128 background-color:#FF9900;
129 border:1px solid #FF9900;
130}
131
132.yui-calendar td.calcell.calcellhover a {
133 color:#FFF;
134}
135
136.yui-calendar td.calcell.restricted {
137 text-decoration:line-through;
138}
139
140.yui-calendar td.calcell.previous {
141 color:#CCC;
142}
143
144.yui-calendar td.calcell.highlight1 { background-color:#CCFF99; }
145.yui-calendar td.calcell.highlight2 { background-color:#99CCFF; }
146.yui-calendar td.calcell.highlight3 { background-color:#FFCCCC; }
147.yui-calendar td.calcell.highlight4 { background-color:#CCFF99; }
148
149
150.yui-calendar .calhead {
151 border:1px solid #E0E0E0;
152 vertical-align:middle;
153 background-color:#FFF;
154}
155
156.yui-calendar .calheader {
157 position:relative;
158 width:100%;
159 text-align:center;
160}
161
162.yui-calendar .calheader img {
163 border:none;
164}
165
166.yui-calendar .calweekdaycell {
167 color:#666;
168 font-weight:normal;
169}
170
171.yui-calendar .calfoot {
172 background-color:#EEE;
173}
174
175.yui-calendar .calrowhead, .yui-calendar .calrowfoot {
176 color:#666;
177 font-size:9px;
178 font-style:italic;
179 font-weight:normal;
180 width:15px;
181}
182
183.yui-calendar .calrowhead {
184 border-right-width:2px;
185}
186
187/*Specific changes for calendar running under fonts/reset */
188.yui-calendar a:hover {background:inherit;}
189p#clear {clear:left; padding-top:10px;}