2014-06-03 21:18:51 +00:00
|
|
|
/*!
|
|
|
|
* jQuery UI Calendar @VERSION
|
|
|
|
* http://jqueryui.com
|
|
|
|
*
|
|
|
|
* Copyright 2014 jQuery Foundation and other contributors
|
|
|
|
* Released under the MIT license.
|
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://api.jqueryui.com/calendar/#theming
|
|
|
|
*/
|
|
|
|
.ui-calendar {
|
|
|
|
width: 17em;
|
|
|
|
padding: .2em .2em 0;
|
|
|
|
}
|
2015-01-30 23:42:40 +00:00
|
|
|
|
|
|
|
/* calendar header */
|
2014-06-03 21:18:51 +00:00
|
|
|
.ui-calendar .ui-calendar-header {
|
|
|
|
position: relative;
|
|
|
|
padding: .2em 0;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-prev,
|
|
|
|
.ui-calendar .ui-calendar-next {
|
2014-06-18 00:31:31 +00:00
|
|
|
cursor: pointer;
|
2014-06-03 21:18:51 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
2015-01-30 23:53:14 +00:00
|
|
|
width: 36px;
|
|
|
|
height: 31px;
|
2014-06-03 21:18:51 +00:00
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-prev:not(.ui-state-hover):not(.ui-state-focus),
|
|
|
|
.ui-calendar .ui-calendar-next:not(.ui-state-hover):not(.ui-state-focus) {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-prev {
|
|
|
|
left: 2px;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-next {
|
|
|
|
right: 2px;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-prev .ui-icon,
|
|
|
|
.ui-calendar .ui-calendar-next .ui-icon {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -8px;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -8px;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-title {
|
|
|
|
line-height: 1.8em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-01-30 23:42:40 +00:00
|
|
|
|
|
|
|
/* calendar grid */
|
2014-06-03 21:18:51 +00:00
|
|
|
.ui-calendar table {
|
|
|
|
width: 100%;
|
|
|
|
font-size: .9em;
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 0 0 .4em;
|
|
|
|
}
|
|
|
|
.ui-calendar th {
|
|
|
|
padding: .7em .3em;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.ui-calendar td {
|
|
|
|
border: 0;
|
|
|
|
padding: 1px;
|
|
|
|
}
|
2015-01-20 17:23:49 +00:00
|
|
|
.ui-calendar td button {
|
2014-06-03 21:18:51 +00:00
|
|
|
display: block;
|
|
|
|
padding: .2em;
|
|
|
|
text-align: right;
|
2015-01-20 17:23:49 +00:00
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.ui-calendar td button::-moz-focus-inner {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-state-disabled button {
|
|
|
|
cursor: default;
|
2014-06-03 21:18:51 +00:00
|
|
|
}
|
2015-01-30 23:42:40 +00:00
|
|
|
|
|
|
|
/* button pane */
|
2014-06-03 21:18:51 +00:00
|
|
|
.ui-calendar .ui-calendar-buttonpane {
|
|
|
|
background-image: none;
|
|
|
|
margin: .7em 0 0 0;
|
|
|
|
padding: 0 .2em;
|
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-buttonpane button {
|
|
|
|
float: right;
|
|
|
|
margin: .5em .2em .4em;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .2em .6em .3em .6em;
|
|
|
|
width: auto;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.ui-calendar .ui-calendar-buttonpane button.ui-calendar-current {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* with multiple calendars */
|
2014-06-17 23:35:51 +00:00
|
|
|
.ui-calendar-multi {
|
|
|
|
width: auto;
|
|
|
|
display: inline-block;
|
2014-06-03 21:18:51 +00:00
|
|
|
}
|
|
|
|
.ui-calendar-multi .ui-calendar-group {
|
2015-01-30 23:53:14 +00:00
|
|
|
width: 17em;
|
2014-06-03 21:18:51 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.ui-calendar-multi .ui-calendar-group table {
|
|
|
|
width: 95%;
|
2014-06-17 23:35:51 +00:00
|
|
|
margin: 0 2.5% .4em;
|
2014-06-03 21:18:51 +00:00
|
|
|
}
|
|
|
|
.ui-calendar-multi .ui-calendar-buttonpane {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
.ui-calendar-row-break {
|
|
|
|
clear: both;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RTL support */
|
|
|
|
.ui-calendar-rtl {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-prev {
|
|
|
|
right: 2px;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-next {
|
|
|
|
left: 2px;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-prev:hover {
|
|
|
|
right: 1px;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-next:hover {
|
|
|
|
left: 1px;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-buttonpane {
|
|
|
|
clear: right;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-buttonpane button {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.ui-calendar-rtl .ui-calendar-buttonpane button.ui-calendar-current,
|
|
|
|
.ui-calendar-rtl .ui-calendar-group {
|
|
|
|
float: right;
|
|
|
|
}
|