-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix datepicker alignment #1085
Fix datepicker alignment #1085
Conversation
Is master |
@skjnldsv nope |
I was confused! :D |
Travis going wild but it shouldn't matter. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- A regression: The radio buttons "Day/Week/Month" should stay connected instead of being 3 separate buttons.
- Another regression: The horizontal space between days is much bigger than the vertical space. This looks strange and should be even. Meaning the datepicker should also grow taller.
- An enhancement: The circle around the current day should actually be circular (or pill-style) but not oval. Instead of
border-radius: 50%
, useborder-radius: --border-radius-pill;
(which is 100px) which will look much nicer.
With lots of flex love Also make middle "week" button round Fix stylelint warnings Fix arrow positions Fix JCB feedback Signed-off-by: Thomas Citharel <tcit@tcit.fr>
4350c12
to
0dc08e9
Compare
@jancborchardt Addressed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! Looking great :)
Follow up to #1043
Before
(latest release, without #1043 and round buttons)
After