mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
6936599aef
* rename .stylelintrc to .stylelintrc.json for explicit file type * add new npm script lint-fix:style * fix pseudo-element with double colon * function name should be lower except ignored functions * support stylelint declaration-block-no-ignored-properties rule * support sorted CSS properties order for readability and consistency * autofix order of all styles by lint-fix:style script * remove double slash comments after selector * replace .stylelintignore with ignoreFiles in .stylelintrc.json
22 lines
526 B
Plaintext
22 lines
526 B
Plaintext
.@{calendar-prefix-cls}-week-number {
|
|
&-cell {
|
|
opacity: 0.5;
|
|
}
|
|
.@{calendar-prefix-cls}-body tr {
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
&:hover {
|
|
background: @primary-1;
|
|
}
|
|
&.@{calendar-prefix-cls}-active-week {
|
|
font-weight: bold;
|
|
background: @primary-2;
|
|
}
|
|
.@{calendar-prefix-cls}-selected-day .@{calendar-prefix-cls}-date,
|
|
.@{calendar-prefix-cls}-selected-day:hover .@{calendar-prefix-cls}-date {
|
|
color: @text-color;
|
|
background: transparent;
|
|
}
|
|
}
|
|
}
|