We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Visit any contact having a membership dates set in December(or any month with a long name)
The date fields displayed are not wide enough to show the year in the 3 date fields
Possibly because the membership dates specify a hardcode max-width to these columns? See https://github.com/civicrm/org.civicrm.shoreditch/blob/master/scss/civicrm/contact/pages/_memberships.scss#L24
max-width
#memberships { @include civicrm-table-with-header(); table td { &:not(:last-child) { max-width: 85px; overflow: hidden; padding: 15px 10px 15px 20px; text-overflow: ellipsis; white-space: nowrap; } &:nth-child(2), &:nth-child(3), &:nth-child(4) { max-width: 100px; } } }
The text was updated successfully, but these errors were encountered:
Hi @jitendrapurohit have you tried changing your date formats?
Sorry, something went wrong.
Date format value can lower the size of the text displayed in this <td> element. So that can work in most cases eg dd/mm/yyyy.
<td>
dd/mm/yyyy
Anything we can make sure to handle all the date formats? Given the above December 11th 2019 format is the default value set by civicrm :)?
December 11th 2019
No branches or pull requests
Visit any contact having a membership dates set in December(or any month with a long name)
The date fields displayed are not wide enough to show the year in the 3 date fields
Possibly because the membership dates specify a hardcode
max-width
to these columns? See https://github.com/civicrm/org.civicrm.shoreditch/blob/master/scss/civicrm/contact/pages/_memberships.scss#L24The text was updated successfully, but these errors were encountered: