1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/scss/_media.scss

90 lines
1.1 KiB
SCSS
Raw Normal View History

2015-04-27 04:50:38 -04:00
@if $enable-flex {
.media {
display: flex;
margin-bottom: $spacer;
}
.media-body {
flex: 1;
}
2015-08-26 06:50:24 -04:00
.media-middle {
align-self: center;
}
.media-bottom {
align-self: flex-end;
}
2015-04-27 04:50:38 -04:00
} @else {
.media {
margin-top: $media-margin-top;
2015-04-27 04:50:38 -04:00
&:first-child {
margin-top: 0;
}
}
.media,
.media-body {
overflow: hidden;
}
.media-body {
width: 10000px;
}
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}
.media-middle {
vertical-align: middle;
}
.media-bottom {
vertical-align: bottom;
}
2014-10-25 21:13:35 -04:00
}
2015-04-27 04:50:38 -04:00
//
// Images/elements as the media anchor
//
.media-object {
display: block;
2015-06-19 02:56:43 -04:00
// Fix collapse in webkit from max-width: 100% and display: table-cell.
&.img-thumbnail {
max-width: none;
}
}
2015-04-27 04:50:38 -04:00
//
// Alignment
//
2015-05-29 19:05:42 -04:00
.media-right {
padding-left: $media-alignment-padding-x;
2014-10-25 21:13:35 -04:00
}
2015-05-29 19:05:42 -04:00
.media-left {
padding-right: $media-alignment-padding-x;
2014-10-25 21:13:35 -04:00
}
2014-10-25 21:13:35 -04:00
2015-04-27 04:50:38 -04:00
//
// Headings
//
.media-heading {
2014-10-25 21:13:35 -04:00
margin-top: 0;
margin-bottom: $media-heading-margin-bottom;
}
2015-04-27 04:50:38 -04:00
//
// Media list variation
2014-10-25 21:13:35 -04:00
//
2015-04-27 04:50:38 -04:00
.media-list {
padding-left: 0;
list-style: none;
}