123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- .calendarLeftArrow() {
- height: 100%;
- &::before,
- &::after {
- position: relative;
- top: -1px;
- display: inline-block;
- width: 8px;
- height: 8px;
- vertical-align: middle;
- border: 0 solid #aaa;
- border-width: 1.5px 0 0 1.5px;
- border-radius: 1px;
- transform: rotate(-45deg) scale(0.8);
- transition: all 0.3s;
- content: '';
- }
- &:hover::before,
- &:hover::after {
- border-color: @text-color;
- }
- &::after {
- display: none;
- }
- }
- .calendarLeftDoubleArrow() {
- .calendarLeftArrow;
- &::after {
- position: relative;
- left: -3px;
- display: inline-block;
- }
- }
- .calendarRightArrow() {
- .calendarLeftArrow;
- &::before,
- &::after {
- transform: rotate(135deg) scale(0.8);
- }
- }
- .calendarRightDoubleArrow() {
- .calendarRightArrow;
- &::before {
- position: relative;
- left: 3px;
- }
- &::after {
- display: inline-block;
- }
- }
- .calendarPanelHeader(@calendar-prefix-cls) {
- height: 40px;
- line-height: 40px;
- text-align: center;
- border-bottom: @border-width-base @border-style-base @border-color-split;
- user-select: none;
- a:hover {
- color: @link-hover-color;
- }
- .@{calendar-prefix-cls}-century-select,
- .@{calendar-prefix-cls}-decade-select,
- .@{calendar-prefix-cls}-year-select,
- .@{calendar-prefix-cls}-month-select {
- display: inline-block;
- padding: 0 2px;
- color: @heading-color;
- font-weight: 500;
- line-height: 40px;
- }
- .@{calendar-prefix-cls}-century-select-arrow,
- .@{calendar-prefix-cls}-decade-select-arrow,
- .@{calendar-prefix-cls}-year-select-arrow,
- .@{calendar-prefix-cls}-month-select-arrow {
- display: none;
- }
- .@{calendar-prefix-cls}-prev-century-btn,
- .@{calendar-prefix-cls}-next-century-btn,
- .@{calendar-prefix-cls}-prev-decade-btn,
- .@{calendar-prefix-cls}-next-decade-btn,
- .@{calendar-prefix-cls}-prev-month-btn,
- .@{calendar-prefix-cls}-next-month-btn,
- .@{calendar-prefix-cls}-prev-year-btn,
- .@{calendar-prefix-cls}-next-year-btn {
- position: absolute;
- top: 0;
- display: inline-block;
- padding: 0 5px;
- color: @text-color-secondary;
- font-size: 16px;
- font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
- line-height: 40px;
- }
- .@{calendar-prefix-cls}-prev-century-btn,
- .@{calendar-prefix-cls}-prev-decade-btn,
- .@{calendar-prefix-cls}-prev-year-btn {
- left: 7px;
- .calendarLeftDoubleArrow;
- }
- .@{calendar-prefix-cls}-next-century-btn,
- .@{calendar-prefix-cls}-next-decade-btn,
- .@{calendar-prefix-cls}-next-year-btn {
- right: 7px;
- .calendarRightDoubleArrow;
- }
- .@{calendar-prefix-cls}-prev-month-btn {
- left: 29px;
- .calendarLeftArrow;
- }
- .@{calendar-prefix-cls}-next-month-btn {
- right: 29px;
- .calendarRightArrow;
- }
- }
- .calendar-selected-cell() {
- .@{calendar-prefix-cls}-date {
- color: @text-color-inverse;
- background: @primary-color;
- border: @border-width-base @border-style-base transparent;
- &:hover {
- background: @primary-color;
- }
- }
- }
- .@{calendar-prefix-cls} {
- position: relative;
- width: 280px;
- font-size: @font-size-base;
- line-height: @line-height-base;
- text-align: left;
- list-style: none;
- background-color: @component-background;
- background-clip: padding-box;
- border: @border-width-base @border-style-base @border-color-inverse;
- border-radius: @border-radius-base;
- outline: none;
- box-shadow: @box-shadow-base;
- &-input-wrap {
- height: 34px;
- padding: 6px @control-padding-horizontal - 2px;
- border-bottom: @border-width-base @border-style-base @border-color-split;
- }
- &-input {
- width: 100%;
- height: 22px;
- color: @input-color;
- background: @input-bg;
- border: 0;
- outline: 0;
- cursor: auto;
- .placeholder;
- }
- &-week-number {
- width: 286px;
- &-cell {
- text-align: center;
- }
- }
- &-header {
- .calendarPanelHeader(@calendar-prefix-cls);
- }
- &-body {
- padding: 8px 12px;
- }
- table {
- width: 100%;
- max-width: 100%;
- background-color: transparent;
- border-collapse: collapse;
- }
- table,
- th,
- td {
- text-align: center;
- border: 0;
- }
- &-calendar-table {
- margin-bottom: 0;
- border-spacing: 0;
- }
- &-column-header {
- width: 33px;
- padding: 6px 0;
- line-height: 18px;
- text-align: center;
- .@{calendar-prefix-cls}-column-header-inner {
- display: block;
- font-weight: normal;
- }
- }
- &-week-number-header {
- .@{calendar-prefix-cls}-column-header-inner {
- display: none;
- }
- }
- &-cell {
- height: 30px;
- padding: 3px 0;
- }
- &-date {
- display: block;
- width: 24px;
- height: 24px;
- margin: 0 auto;
- padding: 0;
- color: @text-color;
- line-height: 22px;
- text-align: center;
- background: transparent;
- border: @border-width-base @border-style-base transparent;
- border-radius: @border-radius-sm;
- transition: background 0.3s ease;
- &-panel {
- position: relative;
- outline: none;
- }
- &:hover {
- background: @item-hover-bg;
- cursor: pointer;
- }
- &:active {
- color: @text-color-inverse;
- background: @primary-5;
- }
- }
- &-today &-date {
- color: @primary-color;
- font-weight: bold;
- border-color: @primary-color;
- }
- &-selected-day &-date {
- background: @primary-2;
- }
- &-last-month-cell &-date,
- &-next-month-btn-day &-date {
- &,
- &:hover {
- color: @disabled-color;
- background: transparent;
- border-color: transparent;
- }
- }
- &-disabled-cell &-date {
- position: relative;
- width: auto;
- color: @disabled-color;
- background: @disabled-bg;
- border: @border-width-base @border-style-base transparent;
- border-radius: 0;
- cursor: not-allowed;
- &:hover {
- background: @disabled-bg;
- }
- }
- &-disabled-cell&-selected-day &-date::before {
- position: absolute;
- top: -1px;
- left: 5px;
- width: 24px;
- height: 24px;
- background: rgba(0, 0, 0, 0.1);
- border-radius: @border-radius-sm;
- content: '';
- }
- &-disabled-cell&-today &-date {
- position: relative;
- padding-right: 5px;
- padding-left: 5px;
- &::before {
- position: absolute;
- top: -1px;
- left: 5px;
- width: 24px;
- height: 24px;
- border: @border-width-base @border-style-base @disabled-color;
- border-radius: @border-radius-sm;
- content: ' ';
- }
- }
- &-disabled-cell-first-of-row &-date {
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- &-disabled-cell-last-of-row &-date {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- &-footer {
- padding: 0 12px;
- line-height: 38px;
- border-top: @border-width-base @border-style-base @border-color-split;
- &:empty {
- border-top: 0;
- }
- &-btn {
- display: block;
- text-align: center;
- }
- &-extra {
- text-align: left;
- }
- }
- .@{calendar-prefix-cls}-today-btn,
- .@{calendar-prefix-cls}-clear-btn {
- display: inline-block;
- margin: 0 0 0 8px;
- text-align: center;
- &-disabled {
- color: @disabled-color;
- cursor: not-allowed;
- }
- &:only-child {
- margin: 0;
- }
- }
- .@{calendar-prefix-cls}-clear-btn {
- position: absolute;
- top: 7px;
- right: 5px;
- display: none;
- width: 20px;
- height: 20px;
- margin: 0;
- overflow: hidden;
- line-height: 20px;
- text-align: center;
- text-indent: -76px;
- }
- .@{calendar-prefix-cls}-clear-btn::after {
- display: inline-block;
- width: 20px;
- color: @disabled-color;
- font-size: @font-size-base;
- line-height: 1;
- text-indent: 43px;
- transition: color 0.3s ease;
- }
- .@{calendar-prefix-cls}-clear-btn:hover::after {
- color: @text-color-secondary;
- }
- .@{calendar-prefix-cls}-ok-btn {
- .btn;
- .btn-primary;
- .button-size(@btn-height-sm; @btn-padding-sm; @font-size-base; @border-radius-base);
- line-height: @btn-height-sm - 2px;
- .button-disabled();
- }
- }
|