mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
4026221d45
* deps: upgrade TimePicker * deps: upgrade DatePicker * deps: upgrade Calendar * fix: moment should work with LocaleProvider * feat: update API of TimePicker * feat: update Calendar's APIs * feat: update DatePicker's APIs * doc: update demo * revert: add dateString and timeString and so on * feat: add Calendar[defaultValue] * feat: add defaultPickerValue * docs: update docs about date picker * feat: set moment locale to zh-cn automatically
68 lines
1.3 KiB
Plaintext
68 lines
1.3 KiB
Plaintext
.@{calendar-prefix-cls}-month-panel {
|
|
left: 0;
|
|
top: 1px;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: #fff;
|
|
z-index: 10;
|
|
position: absolute;
|
|
outline: none;
|
|
border-radius: @border-radius-base;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-month-panel-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-month-panel-header {
|
|
.calendarPanelHeader(~"@{calendar-prefix-cls}-month-panel");
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-month-panel-table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
height: 248px;
|
|
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;
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-month-panel-cell {
|
|
text-align: center;
|
|
|
|
&-disabled .@{calendar-prefix-cls}-month-panel-month {
|
|
&,
|
|
&:hover {
|
|
cursor: not-allowed;
|
|
color: #bcbcbc;
|
|
background: #f3f3f3;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-month-panel-month {
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
color: #666;
|
|
background: transparent;
|
|
text-align: center;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
padding: 0 6px;
|
|
border-radius: 4px;
|
|
transition: background 0.3s ease;
|
|
|
|
&:hover {
|
|
background: tint(@primary-color, 90%);
|
|
cursor: pointer;
|
|
}
|
|
}
|