You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.5 KiB
74 lines
1.5 KiB
.@{calendar-prefix-cls}-year-panel {
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: #fff;
|
|
z-index: 10;
|
|
position: absolute;
|
|
outline: none;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-header {
|
|
.calendarPanelHeader(~"@{calendar-prefix-cls}-year-panel");
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
height: 248px;
|
|
border-collapse: separate;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-cell {
|
|
text-align: center;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-year {
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
color: #666;
|
|
background: transparent;
|
|
text-align: center;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
padding: 0 6px;
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
background: tint(@primary-color, 90%);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-selected-cell .@{calendar-prefix-cls}-year-panel-year {
|
|
background: @primary-color;
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
background: @primary-color;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-last-decade-cell, .@{calendar-prefix-cls}-year-panel-next-decade-cell {
|
|
.@{calendar-prefix-cls}-year-panel-year{
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
.@{calendar-prefix-cls}-year-panel-year:before {
|
|
content: "\e611";
|
|
font-family: "anticon" !important;
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-year-panel-last-decade-cell {
|
|
.@{calendar-prefix-cls}-year-panel-year {
|
|
transform: rotate(180deg);
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
|
}
|
|
}
|
|
|