123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- .calendar {
- border-width: 1px;
- border-style: solid;
- padding: 1px;
- overflow: hidden;
- }
- .calendar table {
- table-layout: fixed;
- border-collapse: separate;
- font-size: 14px;
- width: 100%;
- height: 100%;
- }
- .calendar table td,
- .calendar table th {
- font-size: 14px;
- }
- .calendar-noborder {
- border: 0;
- }
- .calendar-header {
- position: relative;
- height: 28px;
- }
- .calendar-title {
- text-align: center;
- height: 28px;
- }
- .calendar-title span {
- position: relative;
- display: inline-block;
- top: 0px;
- padding: 0 3px;
- height: 28px;
- line-height: 28px;
- font-size: 14px;
- cursor: pointer;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-prevmonth,
- .calendar-nextmonth,
- .calendar-prevyear,
- .calendar-nextyear {
- position: absolute;
- top: 50%;
- margin-top: -8px;
- width: 16px;
- height: 16px;
- cursor: pointer;
- font-size: 1px;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-prevmonth {
- left: 20px;
- background: url('images/calendar_arrows.png') no-repeat -16px 0;
- }
- .calendar-nextmonth {
- right: 20px;
- background: url('images/calendar_arrows.png') no-repeat -32px 0;
- }
- .calendar-prevyear {
- left: 3px;
- background: url('images/calendar_arrows.png') no-repeat 0px 0;
- }
- .calendar-nextyear {
- right: 3px;
- background: url('images/calendar_arrows.png') no-repeat -48px 0;
- }
- .calendar-body {
- position: relative;
- }
- .calendar-body th,
- .calendar-body td {
- text-align: center;
- }
- .calendar-day {
- border: 0;
- padding: 1px;
- cursor: pointer;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-other-month {
- opacity: 0.3;
- filter: alpha(opacity=30);
- }
- .calendar-disabled {
- opacity: 0.6;
- filter: alpha(opacity=60);
- cursor: default;
- }
- .calendar-menu {
- position: absolute;
- top: 0;
- left: 0;
- width: 180px;
- height: 150px;
- padding: 5px;
- font-size: 14px;
- display: none;
- overflow: hidden;
- }
- .calendar-menu-year-inner {
- text-align: center;
- padding-bottom: 5px;
- }
- .calendar-menu-year {
- width: 80px;
- line-height: 26px;
- text-align: center;
- border-width: 1px;
- border-style: solid;
- outline-style: none;
- resize: none;
- margin: 0;
- padding: 0;
- font-weight: bold;
- font-size: 14px;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-menu-prev,
- .calendar-menu-next {
- display: inline-block;
- width: 25px;
- height: 28px;
- vertical-align: top;
- cursor: pointer;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-menu-prev {
- margin-right: 10px;
- background: url('images/calendar_arrows.png') no-repeat 5px center;
- }
- .calendar-menu-next {
- margin-left: 10px;
- background: url('images/calendar_arrows.png') no-repeat -44px center;
- }
- .calendar-menu-month {
- text-align: center;
- cursor: pointer;
- font-weight: bold;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- }
- .calendar-body th,
- .calendar-menu-month {
- color: #4d4d4d;
- }
- .calendar-day {
- color: #000000;
- }
- .calendar-sunday {
- color: #CC2222;
- }
- .calendar-saturday {
- color: #00ee00;
- }
- .calendar-today {
- color: #0000ff;
- }
- .calendar-menu-year {
- border-color: #D3D3D3;
- }
- .calendar {
- border-color: #D3D3D3;
- }
- .calendar-header {
- background: #f3f3f3;
- }
- .calendar-body,
- .calendar-menu {
- background: #ffffff;
- }
- .calendar-body th {
- background: #fafafa;
- padding: 4px 0;
- }
- .calendar-hover,
- .calendar-nav-hover,
- .calendar-menu-hover {
- background-color: #e2e2e2;
- color: #000000;
- }
- .calendar-hover {
- border: 1px solid #ccc;
- padding: 0;
- }
- .calendar-selected {
- background-color: #0092DC;
- color: #fff;
- border: 1px solid #0070a9;
- padding: 0;
- }
|