Skip to content
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

CSS Modules: Document Card #1149

Merged
merged 14 commits into from
Feb 28, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
isFileList to previewIsFilesList
micahgodbolt committed Feb 28, 2017
commit eef9b6ccd9358a714ee145f2b535690ff2ad8ed2
Original file line number Diff line number Diff line change
@@ -223,7 +223,7 @@ $ms-DocumentCardActivity-personaTextGutter: 8px;
background-color: $ms-color-neutralLighterAlt;
overflow: hidden;

&.isFileList {
&.previewIsFileList {
background-color: $ms-color-white;
}
}
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ export class DocumentCardPreview extends React.Component<IDocumentCardPreviewPro
}

return (
<div className={ css('ms-DocumentCardPreview', styles.preview, isFileList && ('is-fileList ' + styles.isFileList)) } style={ style }>
<div className={ css('ms-DocumentCardPreview', styles.preview, isFileList && ('is-fileList ' + styles.previewIsFileList)) } style={ style }>
{ preview }
</div>
);