Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta 2 #1806

Merged
merged 28 commits into from
Jan 19, 2017
Merged

Beta 2 #1806

Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift click to select a range
6b37080
Allow autoprefixer's browser versions to be configured
oxyc Jan 10, 2017
7d87c3d
rename clean task
psorensen Jan 10, 2017
faf77d7
Update README to include new task name
psorensen Jan 10, 2017
f4cf20b
Respect autoprefixer browsers when stripping vendor prefixes with css…
oxyc Jan 10, 2017
eff6644
Update travis
psorensen Jan 10, 2017
417ce46
Fix for publicPath
retlehs Jan 11, 2017
21c6d66
Merge pull request #1800 from psorensen/issue/1797
retlehs Jan 11, 2017
d954213
Merge pull request #1798 from oxyc/patch-1
retlehs Jan 11, 2017
1279552
Use NoEmitOnErrorsPlugin, thanks @eshimischi
retlehs Jan 11, 2017
7a3e792
Update CHANGELOG, bump version [ci skip]
retlehs Jan 11, 2017
8bd55bb
Revert to yarn.lock from master, previous Webpack RC
retlehs Jan 11, 2017
9fca64a
Remove outdated browser warning
retlehs Jan 13, 2017
646c636
Remove grid defaults
retlehs Jan 13, 2017
596f66f
Merge pull request #1808 from roots/remove-grid-defaults
retlehs Jan 13, 2017
865ade5
Remove Font Awesome
retlehs Jan 13, 2017
66b70b6
Update CHANGELOG [ci skip]
retlehs Jan 13, 2017
ea7323a
Merge pull request #1809 from roots/remove-font-awesome
retlehs Jan 13, 2017
b91ab89
Add option to remove Bootstrap when creating project (#1810)
retlehs Jan 15, 2017
70328d9
Missed in #1809
retlehs Jan 15, 2017
c2c43df
Add option to change theme file headers
retlehs Jan 15, 2017
5b5d362
Update README, CHANGELOG [ci skip]
retlehs Jan 15, 2017
1826102
Merge pull request #1811 from roots/option-to-change-theme-file-headers
retlehs Jan 15, 2017
1f8f24f
Add option to add Font Awesome
retlehs Jan 17, 2017
89b4d1c
Merge pull request #1812 from roots/option-to-add-font-awesome
retlehs Jan 17, 2017
3909bf7
Add option to select CSS framework, add Foundation as an option (#1813)
retlehs Jan 18, 2017
4adbc34
Fix browsersync (#1815)
QWp6t Jan 19, 2017
360dfc9
Fix Bootstrap JS removal/replacement
retlehs Jan 19, 2017
c63d155
Update CHANGELOG [ci skip]
retlehs Jan 19, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 1,5 @@
### 9.0.0-beta.2: January 11th, 2016
* Remove grid defaults ([#1808](https://github.com/roots/sage/pull/1808))
* Fix for `publicPath` ([#1806](https://github.com/roots/sage/pull/1806))
* Update clean task name ([#1800](https://github.com/roots/sage/pull/1800))
* Allow browser versions to be configured in `config.json` ([#1798](https://github.com/roots/sage/pull/1798))
Expand Down
4 changes: 0 additions & 4 deletions assets/styles/common/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,9 1,5 @@
// Colors
$brand-primary: #27ae60;

// Grid settings
$main-sm-columns: 12;
$sidebar-sm-columns: 4;

// Vendor variables
$fa-font-path: '~font-awesome/fonts';
16 changes: 0 additions & 16 deletions assets/styles/components/_grid.scss

This file was deleted.

1 change: 0 additions & 1 deletion assets/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 8,6 @@
@import "components/buttons";
@import "components/comments";
@import "components/forms";
@import "components/grid";
@import "components/wp-classes";
@import "layouts/header";
@import "layouts/sidebar";
Expand Down
2 changes: 1 addition & 1 deletion templates/layouts/base.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@
@php(do_action('get_header'))
@include('partials.header')
<div class="wrap container" role="document">
<div class="content row">
<div class="content">
<main class="main">
@yield('content')
</main>
Expand Down