converted docs.css to a less file so we can use our variables

This commit is contained in:
Kevin Ross 2015-11-20 16:18:58 -06:00
parent b6101554b2
commit 7dbdd7c7bc
7 changed files with 1777 additions and 1629 deletions

View File

@ -225,8 +225,13 @@ By contributing to the documentation, you agree to license your contribution und
```bash
$ git checkout master
```
1. Bundle install (if not already done)
```bash
$ bundle install
```
2. Checkout the `gh-pages` branch in `_gh_pages` directory
1. Checkout the `gh-pages` branch in `_gh_pages` directory
```bash
$ git clone git@github.com:FezVrasta/bootstrap-material-design.git -b gh-pages _gh_pages
@ -236,14 +241,21 @@ By contributing to the documentation, you agree to license your contribution und
The `_gh_pages` directory is already in `.gitignore` so we are just fine.
3. Let's test changes to the documentation:
1. Copy the latest code to the `docs/dist` (if not already done)
```bash
$ grunt docs
```
1. Let's test changes to the documentation:
```bash
$ jekyll serve
```
4. Browse to [http://127.0.0.1:9001/](http://127.0.0.1:9001/)
1. Browse to [http://127.0.0.1:9001/](http://127.0.0.1:9001/)
5. Push the newly generated site on github:
1. Make some changes to files in the `docs` directory and review them
1. Commit and push the newly generated site on github:
```bash
$ cd _gh_pages

View File

@ -258,6 +258,18 @@ module.exports = function (grunt) {
files: {
"dist/css/ripples.css": "less/ripples.less",
}
},
docs: {
options: {
paths: ["less"],
sourceMap: true,
sourceMapRootpath: "/",
sourceMapFilename: "docs/assets/css/src/docs.css.map",
sourceMapURL: "docs.css.map"
},
files: {
"docs/assets/css/src/docs.css": "docs/assets/css/src/docs.less",
}
}
},
@ -657,7 +669,7 @@ module.exports = function (grunt) {
// Docs task.
grunt.registerTask('build-icons-data', function () { generateIconsData.call(this, grunt); });
grunt.registerTask('docs-css', ['autoprefixer:docs', 'autoprefixer:examples', 'cssmin:docs']);
grunt.registerTask('docs-css', ['less:docs','autoprefixer:docs', 'autoprefixer:examples', 'cssmin:docs']);
grunt.registerTask('lint-docs-css', ['csslint:docs', 'csslint:examples']);
grunt.registerTask('docs-js', ['uglify:docsJs', 'uglify:customize']);
grunt.registerTask('lint-docs-js', ['jshint:assets', 'jscs:assets']);

View File

@ -1,5 +1,5 @@
baseurl: "/bootstrap-material-design"
url: "http://fezvrasta.github.io"
#baseurl: "/bootstrap-material-design"
#url: "http://fezvrasta.github.io"
include:
- .nojekyll

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff