Gallery styling now unnecessary, move caption styling to _wp-classes

This commit is contained in:
Ben Word
2015-02-19 13:49:30 -06:00
parent fc5a1547ba
commit fc05091971
3 changed files with 13 additions and 19 deletions

View File

@@ -1,13 +0,0 @@
// Captions
.wp-caption {
&:extend(.thumbnail all);
}
.wp-caption-text {
&:extend(.thumbnail .caption all);
}
// Gallery shortcode
.gallery-row {
padding: (@line-height-computed / 2) 0;
}

View File

@@ -1,6 +1,11 @@
// WordPress Generated Classes
// http://codex.wordpress.org/CSS#WordPress_Generated_Classes
.alignnone {
margin-left: 0;
margin-right: 0;
max-width: 100%;
}
.aligncenter {
display: block;
margin: (@line-height-computed / 2) auto;
@@ -10,7 +15,7 @@
margin-bottom: (@line-height-computed / 2);
}
@media (min-width: @screen-sm-min) {
// Only float images if not on an extra small device like smartphones
// Only float if not on an extra small device
.alignleft {
float: left;
margin-right: (@line-height-computed / 2);
@@ -21,12 +26,15 @@
}
}
figure.alignnone {
margin-left: 0;
margin-right: 0;
max-width: 100%;
// Captions
.wp-caption {
&:extend(.thumbnail all);
}
.wp-caption-text {
&:extend(.thumbnail .caption all);
}
// Text meant only for screen readers
.screen-reader-text {
&:extend(.sr-only all);
&:extend(.sr-only-focusable all);

View File

@@ -7,7 +7,6 @@
@import "components/_buttons";
@import "components/_comments";
@import "components/_forms";
@import "components/_media";
@import "components/_wp-classes";
@import "layouts/_general";
@import "layouts/_header";