Skip to content

Commit

Permalink
feat: update blogpost-style toolchain to tacit-css 1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
christiansam committed Jan 16, 2022
1 parent 81e7112 commit f4cc12e
Show file tree
Hide file tree
Showing 26 changed files with 105 additions and 67 deletions.
2 changes: 1 addition & 1 deletion blog-theme/customized_theme.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blog-theme/theme+adsense.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blog-theme/theme.xml

Large diffs are not rendered by default.

17 changes: 15 additions & 2 deletions blogpost-style/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2015-2020 Yegor Bugayenko
* Copyright (c) 2015-2021 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -28,6 +28,7 @@ const child_process = require('child_process')
module.exports = function (grunt) {
'use strict';
grunt.util.linefeed = '\n';
grunt.loadNpmTasks('grunt-css-purge');
grunt.initConfig(
{
pkg: grunt.file.readJSON('package.json'),
Expand Down Expand Up @@ -70,7 +71,19 @@ module.exports = function (grunt) {
allFiles: [
'scss/*.scss'
]
}
},
css_purge: {
dist: {
options: {},
src: 'dist/<%= pkg.name %>-<%= pkg.version %>.min.css',
dest: 'dist/<%= pkg.name %>-<%= pkg.version %>.min.css',
},
uncompressed: {
options: {},
src: 'dist/<%= pkg.name %>-<%= pkg.version %>.css',
dest: 'dist/<%= pkg.name %>-<%= pkg.version %>.css',
},
},
}
);
require('load-grunt-tasks')(grunt, { scope: 'devDependencies' });
Expand Down
2 changes: 1 addition & 1 deletion blogpost-style/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2020 Yegor Bugayenko
Copyright (c) 2015-2021 Yegor Bugayenko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions blogpost-style/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ If you want something more custom, like a different theme, feel free to make it
- [moneeee](https://filfreire.com/Moneeee/) joke app to know how much money you're making during a boring meeting
- [soalition.com](https://www.soalition.com/hello) a social coalition management web app for online writers.
- [golang.cafe](https://golang.cafe) Go (golang) job board with no recruiters and clear salary ranges.
- [tinyfts](https://github.com/dbohdan/tinyfts) Very small standalone full text search HTTP/SCGI server

## Got questions?

Expand Down
2 changes: 1 addition & 1 deletion blogpost-style/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tacit",
"version": "VERSION",
"version": "1.5.5",
"homepage": "https://github.com/yegor256/tacit",
"authors": [
"Yegor Bugayenko <[email protected]>"
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,9 @@ body.article-view .post-body .content-item button, body.article-view .post-body
line-height: 29.7px;
}

body.article-view .post-body .content-item fieldset {
display: flex;
flex-direction: row;
flex-wrap: wrap;
body.article-view .post-body .content-item fieldset label,
body.article-view .post-body .content-item fieldset legend {
display: block;
}

body.article-view .post-body .content-item fieldset legend {
Expand Down
Loading

0 comments on commit f4cc12e

Please sign in to comment.