-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 日历支持footer的children定义,增加日历+datepicker的demo (#1277)
* feat: 日历组件支持在 footer 部分的children自定义,增加demo 日历+datepicker的交互demo * docs: 补充文档 * fix: review
- Loading branch information
1 parent
aff82ef
commit bb0ceb0
Showing
12 changed files
with
821 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,59 @@ | ||
.wrapper { | ||
display: flex; | ||
padding: 0 40px; | ||
} | ||
.nut-calendar { | ||
.nut-calendar-btns { | ||
height: 40px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-evenly; | ||
padding: 0 20px; | ||
} | ||
|
||
.nut-calendar-date { | ||
background-color: #f9f9f9; | ||
font-size: 12px; | ||
|
||
&.disabled { | ||
color: $disable-color; | ||
} | ||
} | ||
|
||
.wrapper { | ||
display: flex; | ||
padding: 0 40px; | ||
} | ||
|
||
.d_div { | ||
margin: 0px 5px; | ||
.d_div { | ||
margin: 0px 5px; | ||
|
||
.d_btn { | ||
background: #fa3f19; | ||
color: #fff; | ||
.d_btn { | ||
background: #fa3f19; | ||
color: #fff; | ||
font-size: 12px; | ||
padding: 2px 8px; | ||
border-radius: 4px; | ||
display: inline-block; | ||
height: 20px; | ||
} | ||
} | ||
|
||
.info { | ||
display: block; | ||
font-size: 12px; | ||
padding: 2px 8px; | ||
border-radius: 4px; | ||
display: inline-block; | ||
height: 20px; | ||
line-height: 16px; | ||
color: #999; | ||
} | ||
} | ||
|
||
.info { | ||
display: block; | ||
font-size: 12px; | ||
line-height: 16px; | ||
color: #999; | ||
.nut-cell__description { | ||
.desc-box { | ||
display: flex; | ||
} | ||
|
||
.desc { | ||
padding: 10px; | ||
background-color: #f9f9f9; | ||
} | ||
|
||
.desc1 { | ||
padding: 10px; | ||
} | ||
} |
Oops, something went wrong.