adding missing alignright styling
This commit is contained in:
parent
6c684367d1
commit
4ce85e40d1
|
@ -5868,13 +5868,13 @@ button.close {
|
|||
font-size: inherit; }
|
||||
|
||||
.alignright {
|
||||
font-size: inherit; }
|
||||
float: right; }
|
||||
|
||||
.alignleft {
|
||||
font-size: inherit; }
|
||||
float: left; }
|
||||
|
||||
.aligncenter {
|
||||
font-size: inherit; }
|
||||
margin: 0px auto; }
|
||||
|
||||
.entry-footer span {
|
||||
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 rimraf = require('gulp-rimraf');
|
||||
|
||||
|
||||
// Run:
|
||||
// gulp sass
|
||||
// Compiles SCSS files in CSS
|
||||
|
@ -27,7 +26,6 @@ gulp.task('sass', function () {
|
|||
.pipe(gulp.dest('./css'));
|
||||
});
|
||||
|
||||
|
||||
// Run:
|
||||
// gulp watch
|
||||
// Starts watcher. Watcher runs gulp sass task on changes
|
||||
|
@ -36,7 +34,6 @@ gulp.task('watch', function () {
|
|||
gulp.watch('./css/theme.css', ['cssnano']);
|
||||
});
|
||||
|
||||
|
||||
// Run:
|
||||
// gulp nanocss
|
||||
// Minifies CSS files
|
||||
|
@ -54,7 +51,6 @@ gulp.task('cleancss', function() {
|
|||
.pipe(rimraf());
|
||||
});
|
||||
|
||||
|
||||
// Run:
|
||||
// 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
|
||||
|
|
|
@ -32,15 +32,15 @@ font-size:inherit;
|
|||
}
|
||||
|
||||
.alignright {
|
||||
font-size: inherit;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
font-size: inherit;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
font-size: inherit;
|
||||
margin:0px auto;
|
||||
}
|
||||
|
||||
//Post design
|
||||
|
|
Reference in New Issue