import v1.0.0-RC4 | 2009-05-20
This commit is contained in:
421
webdir/javascript/yui/calendar/README
Normal file
421
webdir/javascript/yui/calendar/README
Normal file
@ -0,0 +1,421 @@
|
||||
Calendar Release Notes
|
||||
|
||||
*** version 2.6.0 ***
|
||||
|
||||
+ Fixed incorrect cell index parsing from cell id attribute, when
|
||||
Calendar id contained "cell".
|
||||
|
||||
+ Added text to previous month, next month and close icons, to
|
||||
enhance accessibility for screen-readers.
|
||||
|
||||
+ Fixed issue with bubbled previous month, next month click events
|
||||
missing target information in certain browsers (due to replaced HTML),
|
||||
by delaying click event handling through a setTimeout.
|
||||
|
||||
+ Added destroy method to Calendar/CalendarGroup
|
||||
|
||||
+ Fixed incorrect clear method behavior for CalendarGroup where all
|
||||
pages would be set to the same month.
|
||||
|
||||
+ Refactored code to reduce minified Kweight.
|
||||
|
||||
*** version 2.5.2 ***
|
||||
|
||||
+ CalendarGroup toDate method no longer throws javascript exception
|
||||
|
||||
*** version 2.5.1 ***
|
||||
|
||||
+ Fixed bug with mindate, maxdate being applied incorrectly if
|
||||
set to a day on which time change took place (DST, E.U Summertime)
|
||||
and the day is not the first day of the week.
|
||||
|
||||
+ Fixed DateMath.getWeekNumber implementation to return correct
|
||||
week numbers. The older implementation would return Week 0 for
|
||||
certain weeks (e.g. the week starting Sun Dec 28th 2008)
|
||||
|
||||
To suppor the fix, DateMath.getWeekNumber has a signature
|
||||
change in 2.5.1 and can now support U.S Week calculations based
|
||||
on Jan 1st identifying the first week of the year, as well as
|
||||
ISO8601 week calculations based on Jan 4th identifying the first
|
||||
week of the year
|
||||
|
||||
The arguments which the method expected prior to 2.5.1 were not
|
||||
being used in calculating the week number. The new signature is:
|
||||
|
||||
DateMath.getWeekNumber(Date dt, Number firstDayOfWeek, Number janDate)
|
||||
|
||||
Where:
|
||||
|
||||
dt is the date for which week number is required
|
||||
|
||||
firstDayOfWeek is the day index identifying the first
|
||||
day of the week. Default is 0 (Sunday).
|
||||
|
||||
janDate is the date in the first week of January, which
|
||||
identifies the first week of the year.
|
||||
Default is YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE (1)
|
||||
|
||||
NOTE: Calendar instances themselves do not currently expose a
|
||||
configuration property to change the week numbering system
|
||||
used. A "janDate" value is not passed to the getWeekNumber
|
||||
method, when used by Calendar, resulting in it using the default value.
|
||||
|
||||
Therefore, ISO8601 week numbering can be generated for Calendars
|
||||
by setting the value of YAHOO.widget.DateMath.WEEK_ONE_JAN_DATE
|
||||
to 4.
|
||||
|
||||
*** version 2.5.0 ***
|
||||
|
||||
+ Prevent default event handling in CalendarNavigator enter key
|
||||
listener, to prevent automatic form submission when using Calendar
|
||||
inside a form.
|
||||
|
||||
+ Added workaround to DateMath.add and subtract for Safari 2 (webkit)
|
||||
bug in Date.setDate(n) which doesn't handle value of n less than -128
|
||||
or greater than 127 correctly.
|
||||
|
||||
See: http://brianary.blogspot.com/2006/03/safari-date-bug.html
|
||||
|
||||
+ Added border, padding and margin rules to Calendar Sam Skin to
|
||||
protect Sam Skin's look and feel when Calendar is used with
|
||||
YUI base.css
|
||||
|
||||
*** version 2.4.0 ***
|
||||
|
||||
+ Added CalendarNavigator (year selector) feature to allow the user to
|
||||
jump to a year/month directly without having to scroll through months
|
||||
sequentially.
|
||||
|
||||
The feature is enabled/configured using the "navigator" configuration
|
||||
property.
|
||||
|
||||
+ Added Custom Events:
|
||||
|
||||
showNav/beforeShowNav
|
||||
hideNav/beforeHideNav,
|
||||
renderNav/beforeRenderNav
|
||||
|
||||
To Calendar/CalendarGroup, in support of the CalendarNavigator
|
||||
functionality.
|
||||
|
||||
+ Added Custom Events:
|
||||
|
||||
show/beforeShow
|
||||
hide/beforeHide
|
||||
|
||||
To Calendar and CalendarGroup. Returning false from a
|
||||
beforeShow/beforeHide listener can be used to prevent the Calendar
|
||||
from being shown/hidden respectively.
|
||||
|
||||
+ Added Public Methods:
|
||||
|
||||
getCellIndex(date) [ Calendar ]
|
||||
getCalendarPage(date) [ CalendarGroup ]
|
||||
toDate(dateArray) [ Calendar/CalendarGroup ]
|
||||
removeRenderers() [ Calendar/CalendarGroup ]
|
||||
|
||||
+ The Calendar/CalendarGroup constructor is now more flexible:
|
||||
|
||||
* It no longer requires an "id" argument.
|
||||
|
||||
In it's simplest form, a Calendar/CalendarGroup can be
|
||||
constructed by simply providing a container id or reference.
|
||||
|
||||
var cal = new YAHOO.widget.Calendar("container");
|
||||
-or-
|
||||
var containerDiv = YAHOO.util.Dom.get("container");
|
||||
var cal = new YAHOO.widget.Calendar(containerDiv);
|
||||
|
||||
An id for the Calendar does not need to be provided, and will be
|
||||
generated from the container id by appending an "_t" suffix to the
|
||||
container id if only the container is provided.
|
||||
|
||||
* The container argument can be either a string, representing the
|
||||
id of the container, or an HTMLElement referring to the container
|
||||
element itself, as suggested in the example above.
|
||||
|
||||
* If an HTMLElement is provided for the container argument and the
|
||||
element does not have an id, one will be generated for it using
|
||||
YAHOO.util.Dom.generateId().
|
||||
|
||||
* The older form of Calendar/CalendarGroup signature, expecting
|
||||
both an id and containerId is still supported and works as it did
|
||||
prior to 2.4.0.
|
||||
|
||||
+ Fixed performance issue, where the same custom renderer was being
|
||||
applied multiple times to the same cell.
|
||||
|
||||
+ Added getDate(year, month, date) factory method to the DateMath utility,
|
||||
which can be used to create JavaScript Date instances for years less
|
||||
than 100.
|
||||
|
||||
The default Date(year, month, date) constructor implementations across
|
||||
browsers, assume that if year < 100, the caller is referring to the
|
||||
nineteen hundreds, and the year is set to 19xx instead of xx (as with
|
||||
the deprecated setYear method). However Date.setFullYear(xx) can
|
||||
be used to set dates below 100. The above factory method provides a
|
||||
construction mechanism consistent with setFullYear.
|
||||
|
||||
+ Changed Calendar/CalendarGroup/DateMath code to use the DateMath.getDate
|
||||
method, so that 2 digit years are not assumed to be in the 1900's.
|
||||
|
||||
NOTE: Calendar's API already expects 4 digit date strings when referring
|
||||
to years after 999.
|
||||
|
||||
*** version 2.3.1 ***
|
||||
|
||||
+ Changed Calendar/CalendarGroup to render an empty title bar element
|
||||
when "close" is set to true, but "title" has not been set, to allow Sam
|
||||
Skin to render a title bar correctly.
|
||||
|
||||
*** version 2.3.0 ***
|
||||
|
||||
+ Added checks to select, selectCell, deselect and deselectCell methods
|
||||
to ensure the Calendar/Calendar group was not set to an invalid state
|
||||
by programmatically selecting unselectable dates or cells.
|
||||
|
||||
+ Added new locale configuration properties for the Month/Year label
|
||||
used in the Calendar header (MY_LABEL_MONTH_POSITION,
|
||||
MY_LABEL_YEAR_POSITION, MY_LABEL_YEAR_SUFFIX, MY_LABEL_MONTH_SUFFIX).
|
||||
Japan is an example locale, where customization of the Month/Year
|
||||
label is required.
|
||||
|
||||
+ Changed "first", "last" class names to "first-of-type", "last-of-type",
|
||||
to avoid collision with YUI Grids' use of the "first" class name.
|
||||
|
||||
+ Added public isDateOOB method, to check if a given date is outside of
|
||||
the minimum/maximum configuration dates of the Calendar.
|
||||
|
||||
+ Deprecated YAHOO.widget.Calendar.browser, refactored to use
|
||||
YAHOO.env.ua instead.
|
||||
|
||||
+ Removed overflow:hidden from default Calendar/CalendarGroup container
|
||||
for non-IE6 browsers to fix clipping issue with IE7 when CalendarGroup
|
||||
was inside a box with a specific width. overflow:hidden is still
|
||||
required for IE6 with an iframe shim.
|
||||
|
||||
+ Added Opera container width calculation fix to CalendarGroup.show
|
||||
method, to fix incorrect wrapping when using a CalendarGroup which is
|
||||
initially rendered hidden (display:none). Previously this fix was
|
||||
only applied on render.
|
||||
|
||||
*** version 2.2.2 ***
|
||||
|
||||
+ Fixed problem with selected dates being shared across instances, when
|
||||
more than one Calendar/CalendarGroup was on the page
|
||||
|
||||
*** version 2.2.1 ***
|
||||
|
||||
+ Fixed problem with selectCell adding duplicate selected date entries
|
||||
for dates which were already selected
|
||||
|
||||
+ Fixed problem with CalendarGroup iframe shim not covering the
|
||||
CalendarGroup title area
|
||||
|
||||
+ Removed javascript:void(null) from close button and cell links which
|
||||
was interrupting form submission and firing onbeforeunload in IE
|
||||
|
||||
+ Fixed problem with CalendarGroup getSelectedDates returning invalid
|
||||
results, when used in conjunction with the "selected" Config property
|
||||
(either passed in the constructor config argument or set seperately
|
||||
after construction)
|
||||
|
||||
+ Refactored Calendar and CalendarGroup to improve performance,
|
||||
especially when working with a large number of instances in
|
||||
IE6
|
||||
|
||||
*** version 2.2.0 ***
|
||||
|
||||
+ Image customization can now be done through CSS. Images for Close,
|
||||
Left and Right Arrows are now pulled in using CSS defined in
|
||||
calendar.css and by default use relative paths to the images in
|
||||
the same directory as calendar.css.
|
||||
|
||||
+ Deprecated Calendar.IMG_ROOT and NAV_ARROW_LEFT, NAV_ARROW_RIGHT
|
||||
configuration properties. Customizations based on older releases
|
||||
which set these properties will still function as expected.
|
||||
|
||||
+ Deprecated CalendarGroup.CSS_2UPCLOSE. Calendar's Style.CSS_CLOSE
|
||||
property now represents the new default CSS class (calclose) for
|
||||
the close button. CSS_2UPCLOSE is still applied along with
|
||||
CSS_CLOSE to the new markup for the close button to support existing
|
||||
customizations of the CSS_2UPCLOSE CSS class (close-icon)
|
||||
|
||||
+ Fixed problem with Safari setting Calendar pages to incorrect dates
|
||||
if the pages spanned a year boundary in CalendarGroups with 3 or more
|
||||
pages, due to a bug in Safari's implementation of Date setMonth
|
||||
|
||||
+ Fixed problem with CalendarGroup setMonth rendering Calendar pages
|
||||
with incorrect dates in all browsers if current pages spanned year
|
||||
boundary
|
||||
|
||||
+ Fixed incorrect CalendarGroup logging statement in calendar-debug.js
|
||||
|
||||
+ Fixed domEventMap support for Safari versions prior to 2.0.2,
|
||||
caused by hasOwnProperty not being supported
|
||||
|
||||
+ Removed unused private property : _pageDate from Calendar class
|
||||
|
||||
*** version 0.12.2 ***
|
||||
|
||||
+ Corrected documentation for clearTime function to reflect the
|
||||
change from midnight to noon
|
||||
|
||||
*** version 0.12.1 ***
|
||||
|
||||
+ Calendar and CalendarGroup now automatically parse the argument
|
||||
passed to setMonth and setYear into an integer, eliminating
|
||||
potential concatenation bugs.
|
||||
|
||||
*** version 0.12 ***
|
||||
|
||||
+ New documentation format implemented
|
||||
|
||||
+ Calendar2up and Calendar_Core are now deprecated. Now, Calendar alone
|
||||
represents the single Calendar instance, and CalendarGroup represents
|
||||
an n-up instance, defaulting to 2up
|
||||
|
||||
+ Added semantic style classes to Calendar elements to allow for
|
||||
custom styling solely using CSS.
|
||||
|
||||
+ Remapped all configuration properties to use the Config object
|
||||
(familiar to those who use the Container collection of controls).
|
||||
Property names are the same as their previous counterparts, but
|
||||
wrapped into Calendar.cfg, allowing for runtime reconfiguration of
|
||||
most properties
|
||||
|
||||
+ Added "title" property for setting the Calendar title
|
||||
|
||||
+ Added "close" property for enabling and disabling the close icon
|
||||
|
||||
+ Added "iframe" property for enabling an iframe shim in Internet
|
||||
Explorer 6 and below to fix the select bleed-through bug
|
||||
|
||||
+ pageDate moved to property: "pagedate"
|
||||
|
||||
+ selectedDates moved to property: "selected"
|
||||
|
||||
+ minDate moved to property : "mindate", which accepts a JavaScript
|
||||
Date object like its predecessor, but also supports string dates
|
||||
|
||||
+ maxDate moved to property : "maxdate", which accepts a JavaScript
|
||||
Date object like its predecessor, but also supports string dates
|
||||
|
||||
+ Moved style declarations to initStyles function
|
||||
|
||||
+ Optimized event handling in doSelectCell/doCellMouseOver/
|
||||
doCellMouseOut by only attaching the listener to the outer
|
||||
Calendar container, and only reacting to events on cells with
|
||||
the "selectable" CSS class.
|
||||
|
||||
+ Added domEventMap field for applying DOM event listeners to cells
|
||||
containing specific class and tag combinations.
|
||||
|
||||
+ Moved all cell DOM event attachment to applyListeners function
|
||||
|
||||
+ Added getDateByCellId / getDateFieldsByCellId helper functions
|
||||
|
||||
+ Corrected DateMath.getWeekNumber to comply with ISO week number
|
||||
handling
|
||||
|
||||
+ Separated renderCellDefault style portions into styleCellDefault
|
||||
function for easy extension
|
||||
|
||||
+ Deprecated onBeforeSelect. Created beforeSelectEvent which
|
||||
automatically subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onSelect. Created selectEvent, which automatically
|
||||
subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onBeforeDeselect. Created beforeSelectEvent which
|
||||
automatically subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onDeselect. Created beforeDeselectEvent, which
|
||||
automatically subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onChangePage. Created changePageEvent, which automatically
|
||||
subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onRender. Created renderEvent, which automatically
|
||||
subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onReset. Created resetEvent, which automatically
|
||||
subscribes to its deprecated predecessor.
|
||||
|
||||
+ Deprecated onClear. Created clearEvent, which automatically
|
||||
subscribes to its deprecated predecessor.
|
||||
|
||||
+ Corrected setMonth documentation to refer to 0-11 indexed months.
|
||||
|
||||
+ Added show and hide methods to Calendar for setting the Calendar's
|
||||
display property.
|
||||
|
||||
+ Optimized internal render classes to use innerHTML and string buffers
|
||||
|
||||
+ Removed wireCustomEvents function
|
||||
|
||||
+ Removed wireDefaultEvents function
|
||||
|
||||
+ Removed doNextMonth / doPreviousMonth
|
||||
|
||||
+ Removed all buildShell (header, body, footer) functions, since
|
||||
the Calendar shell is now built dynamically on each render
|
||||
|
||||
+ Wired all CalendarGroup events and configuration properties to
|
||||
be properly delegated to Calendar
|
||||
|
||||
+ Augmented CalendarGroup with all built-in renderers, label functions,
|
||||
hide, show, and initStyles, creating API transparency between Calendar
|
||||
and CalendarGroup.
|
||||
|
||||
+ Made all tagName, createElement, and entity references XHTML compliant
|
||||
|
||||
+ Fixed Daylight Saving Time bug for Brazilian time zone
|
||||
|
||||
*** version 0.11.3 ***
|
||||
|
||||
+ Calendar_Core: Added arguments for selected/deselected dates to
|
||||
onSelect/onDeselect
|
||||
|
||||
+ CalendarGroup: Fixed bug where selected dates passed to constructor
|
||||
were not represented in selectedDates
|
||||
|
||||
+ Calendar2up: Now displays correctly in Opera 9
|
||||
|
||||
*** version 0.11.0 ***
|
||||
|
||||
+ DateMath: DateMath.add now properly adds weeks
|
||||
|
||||
+ DateMath: between() function added
|
||||
|
||||
+ DateMath: getWeekNumber() fixed to take starting day of week into
|
||||
account
|
||||
|
||||
+ All references to Calendar's built in CSS class handlers are
|
||||
removed, replaced with calls to Dom utility (addClass, removeClass)
|
||||
|
||||
+ Several CSS class constants now have clearer names
|
||||
|
||||
+ All CSS classes are now properly namespaced to avoid CSS conflicts
|
||||
|
||||
+ Fixed table:hover bug in CSS
|
||||
|
||||
+ Calendar no longer requires the container ID and variable name to
|
||||
match in order for month navigation to function properly
|
||||
|
||||
+ Calendar month navigation arrows are now represented as
|
||||
background images
|
||||
|
||||
*** version 0.10.0 ***
|
||||
|
||||
+ Major performance improvements from attaching DOM events to
|
||||
associated table cells only once, when the Calendar shell is built
|
||||
|
||||
+ DOM events for mouseover/mouseout are now fired for all browsers
|
||||
(not just Internet Explorer)
|
||||
|
||||
+ Reset functionality bug fixed for 2-up Calendar view
|
||||
|
||||
*** version 0.9.0 ***
|
||||
|
||||
* Initial release
|
132
webdir/javascript/yui/calendar/assets/calendar-core.css
Normal file
132
webdir/javascript/yui/calendar/assets/calendar-core.css
Normal file
@ -0,0 +1,132 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
||||
/**
|
||||
* CORE
|
||||
*
|
||||
* This is the set of CSS rules required by Calendar to drive core functionality and structure.
|
||||
* Changes to these rules may result in the Calendar not functioning or rendering correctly.
|
||||
*
|
||||
* They should not be modified for skinning.
|
||||
**/
|
||||
|
||||
/* CALENDAR BOUNDING BOX */
|
||||
.yui-calcontainer {
|
||||
position:relative;
|
||||
float:left;
|
||||
_overflow:hidden; /* IE6 only, to clip iframe shim */
|
||||
}
|
||||
|
||||
/* IFRAME SHIM */
|
||||
.yui-calcontainer iframe {
|
||||
position:absolute;
|
||||
border:none;
|
||||
margin:0;padding:0;
|
||||
z-index:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
left:0px;
|
||||
top:0px;
|
||||
}
|
||||
|
||||
/* IFRAME SHIM IE6 only */
|
||||
.yui-calcontainer iframe.fixedsize {
|
||||
width:50em;
|
||||
height:50em;
|
||||
top:-1px;
|
||||
left:-1px;
|
||||
}
|
||||
|
||||
/* BOUNDING BOX FOR EACH CALENDAR GROUP PAGE */
|
||||
.yui-calcontainer.multi .groupcal {
|
||||
z-index:1;
|
||||
float:left;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
/* TITLE BAR */
|
||||
.yui-calcontainer .title {
|
||||
position:relative;
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
/* CLOSE ICON CONTAINER */
|
||||
.yui-calcontainer .close-icon {
|
||||
position:absolute;
|
||||
z-index:1;
|
||||
text-indent:-10000em;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
/* CALENDAR TABLE */
|
||||
.yui-calendar {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
/* NAVBAR LEFT ARROW CONTAINER */
|
||||
.yui-calendar .calnavleft {
|
||||
position:absolute;
|
||||
z-index:1;
|
||||
text-indent:-10000em;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
/* NAVBAR RIGHT ARROW CONTAINER */
|
||||
.yui-calendar .calnavright {
|
||||
position:absolute;
|
||||
z-index:1;
|
||||
text-indent:-10000em;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
/* NAVBAR TEXT CONTAINER */
|
||||
.yui-calendar .calheader {
|
||||
position:relative;
|
||||
width:100%;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
/* CalendarNavigator */
|
||||
.yui-calcontainer .yui-cal-nav-mask {
|
||||
position:absolute;
|
||||
z-index:2;
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
_width:0; /* IE6, IE7 quirks - width/height set programmatically to match container */
|
||||
_height:0;
|
||||
left:0;
|
||||
top:0;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* NAVIGATOR BOUNDING BOX */
|
||||
.yui-calcontainer .yui-cal-nav {
|
||||
position:absolute;
|
||||
z-index:3;
|
||||
top:0;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* NAVIGATOR BUTTONS (based on button-core.css) */
|
||||
.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn {
|
||||
display: -moz-inline-box; /* Gecko */
|
||||
display: inline-block; /* IE, Opera and Safari */
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button {
|
||||
display: block;
|
||||
*display: inline-block; /* IE */
|
||||
*overflow: visible; /* Remove superfluous padding for IE */
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Specific changes for calendar running under fonts/reset */
|
||||
.yui-calendar .calbody a:hover {background:inherit;}
|
||||
p#clear {clear:left; padding-top:10px;}
|
320
webdir/javascript/yui/calendar/assets/calendar.css
Normal file
320
webdir/javascript/yui/calendar/assets/calendar.css
Normal file
@ -0,0 +1,320 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
||||
.yui-calcontainer {
|
||||
position:relative;
|
||||
padding:5px;
|
||||
background-color:#F7F9FB;
|
||||
border:1px solid #7B9EBD;
|
||||
float:left;
|
||||
_overflow:hidden; /* IE6 only, to clip iframe shim */
|
||||
}
|
||||
|
||||
.yui-calcontainer iframe {
|
||||
position:absolute;
|
||||
border:none;
|
||||
margin:0;padding:0;
|
||||
z-index:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
left:0px;
|
||||
top:0px;
|
||||
}
|
||||
|
||||
/* IE6 only */
|
||||
.yui-calcontainer iframe.fixedsize {
|
||||
width:50em;
|
||||
height:50em;
|
||||
top:-1px;
|
||||
left:-1px;
|
||||
}
|
||||
|
||||
.yui-calcontainer.multi {
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.yui-calcontainer.multi .groupcal {
|
||||
padding:5px;
|
||||
background-color:transparent;
|
||||
z-index:1;
|
||||
float:left;
|
||||
position:relative;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.yui-calcontainer .title {
|
||||
font:100% sans-serif;
|
||||
color:#000;
|
||||
font-weight:bold;
|
||||
margin-bottom:5px;
|
||||
height:25px;
|
||||
position:absolute;
|
||||
top:3px;left:5px;
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
.yui-calcontainer .close-icon {
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
text-indent:-10000em;
|
||||
right:3px;
|
||||
top:3px;
|
||||
border:none;
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
.yui-calcontainer .calclose {
|
||||
background: url("calx.gif") no-repeat;
|
||||
width:17px;
|
||||
height:13px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* Calendar element styles */
|
||||
|
||||
.yui-calendar {
|
||||
font:100% sans-serif;
|
||||
text-align:center;
|
||||
border-spacing:0;
|
||||
border-collapse:separate;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.yui-calcontainer.withtitle {
|
||||
padding-top:1.5em;
|
||||
}
|
||||
|
||||
.yui-calendar .calnavleft {
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
text-indent:-10000em;
|
||||
cursor:pointer;
|
||||
top:2px;
|
||||
bottom:0;
|
||||
width:9px;
|
||||
height:12px;
|
||||
left:2px;
|
||||
z-index:1;
|
||||
background: url("callt.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-calendar .calnavright {
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
text-indent:-10000em;
|
||||
cursor:pointer;
|
||||
top:2px;
|
||||
bottom:0;
|
||||
width:9px;
|
||||
height:12px;
|
||||
right:2px;
|
||||
z-index:1;
|
||||
background: url("calrt.gif") no-repeat;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell {
|
||||
padding:.1em .2em;
|
||||
border:1px solid #E0E0E0;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell a {
|
||||
color:#003DB8;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.today {
|
||||
border:1px solid #000;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.oom {
|
||||
cursor:default;
|
||||
color:#999;
|
||||
background-color:#EEE;
|
||||
border:1px solid #E0E0E0;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.selected {
|
||||
color:#003DB8;
|
||||
background-color:#FFF19F;
|
||||
border:1px solid #FF9900;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.calcellhover {
|
||||
cursor:pointer;
|
||||
color:#FFF;
|
||||
background-color:#FF9900;
|
||||
border:1px solid #FF9900;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.calcellhover a {
|
||||
color:#FFF;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.restricted {
|
||||
text-decoration:line-through;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.previous {
|
||||
color:#CCC;
|
||||
}
|
||||
|
||||
.yui-calendar td.calcell.highlight1 { background-color:#CCFF99; }
|
||||
.yui-calendar td.calcell.highlight2 { background-color:#99CCFF; }
|
||||
.yui-calendar td.calcell.highlight3 { background-color:#FFCCCC; }
|
||||
.yui-calendar td.calcell.highlight4 { background-color:#CCFF99; }
|
||||
|
||||
.yui-calendar .calhead {
|
||||
border:1px solid #E0E0E0;
|
||||
vertical-align:middle;
|
||||
background-color:#FFF;
|
||||
}
|
||||
|
||||
.yui-calendar .calheader {
|
||||
position:relative;
|
||||
width:100%;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-calendar .calheader img {
|
||||
border:none;
|
||||
}
|
||||
|
||||
.yui-calendar .calweekdaycell {
|
||||
color:#666;
|
||||
font-weight:normal;
|
||||
text-align:center;
|
||||
width:1.5em;
|
||||
}
|
||||
|
||||
.yui-calendar .calfoot {
|
||||
background-color:#EEE;
|
||||
}
|
||||
|
||||
.yui-calendar .calrowhead, .yui-calendar .calrowfoot {
|
||||
color:#666;
|
||||
font-size:9px;
|
||||
font-style:italic;
|
||||
font-weight:normal;
|
||||
width:15px;
|
||||
}
|
||||
|
||||
.yui-calendar .calrowhead {
|
||||
border-right-width:2px;
|
||||
}
|
||||
|
||||
/* CalendarNavigator */
|
||||
.yui-calendar a.calnav {
|
||||
_position:relative;
|
||||
padding-left:2px;
|
||||
padding-right:2px;
|
||||
text-decoration:none;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.yui-calendar a.calnav:hover {
|
||||
border:1px solid #003366;
|
||||
background-color:#6699cc;
|
||||
background: url(calgrad.png) repeat-x;
|
||||
color:#fff;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-mask {
|
||||
position:absolute;
|
||||
z-index:2;
|
||||
display:none;
|
||||
|
||||
margin:0;
|
||||
padding:0;
|
||||
|
||||
left:0;
|
||||
top:0;
|
||||
width:100%;
|
||||
height:100%;
|
||||
_width:0; /* IE6, IE7 Quirks - width/height set programmatically to match container */
|
||||
_height:0;
|
||||
|
||||
background-color:#000;
|
||||
opacity:0.25;
|
||||
*filter:alpha(opacity=25);
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav {
|
||||
position:absolute;
|
||||
z-index:3;
|
||||
display:none;
|
||||
|
||||
padding:0;
|
||||
top:1.5em;
|
||||
left:50%;
|
||||
width:12em;
|
||||
margin-left:-6em;
|
||||
|
||||
border:1px solid #7B9EBD;
|
||||
background-color:#F7F9FB;
|
||||
font-size:93%;
|
||||
}
|
||||
|
||||
.yui-calcontainer.withtitle .yui-cal-nav {
|
||||
top:3.5em;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-y,
|
||||
.yui-calcontainer .yui-cal-nav-m,
|
||||
.yui-calcontainer .yui-cal-nav-b {
|
||||
padding:2px 5px 2px 5px;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-b {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-e {
|
||||
margin-top:2px;
|
||||
padding:2px;
|
||||
background-color:#EDF5FF;
|
||||
border-top:1px solid black;
|
||||
display:none;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav label {
|
||||
display:block;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-mc {
|
||||
width:100%;
|
||||
_width:auto; /* IE6 doesn't like width 100% */
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-y input.yui-invalid {
|
||||
background-color:#FFEE69;
|
||||
border: 1px solid #000;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-yc {
|
||||
width:3em;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-b button {
|
||||
font-size:93%;
|
||||
text-decoration:none;
|
||||
cursor: pointer;
|
||||
background-color: #79b2ea;
|
||||
border: 1px solid #003366;
|
||||
border-top-color:#FFF;
|
||||
border-left-color:#FFF;
|
||||
margin:1px;
|
||||
}
|
||||
|
||||
.yui-calcontainer .yui-cal-nav-b .yui-default button {
|
||||
/* not implemented */
|
||||
}
|
||||
|
||||
/* Specific changes for calendar running under fonts/reset */
|
||||
.yui-calendar .calbody a:hover {background:inherit;}
|
||||
p#clear {clear:left; padding-top:10px;}
|
BIN
webdir/javascript/yui/calendar/assets/calgrad.png
Normal file
BIN
webdir/javascript/yui/calendar/assets/calgrad.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 497 B |
BIN
webdir/javascript/yui/calendar/assets/callt.gif
Normal file
BIN
webdir/javascript/yui/calendar/assets/callt.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 93 B |
BIN
webdir/javascript/yui/calendar/assets/calrt.gif
Normal file
BIN
webdir/javascript/yui/calendar/assets/calrt.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 94 B |
BIN
webdir/javascript/yui/calendar/assets/calx.gif
Normal file
BIN
webdir/javascript/yui/calendar/assets/calx.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 B |
@ -0,0 +1,361 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
||||
/**
|
||||
* SAM
|
||||
*
|
||||
* Skin colors used:
|
||||
*
|
||||
* - Control Border : 808080
|
||||
* - Control Chrome : f2f2f2
|
||||
* - Cell Borders : cccccc
|
||||
* - Normal Cell BG : ffffff
|
||||
* - Date Links : 0066cc
|
||||
* - Selected Cells BG : b3d4ff
|
||||
* - Cell Hover BG : 426fd9
|
||||
* - Disabled BG : cccccc
|
||||
* - Disabled Text Color : a6a6a6
|
||||
**/
|
||||
|
||||
/* CALENDAR BOUNDING BOX */
|
||||
.yui-skin-sam .yui-calcontainer {
|
||||
background-color:#f2f2f2;
|
||||
border:1px solid #808080;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
/* CALENDARGROUP BOUNDING BOX */
|
||||
.yui-skin-sam .yui-calcontainer.multi {
|
||||
padding:0 5px 0 5px;
|
||||
}
|
||||
|
||||
/* BOUNDING BOX FOR EACH CALENDAR GROUP PAGE */
|
||||
.yui-skin-sam .yui-calcontainer.multi .groupcal {
|
||||
background-color:transparent;
|
||||
border:none;
|
||||
padding:10px 5px 10px 5px;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
/* TITLE BAR */
|
||||
.yui-skin-sam .yui-calcontainer .title {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
|
||||
border-bottom:1px solid #cccccc;
|
||||
font:100% sans-serif;
|
||||
color:#000;
|
||||
font-weight:bold;
|
||||
height:auto;
|
||||
padding:.4em;
|
||||
margin:0 -10px 10px -10px;
|
||||
top:0;
|
||||
left:0;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer.multi .title {
|
||||
margin:0 -5px 0 -5px;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer.withtitle {
|
||||
padding-top:0;
|
||||
}
|
||||
|
||||
/* CLOSE BUTTON */
|
||||
.yui-skin-sam .yui-calcontainer .calclose {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -300px;
|
||||
width:25px;
|
||||
height:15px;
|
||||
top:.4em;
|
||||
right:.4em;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* CALENDAR TABLE */
|
||||
.yui-skin-sam .yui-calendar {
|
||||
border-spacing:0;
|
||||
border-collapse:collapse;
|
||||
font:100% sans-serif;
|
||||
text-align:center;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
/* NAVBAR BOUNDING BOX */
|
||||
.yui-skin-sam .yui-calendar .calhead {
|
||||
background:transparent;
|
||||
border:none;
|
||||
vertical-align:middle;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
/* NAVBAR TEXT CONTAINER */
|
||||
.yui-skin-sam .yui-calendar .calheader {
|
||||
background:transparent;
|
||||
font-weight:bold;
|
||||
padding:0 0 .6em 0;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar .calheader img {
|
||||
border:none;
|
||||
}
|
||||
|
||||
/* NAVBAR LEFT ARROW */
|
||||
.yui-skin-sam .yui-calendar .calnavleft {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -450px;
|
||||
width:25px;
|
||||
height:15px;
|
||||
top:0;
|
||||
bottom:0;
|
||||
left:-10px;
|
||||
margin-left:.4em;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* NAVBAR RIGHT ARROW */
|
||||
.yui-skin-sam .yui-calendar .calnavright {
|
||||
background:url(../../../../assets/skins/sam/sprite.png) no-repeat 0 -500px;
|
||||
width:25px;
|
||||
height:15px;
|
||||
top:0;
|
||||
bottom:0;
|
||||
right:-10px;
|
||||
margin-right:.4em;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* WEEKDAY HEADER ROW */
|
||||
.yui-skin-sam .yui-calendar .calweekdayrow {
|
||||
height:2em;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar .calweekdayrow th {
|
||||
padding:0;
|
||||
border:none;
|
||||
}
|
||||
|
||||
/* WEEKDAY (Su, Mo, Tu...) HEADER CELLS */
|
||||
.yui-skin-sam .yui-calendar .calweekdaycell {
|
||||
color:#000;
|
||||
font-weight:bold;
|
||||
text-align:center;
|
||||
width:2em;
|
||||
}
|
||||
|
||||
/* CALENDAR FOOTER. NOT IMPLEMENTED BY DEFAULT */
|
||||
.yui-skin-sam .yui-calendar .calfoot {
|
||||
background-color:#f2f2f2;
|
||||
}
|
||||
|
||||
/* WEEK NUMBERS (ROW HEADERS/FOOTERS) */
|
||||
.yui-skin-sam .yui-calendar .calrowhead, .yui-skin-sam .yui-calendar .calrowfoot {
|
||||
color:#a6a6a6;
|
||||
font-size:85%;
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar .calrowhead {
|
||||
text-align:right;
|
||||
padding:0 2px 0 0;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar .calrowfoot {
|
||||
text-align:left;
|
||||
padding:0 0 0 2px;
|
||||
}
|
||||
|
||||
/* NORMAL CELLS */
|
||||
.yui-skin-sam .yui-calendar td.calcell {
|
||||
border:1px solid #cccccc;
|
||||
background:#fff;
|
||||
padding:1px;
|
||||
height:1.6em;
|
||||
line-height:1.6em; /* set line height equal to cell height to center vertically */
|
||||
text-align:center;
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
/* LINK INSIDE NORMAL CELLS */
|
||||
.yui-skin-sam .yui-calendar td.calcell a {
|
||||
color:#0066cc;
|
||||
display:block;
|
||||
height:100%;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
/* TODAY'S DATE */
|
||||
.yui-skin-sam .yui-calendar td.calcell.today {
|
||||
background-color:#000;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar td.calcell.today a {
|
||||
background-color:#fff;
|
||||
}
|
||||
|
||||
/* OOM DATES */
|
||||
.yui-skin-sam .yui-calendar td.calcell.oom {
|
||||
background-color:#cccccc;
|
||||
color:#a6a6a6;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
/* SELECTED DATE */
|
||||
.yui-skin-sam .yui-calendar td.calcell.selected {
|
||||
background-color:#fff;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar td.calcell.selected a {
|
||||
background-color:#b3d4ff;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
/* HOVER DATE */
|
||||
.yui-skin-sam .yui-calendar td.calcell.calcellhover {
|
||||
background-color:#426fd9;
|
||||
color:#fff;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar td.calcell.calcellhover a {
|
||||
background-color:#426fd9;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
/* DEFAULT OOB DATES */
|
||||
.yui-skin-sam .yui-calendar td.calcell.previous {
|
||||
color:#e0e0e0;
|
||||
}
|
||||
|
||||
/* CUSTOM RENDERERS */
|
||||
.yui-skin-sam .yui-calendar td.calcell.restricted { text-decoration:line-through; }
|
||||
.yui-skin-sam .yui-calendar td.calcell.highlight1 { background-color:#ccff99; }
|
||||
.yui-skin-sam .yui-calendar td.calcell.highlight2 { background-color:#99ccff; }
|
||||
.yui-skin-sam .yui-calendar td.calcell.highlight3 { background-color:#ffcccc; }
|
||||
.yui-skin-sam .yui-calendar td.calcell.highlight4 { background-color:#ccff99; }
|
||||
|
||||
/* CalendarNavigator */
|
||||
|
||||
/* MONTH/YEAR LABEL */
|
||||
.yui-skin-sam .yui-calendar a.calnav {
|
||||
border: 1px solid #f2f2f2;
|
||||
padding:0 4px;
|
||||
text-decoration:none;
|
||||
color:#000;
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calendar a.calnav:hover {
|
||||
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
|
||||
border-color:#A0A0A0;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
/* NAVIGATOR MASK */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-mask {
|
||||
background-color:#000;
|
||||
opacity:0.25;
|
||||
*filter:alpha(opacity=25); /* IE */
|
||||
}
|
||||
|
||||
/* NAVIGATOR BOUNDING BOX */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav {
|
||||
font-family:arial,helvetica,clean,sans-serif;
|
||||
font-size:93%;
|
||||
border:1px solid #808080;
|
||||
left:50%;
|
||||
margin-left:-7em;
|
||||
width:14em;
|
||||
padding:0;
|
||||
top:2.5em;
|
||||
background-color:#f2f2f2;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer.withtitle .yui-cal-nav {
|
||||
top:4.5em;
|
||||
}
|
||||
|
||||
/* NAVIGATOR BOUNDING BOX */
|
||||
.yui-skin-sam .yui-calcontainer.multi .yui-cal-nav {
|
||||
width:16em;
|
||||
margin-left:-8em;
|
||||
}
|
||||
|
||||
/* NAVIGATOR YEAR/MONTH/BUTTON/ERROR BOUNDING BLOCKS */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-y,
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-m,
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-b {
|
||||
padding:5px 10px 5px 10px;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-b {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-e {
|
||||
margin-top:5px;
|
||||
padding:5px;
|
||||
background-color:#EDF5FF;
|
||||
border-top:1px solid black;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* NAVIGATOR LABELS */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav label {
|
||||
display:block;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/* NAVIGATOR MONTH CONTROL */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-mc {
|
||||
width:100%;
|
||||
_width:auto; /* IE6, IE7 Quirks don't handle 100% well */
|
||||
}
|
||||
|
||||
/* NAVIGATOR MONTH CONTROL, VALIDATION ERROR */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-y input.yui-invalid {
|
||||
background-color:#FFEE69;
|
||||
border: 1px solid #000;
|
||||
}
|
||||
|
||||
/* NAVIGATOR YEAR CONTROL */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc {
|
||||
width:4em;
|
||||
}
|
||||
|
||||
/* NAVIGATOR BUTTONS */
|
||||
|
||||
/* BUTTON WRAPPER */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn {
|
||||
border:1px solid #808080;
|
||||
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
|
||||
background-color:#ccc;
|
||||
margin: auto .15em;
|
||||
}
|
||||
|
||||
/* BUTTON (based on button-skin.css) */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn button {
|
||||
padding:0 8px;
|
||||
font-size:93%;
|
||||
line-height: 2; /* ~24px */
|
||||
*line-height: 1.7; /* For IE */
|
||||
min-height: 2em; /* For Gecko */
|
||||
*min-height: auto; /* For IE */
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/* DEFAULT BUTTONS */
|
||||
/* NOTE: IE6 will only pickup the yui-default specifier from the multiple class specifier */
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default {
|
||||
border:1px solid #304369;
|
||||
background-color: #426fd9;
|
||||
background: url(../../../../assets/skins/sam/sprite.png) repeat-x 0 -1400px;
|
||||
}
|
||||
|
||||
.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button {
|
||||
color:#fff;
|
||||
}
|
File diff suppressed because one or more lines are too long
7168
webdir/javascript/yui/calendar/calendar-debug.js
vendored
Normal file
7168
webdir/javascript/yui/calendar/calendar-debug.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
18
webdir/javascript/yui/calendar/calendar-min.js
vendored
Normal file
18
webdir/javascript/yui/calendar/calendar-min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
7138
webdir/javascript/yui/calendar/calendar.js
vendored
Normal file
7138
webdir/javascript/yui/calendar/calendar.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user