MDL-11517 reserved word MOD used in table alias in questions backup code
[moodle-pu.git] / lib / yui / calendar / assets / calendar-core.css
blobd25fd0427f2f26ece3c8987b942e1c6dbc9f8d32
1 /*
2 Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
5 version: 2.3.0
6 */
7 /**
8 * CORE
10 * This is the set of CSS rules required by Calendar to drive core functionality and structure.
11 * Changes to these rules may result in the Calendar not functioning or rendering correctly.
13 * They should not be modified for skinning.
14 **/
16 /* CALENDAR BOUNDING BOX */
17 .yui-calcontainer {
18 position:relative;
19 float:left;
20 _overflow:hidden; /* IE6 only, to clip iframe shim */
23 /* IFRAME SHIM */
24 .yui-calcontainer iframe {
25 position:absolute;
26 border:none;
27 margin:0;padding:0;
28 z-index:0;
29 width:100%;
30 height:100%;
31 left:0px;
32 top:0px;
35 /* IFRAME SHIM IE6 only */
36 .yui-calcontainer iframe.fixedsize {
37 width:50em;
38 height:50em;
39 top:-1px;
40 left:-1px;
43 /* BOUNDING BOX FOR EACH CALENDAR GROUP PAGE */
44 .yui-calcontainer.multi .groupcal {
45 z-index:1;
46 float:left;
47 position:relative;
50 /* TITLE BAR */
51 .yui-calcontainer .title {
52 position:relative;
53 z-index:1;
56 /* CLOSE ICON CONTAINER */
57 .yui-calcontainer .close-icon {
58 position:absolute;
59 z-index:1;
62 /* CALENDAR TABLE */
63 .yui-calendar {
64 position:relative;
67 /* NAVBAR LEFT ARROW CONTAINER */
68 .yui-calendar .calnavleft {
69 position:absolute;
70 z-index:1;
73 /* NAVBAR RIGHT ARROW CONTAINER */
74 .yui-calendar .calnavright {
75 position:absolute;
76 z-index:1;
79 /* NAVBAR TEXT CONTAINER */
80 .yui-calendar .calheader {
81 position:relative;
82 width:100%;
83 text-align:center;
86 /* Specific changes for calendar running under fonts/reset */
87 .yui-calendar .calbody a:hover {background:inherit;}
88 p#clear {clear:left; padding-top:10px;}