-
Notifications
You must be signed in to change notification settings - Fork 37
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
Implement settings profile pages #4704
Implement settings profile pages #4704
Conversation
It is not used by me actually. Must be a false positive
It is not used by me actually. Must be a false positive
In old implementation on timezone picker, I was using json serialization. However, I changed to other approach later
1. Add cursor pointer to radio item 2. Fix gender display raw value in profile page
95556a0
to
3bb09a1
Compare
3bb09a1
to
645959e
Compare
.settings-user-profile-pic__edit-button { | ||
@apply inline-flex items-center justify-center; | ||
@apply w-9 h-9; | ||
@apply absolute bottom-0 -right-2 tablet:right-3.5; |
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.
ltr trl
- This is stated in the guideline. UI v2 coding guidelines #3626
- I want a stylelint rule to warn you guys automatically about this.
"v2.page.settings-profile-edit-gender.default.gender-label-female": "Female", | ||
"v2.page.settings-profile-edit-gender.default.gender-label-male": "Male", | ||
"v2.page.settings-profile-edit-gender.default.gender-label-unspecified": "Not provided", | ||
"v2.page.settings-profile-edit-gender.default.title-gender": "Gender", |
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.
I guess this is page title? Then just .title
, not .title-gender
.
font-size: var(--navbar__item-icon-font-size); | ||
&::before { | ||
/* arrow_back_ios (<) in ltr and arrow_forward_ios (>) in rtl */ | ||
@apply ltr:content-['arrow\_back\_ios'] rtl:content-['arrow\_forward\_ios']; |
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.
@@ -1,7 +1,13 @@ | |||
@layer components { | |||
:root { | |||
--date-input--calendar-icon-filter:; |
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.
: initial
or : unset
? Empty seems weird.
maybe more readable?
ref DEV-1832
ref DEV-1833
ref DEV-1834
ref DEV-1835
ref DEV-1836
ref DEV-1837
ref DEV-1838
ref DEV-1839