From 2a57a4af274089e3fa9c33a8c850eb76c8135abf Mon Sep 17 00:00:00 2001 From: Benjy Cui Date: Wed, 14 Sep 2016 14:22:27 +0800 Subject: [PATCH] fix: css of DatePicker --- components/date-picker/style/Calendar.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/components/date-picker/style/Calendar.less b/components/date-picker/style/Calendar.less index 61864d2372..cf9d0d785a 100644 --- a/components/date-picker/style/Calendar.less +++ b/components/date-picker/style/Calendar.less @@ -49,20 +49,36 @@ .@{calendar-prefix-cls}-prev-decade-btn, .@{calendar-prefix-cls}-prev-year-btn { left: 7px; + + &:after { + content: '«'; + } } .@{calendar-prefix-cls}-next-century-btn, .@{calendar-prefix-cls}-next-decade-btn, .@{calendar-prefix-cls}-next-year-btn { right: 7px; + + &:after { + content: '»'; + } } .@{calendar-prefix-cls}-prev-month-btn { left: 29px; + + &:after { + content: '‹'; + } } .@{calendar-prefix-cls}-next-month-btn { right: 29px; + + &:after { + content: '›'; + } } }