-
Notifications
You must be signed in to change notification settings - Fork 90
fix pfTableView: border style not in line with PatternFly #664
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 pfTableView: border style not in line with PatternFly #664
Conversation
src/pagination/pagination.less
Outdated
align-items: center; | ||
.per-page-label { | ||
padding-left: 10px; | ||
} |
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.
Shouldn't this be in Patternfly styling? Not sure why the original was here. @dtaylor113 ?
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.
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.
Can this change be done in a separate PR so we can merge & close this one?
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 like the real issue here is that the pagination component should have the 'table-view-pf-pagination' selector as well as the 'content-view-pf-pagination'. If we add that for the pagination component when used for a table this change would not be necessary.
Commit message needs to be formatted for semantic release. See https://github.com/patternfly/angular-patternfly#git-commit-guidelines |
Formatted the commit message according to semantic releases |
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.
Hi, just verified all we need is 'table-view-pf-pagination' added to pagination.html, and the 'border-collapse' css attribute added to table.less.
Please see my commit to see the changes required.
Your requested changes have been done. |
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.
LGTM, thanks @akieling
@jeff-phillips-18, need your approval -thanks |
fix #663
Make the pfTableView borders thinner according to PatternFly's Table View.
@cshinn