123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .g-date {
- width: 412px;
- .ant-calendar {
- box-shadow: none;
- width: 100%;
- .ant-calendar-input-wrap {
- padding: 13px 10px;
- line-height: 20px;
- background: #F7F7F7;
- height: 46px;
- border: none;
- margin-bottom: 10px;
- input {
- background: #F7F7F7;
- color: #303036;
- }
- }
- .ant-calendar-header {
- color: #000;
- font-size: 16px;
- border: none;
- margin-bottom: 5px;
- }
- .ant-calendar-body {
- table {
- th {
- height: 64px;
- background: #F5F6F7;
- }
- td {
- height: 50px;
- }
- }
- .ant-calendar-date {
- width: 35px;
- height: 35px;
- line-height: 33px;
- border-radius: 50%;
- position: relative;
- .s1 {
- width: 6px;
- height: 6px;
- border-radius: 50%;
- position: absolute;
- right: 0;
- top: 10px;
- }
- .s2 {
- width: 6px;
- height: 6px;
- border-radius: 50%;
- position: absolute;
- right: 0;
- top: 18px;
- }
- }
- .ant-calendar-today .ant-calendar-date {
- border-color: #fff;
- }
- .ant-calendar-selected-date .ant-calendar-date,
- .ant-calendar-selected-date.ant-calendar-today .ant-calendar-date {
- color: #1890ff;
- font-weight: 700;
- border-color: #1890ff;
- background: #fff;
- }
- .ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date:before {
- display: none;
- }
- }
- .ant-calendar-footer {
- display: none;
- }
- }
- }
- .g-date.hide-input {
- .ant-calendar-input-wrap {
- display: none;
- }
- }
- .g-date-block {
- height: 500px;
- .ant-calendar-picker {
- opacity: 0;
- }
- }
- .g-date-block.hide-input {
- height: 460px;
- }
|