2015-06-09 15:21:44 +08:00
|
|
|
.@{prefixCalendarClass}-month-panel {
|
|
|
|
left: 0px;
|
|
|
|
top:0px;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
background: #ffffff;
|
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-header {
|
2015-06-12 15:39:01 +08:00
|
|
|
.calendarPanelHeader(~"@{prefixCalendarClass}-month-panel");
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-table {
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
2015-06-12 15:39:01 +08:00
|
|
|
height: 248px;
|
2015-06-09 15:21:44 +08:00
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-cell {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-month {
|
2015-06-12 15:39:01 +08:00
|
|
|
display: inline-block;
|
2015-06-09 15:21:44 +08:00
|
|
|
margin: 0 auto;
|
|
|
|
color: #666;
|
|
|
|
background: transparent;
|
|
|
|
text-align: center;
|
2015-06-12 15:39:01 +08:00
|
|
|
height: 24px;
|
|
|
|
line-height: 24px;
|
|
|
|
padding: 0px 6px;
|
|
|
|
border-radius: 4px;
|
2015-06-09 15:21:44 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #ebfaff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{prefixCalendarClass}-month-panel-selected-cell .@{prefixCalendarClass}-month-panel-month {
|
|
|
|
background: #3fc7fa;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #3fc7fa;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|