ant-design/components/date-picker/style/MonthPanel.less

76 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-month-panel {
position: absolute;
top: 1px;
2015-08-20 16:55:42 +08:00
right: 0;
bottom: 0;
left: 0;
2015-06-09 15:21:44 +08:00
z-index: 10;
border-radius: @border-radius-base;
background: @component-background;
outline: none;
> div { // TODO: this is a useless wrapper, and we need to remove it in rc-calendar
height: 100%;
}
2015-06-09 15:21:44 +08:00
}
2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-month-panel-hidden {
2015-06-09 15:21:44 +08:00
display: none;
}
2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-month-panel-header {
.calendarPanelHeader(~"@{calendar-prefix-cls}-month-panel");
2015-06-09 15:21:44 +08:00
}
.@{calendar-prefix-cls}-month-panel-body {
height: ~"calc(100% - 34px)";
}
2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-month-panel-table {
2015-06-09 15:21:44 +08:00
table-layout: fixed;
width: 100%;
height: 100%;
2015-06-09 15:21:44 +08:00
border-collapse: separate;
}
.@{calendar-prefix-cls}-month-panel-selected-cell .@{calendar-prefix-cls}-month-panel-month {
background: @primary-color;
color: #fff;
&:hover {
background: @primary-color;
color: #fff;
}
}
2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-month-panel-cell {
2015-06-09 15:21:44 +08:00
text-align: center;
&-disabled .@{calendar-prefix-cls}-month-panel-month {
&,
&:hover {
cursor: not-allowed;
color: #bcbcbc;
background: @disabled-bg;
}
}
2015-06-09 15:21:44 +08:00
}
2015-08-20 16:55:42 +08:00
.@{calendar-prefix-cls}-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;
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:39:01 +08:00
height: 24px;
line-height: 24px;
2015-08-20 16:55:42 +08:00
padding: 0 6px;
2015-06-12 15:39:01 +08:00
border-radius: 4px;
2015-10-29 19:01:10 +08:00
transition: background 0.3s ease;
2015-06-09 15:21:44 +08:00
&:hover {
background: @item-hover-bg;
2015-06-09 15:21:44 +08:00
cursor: pointer;
}
}