2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel {
|
2017-04-06 18:44:11 +08:00
|
|
|
position: absolute;
|
2015-08-20 16:55:42 +08:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2017-04-06 18:44:11 +08:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2015-06-09 15:21:44 +08:00
|
|
|
z-index: 10;
|
2017-04-06 18:44:11 +08:00
|
|
|
background: @component-background;
|
2015-09-15 18:16:34 +08:00
|
|
|
border-radius: @border-radius-base;
|
2017-04-06 18:44:11 +08:00
|
|
|
outline: none;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-hidden {
|
2015-06-09 15:21:44 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-header {
|
2018-12-07 20:02:01 +08:00
|
|
|
.calendarPanelHeader(~'@{calendar-prefix-cls}-decade-panel');
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2017-04-06 18:44:11 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-body {
|
2018-12-07 20:02:01 +08:00
|
|
|
height: ~'calc(100% - 40px)';
|
2017-04-06 18:44:11 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-table {
|
2015-06-09 15:21:44 +08:00
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
2017-04-06 18:44:11 +08:00
|
|
|
height: 100%;
|
2015-06-09 15:21:44 +08:00
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-cell {
|
2015-06-09 15:21:44 +08:00
|
|
|
text-align: center;
|
2017-01-04 10:48:40 +08:00
|
|
|
white-space: nowrap;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-decade {
|
2015-06-12 15:49:06 +08:00
|
|
|
display: inline-block;
|
2015-06-09 15:21:44 +08:00
|
|
|
margin: 0 auto;
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2015-06-09 15:21:44 +08:00
|
|
|
background: transparent;
|
|
|
|
text-align: center;
|
2015-06-12 15:49:06 +08:00
|
|
|
height: 24px;
|
|
|
|
line-height: 24px;
|
2015-08-20 16:55:42 +08:00
|
|
|
padding: 0 6px;
|
2017-09-27 22:32:49 +08:00
|
|
|
border-radius: @border-radius-sm;
|
2015-10-29 19:01:10 +08:00
|
|
|
transition: background 0.3s ease;
|
2015-06-09 15:21:44 +08:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-03 22:57:14 +08:00
|
|
|
background: @item-hover-bg;
|
2015-06-09 15:21:44 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-selected-cell .@{calendar-prefix-cls}-decade-panel-decade {
|
2015-07-06 10:36:58 +08:00
|
|
|
background: @primary-color;
|
2018-12-04 13:11:31 +08:00
|
|
|
color: @text-color-inverse;
|
2015-06-09 15:21:44 +08:00
|
|
|
|
|
|
|
&:hover {
|
2015-07-06 10:36:58 +08:00
|
|
|
background: @primary-color;
|
2018-12-04 13:11:31 +08:00
|
|
|
color: @text-color-inverse;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.@{calendar-prefix-cls}-decade-panel-last-century-cell,
|
|
|
|
.@{calendar-prefix-cls}-decade-panel-next-century-cell {
|
|
|
|
.@{calendar-prefix-cls}-decade-panel-decade {
|
2015-06-09 15:21:44 +08:00
|
|
|
user-select: none;
|
2017-01-12 10:35:17 +08:00
|
|
|
color: @disabled-color;
|
2015-11-13 14:58:49 +08:00
|
|
|
}
|
2015-06-11 18:08:00 +08:00
|
|
|
}
|