adding missing alignright styling
This commit is contained in:
parent
6c684367d1
commit
4ce85e40d1
|
@ -5868,13 +5868,13 @@ button.close {
|
||||||
font-size: inherit; }
|
font-size: inherit; }
|
||||||
|
|
||||||
.alignright {
|
.alignright {
|
||||||
font-size: inherit; }
|
float: right; }
|
||||||
|
|
||||||
.alignleft {
|
.alignleft {
|
||||||
font-size: inherit; }
|
float: left; }
|
||||||
|
|
||||||
.aligncenter {
|
.aligncenter {
|
||||||
font-size: inherit; }
|
margin: 0px auto; }
|
||||||
|
|
||||||
.entry-footer span {
|
.entry-footer span {
|
||||||
padding-right: 10px; }
|
padding-right: 10px; }
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,6 @@ var merge2 = require('merge2');
|
||||||
var ignore = require('gulp-ignore');
|
var ignore = require('gulp-ignore');
|
||||||
var rimraf = require('gulp-rimraf');
|
var rimraf = require('gulp-rimraf');
|
||||||
|
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
// gulp sass
|
// gulp sass
|
||||||
// Compiles SCSS files in CSS
|
// Compiles SCSS files in CSS
|
||||||
|
@ -27,7 +26,6 @@ gulp.task('sass', function () {
|
||||||
.pipe(gulp.dest('./css'));
|
.pipe(gulp.dest('./css'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
// gulp watch
|
// gulp watch
|
||||||
// Starts watcher. Watcher runs gulp sass task on changes
|
// Starts watcher. Watcher runs gulp sass task on changes
|
||||||
|
@ -36,7 +34,6 @@ gulp.task('watch', function () {
|
||||||
gulp.watch('./css/theme.css', ['cssnano']);
|
gulp.watch('./css/theme.css', ['cssnano']);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
// gulp nanocss
|
// gulp nanocss
|
||||||
// Minifies CSS files
|
// Minifies CSS files
|
||||||
|
@ -54,7 +51,6 @@ gulp.task('cleancss', function() {
|
||||||
.pipe(rimraf());
|
.pipe(rimraf());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
// gulp copy-assets.
|
// gulp copy-assets.
|
||||||
// Copy all needed dependency assets files from bower_component assets to themes /js, /scss and /fonts folder. Run this task after bower install or bower update
|
// Copy all needed dependency assets files from bower_component assets to themes /js, /scss and /fonts folder. Run this task after bower install or bower update
|
||||||
|
|
|
@ -32,15 +32,15 @@ font-size:inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alignright {
|
.alignright {
|
||||||
font-size: inherit;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alignleft {
|
.alignleft {
|
||||||
font-size: inherit;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.aligncenter {
|
.aligncenter {
|
||||||
font-size: inherit;
|
margin:0px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Post design
|
//Post design
|
||||||
|
|
Reference in New Issue