100 lines
1.9 KiB
CSS
100 lines
1.9 KiB
CSS
/*!
|
|
* jQuery UI Datepicker 1.10.0
|
|
* http://jqueryui.com
|
|
*
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
|
* Released under the MIT license.
|
|
* http://jquery.org/license
|
|
*
|
|
* http://docs.jquery.com/UI/Datepicker#theming
|
|
*/
|
|
.ui-datepicker {
|
|
width: 17em;
|
|
padding: .2em .2em 0;
|
|
display: none;
|
|
}
|
|
.ui-datepicker .ui-datepicker-header {
|
|
position: relative;
|
|
padding: .2em 0;
|
|
}
|
|
.ui-datepicker .ui-datepicker-prev,
|
|
.ui-datepicker .ui-datepicker-next {
|
|
position: absolute;
|
|
top: 2px;
|
|
width: 1.8em;
|
|
height: 1.8em;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.ui-datepicker .ui-datepicker-prev {
|
|
left: 2px;
|
|
}
|
|
.ui-datepicker .ui-datepicker-next {
|
|
right: 2px;
|
|
}
|
|
.ui-datepicker .ui-datepicker-prev span,
|
|
.ui-datepicker .ui-datepicker-next span {
|
|
display: block;
|
|
text-align: center;
|
|
line-height: 25px;
|
|
}
|
|
.ui-datepicker .ui-datepicker-title {
|
|
margin: 0 2.3em;
|
|
line-height: 1.8em;
|
|
text-align: center;
|
|
}
|
|
.ui-datepicker .ui-datepicker-title select {
|
|
font-size: 1em;
|
|
margin: 1px 0;
|
|
}
|
|
.ui-datepicker select.ui-datepicker-month-year {
|
|
width: 100%;
|
|
}
|
|
.ui-datepicker select.ui-datepicker-month,
|
|
.ui-datepicker select.ui-datepicker-year {
|
|
width: 49%;
|
|
}
|
|
.ui-datepicker table {
|
|
width: 100%;
|
|
font-size: .9em;
|
|
border-collapse: collapse;
|
|
margin: 0 0 .4em;
|
|
}
|
|
.ui-datepicker th {
|
|
padding: .7em .3em;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border: 0;
|
|
}
|
|
.ui-datepicker td {
|
|
border: 0;
|
|
padding: 1px;
|
|
}
|
|
.ui-datepicker td span,
|
|
.ui-datepicker td a {
|
|
display: block;
|
|
padding: .2em;
|
|
text-align: right;
|
|
text-decoration: none;
|
|
}
|
|
.ui-datepicker .ui-datepicker-buttonpane {
|
|
background-image: none;
|
|
margin: .7em 0 0 0;
|
|
padding: 0 .2em;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-bottom: 0;
|
|
}
|
|
.ui-datepicker .ui-datepicker-buttonpane button {
|
|
float: right;
|
|
margin: .5em .2em .4em;
|
|
cursor: pointer;
|
|
padding: .2em .6em .3em .6em;
|
|
width: auto;
|
|
overflow: visible;
|
|
}
|
|
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
|
float: left;
|
|
} |