-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
feat(list): add list component #214
Conversation
c18e5a3
to
07ba824
Compare
@@ -0,0 +1 @@ | |||
<ng-content></ng-content> |
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.
optional: could inline this into the template
property for list.
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.
Yeah, agree. Originally I separated it in case it got any larger, but it didn't. Inlining.
$md-dense-two-line-height: 60px; | ||
$md-dense-three-line-height: 76px; | ||
|
||
@mixin md-list-item-base($font-size, $base-height, $avatar-height, |
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.
It might be good for these mixins to describe what's captured in the base
and what is left to the specific uses.
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.
Done
871437c
to
1e9bf43
Compare
@@ -5,6 +5,8 @@ export LOGS_DIR=/tmp/angular-material2-build/logs | |||
export SAUCE_USERNAME=angular-ci | |||
export SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987 | |||
export TRAVIS_JOB_NUMBER=12345 | |||
export BROWSER_PROVIDER_READY_FILE=/tmp/angular-material2-build/readyfile |
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.
Note: Added at Rob's request to help travis pass.
dd69303
to
d62d34d
Compare
$md-list-top-padding: 8px; | ||
$md-list-font-size: 16px; | ||
$md-list-secondary-font: 14px; | ||
//height for single-line lists |
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.
Space after //
Going to add a README in a follow-up PR? |
LGTM |
Yes, README coming in my next PR |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
r: @jelbourn
Ref: #107
This PR is for the static
md-list
only, not selection or action lists.