Added modifier for img --fits-space, will need to use js to detect so styles can be adapted

This commit is contained in:
Paul Clarke 2016-04-21 10:15:23 +12:00 committed by Ingo Schommer
parent 9b5430a80c
commit 35a2e13085
2 changed files with 9 additions and 4 deletions

View File

@ -14,7 +14,7 @@ class CampaignPreview extends SilverStripeComponent {
<h3 className="preview__overlay-text">There is no preview available for this item.</h3>
</div>
<div className="preview__file-container panel-scrollable">
<img className="preview__file" src="http://placehold.it/250x150" />
<img className="preview__file--fits-space" src="http://placehold.it/250x150" />
</div>
<div className="toolbar--south">
<div className="btn-toolbar">

View File

@ -6,11 +6,16 @@
.preview__file-container {
height: calc(100% - #{$toolbar-total-height});
text-align: center;
}
.preview__file {
position: relative;
}
.preview__file { // TODO files smaller than the given space need to be detected via js to give class --fits-space
}
.preview__file--fits-space {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 50%;
transform: translate(-50%, -50%);
}
.preview__overlay {
text-align: center;