Introduce src/ and dist/ folders

Separate minifying/renaming of files to prod-only tasks

Add tasks for copying jQuery and fonts

Ref #1138, #1070, #1155
This commit is contained in:
Ben Word
2014-10-27 10:01:17 -05:00
parent e3266279e6
commit 5b22f0bd9d
24 changed files with 164 additions and 157 deletions

View File

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

View File

@@ -1,28 +0,0 @@
// WordPress Generated Classes
// http://codex.wordpress.org/CSS#WordPress_Generated_Classes
.aligncenter {
display: block;
margin: (@line-height-computed / 2) auto;
}
.alignleft,
.alignright {
margin-bottom: (@line-height-computed / 2);
}
figure.alignnone {
margin-left: 0;
margin-right: 0;
max-width: 100%;
}
@media (min-width: @screen-sm-min) {
// Only float images if not on an extra small device like smartphones
.alignleft {
float: left;
margin-right: (@line-height-computed / 2);
}
.alignright {
float: right;
margin-left: (@line-height-computed / 2);
}
}