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

Add the moz-box #38

Open
wants to merge 40 commits into
base: compass
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
4e4b90a
Shorthand Cleanup
mastastealth Jul 20, 2013
1355384
Readme adjusted
mastastealth Jul 20, 2013
219842e
flex-grow for old webkit syntax (Android Browser)
sladex Sep 17, 2013
a77903f
Add fallback for justify-content(space-between)
jeffkamo Sep 18, 2013
7f9543a
Merge pull request #3 from Sladex/patch-1
mastastealth Sep 18, 2013
67da425
Merge pull request #4 from jeffkamo/master
mastastealth Sep 18, 2013
c016b11
Mixin defaults ...
mhulse Oct 20, 2013
8586bcc
Merge pull request #6 from mhulse/patch-defaults
mastastealth Oct 20, 2013
e95e07f
Change flexbox and inline-flex to a class
tjFogarty Jan 3, 2014
084957b
Update tests.scss to reflect core changes
tjFogarty Jan 3, 2014
b3a8cb1
Merge pull request #8 from tjFogarty/master
mastastealth Jan 10, 2014
8f6698e
Placeholder + Mixin Harmony
mastastealth Jan 10, 2014
551dc9f
Fixed the reference url for flex-basis
Paradox41 Jan 27, 2014
1afa4a0
Merge pull request #9 from paradox41/patch-1
mastastealth Feb 5, 2014
05773cb
Check if the argument passed to flex() is a list and return the right…
kpeatt Mar 14, 2014
b0ceb37
Merge pull request #11 from kpeatt/master
mastastealth Mar 14, 2014
7543277
Update @mixin flex() to accomodate box-flex
jeffkamo Mar 15, 2014
f87ef7f
Merge pull request #12 from jeffkamo/patch-1
mastastealth Mar 18, 2014
a6716d4
justify content: space-around IE10 fix
renzos42 Jul 11, 2014
6157bef
Merge pull request #13 from guanche/patch-1
mastastealth Jul 11, 2014
43d947a
Simpler aliasing
mastastealth Oct 27, 2014
9d252ff
Added bower.json file.
mhulse Nov 21, 2014
ef4a136
Merge pull request #18 from mhulse/patch-1
mastastealth Nov 21, 2014
3d02ac2
Fixes #19 - License Info
mastastealth Jan 14, 2015
d8046ef
Added package.json for npm
Jan 26, 2015
2192f9e
Put the proper author name in the package.json
Jan 26, 2015
03b2ac9
Merge pull request #20 from msikma/master
mastastealth Jan 30, 2015
1cdef0f
added quotes to license MIT
mhretab Feb 19, 2015
2fb22d2
Merge pull request #1 from mhretab/patch-1
mhretab Feb 19, 2015
d8fb9f9
Merge pull request #22 from mhretab/patch-1
mastastealth Feb 21, 2015
acb6ec3
Merge remote-tracking branch 'upstream/master'
mhretab Feb 21, 2015
4da9f6f
added bower installation guide to the read me file
mhretab Feb 21, 2015
09aadad
Prefix it!
mastastealth Mar 25, 2015
b6a30f6
Bower Updates
mastastealth Apr 17, 2015
71ebfaf
Added `sass` field to package.json
amiuhle Apr 14, 2016
b7e8e70
Merge pull request #29 from amiuhle/patch-1
mastastealth Apr 28, 2016
4e2df66
Merge pull request #23 from mhretab/master
mastastealth Apr 28, 2016
f6e9b3f
Version Tweaks
mastastealth Apr 28, 2016
a4d4b5d
Revert Rename
mastastealth May 12, 2016
f5775cc
Unmaintained
mastastealth Jan 16, 2018
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,10 @@ pip-log.txt

# Mac crap
.DS_Store


#############
## SASS
#############

.sass-cache*
19 changes: 19 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2015 Brian Franco

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
⚠⚠⚠
**NO LONGER MAINTAINED:** With [every major browser](https://caniuse.com/#search=flexbox) supporting Flexbox now, and tools like [autoprefixer](https://github.com/postcss/autoprefixer) covering this and so much more, I am no longer maintaining this repo (as may already be apparent). Feel free to fork and continue using it if you must, but you should really use Autoprefixer now!
⚠⚠⚠

## Sass flexbox mixin
This is a set of mixins for those who want to mess
around with flexbox using the native support of current
browsers. For full support table check: http://caniuse.com/flexbox

Basically this will use:
- Fallback, old syntax (IE10, Safari, mobile webkit browsers)
- Prefixed standard syntax (Chrome)
- Final standards syntax (FF, Opera 12.1)
- Fallback, old syntax (IE10, mobile webkit browsers - no wrapping)
- Final standards syntax (FF, Safari, Chrome, IE11, Opera)

## Installation
#### Bower

`bower install sass-flex-mixin`

------------------------
This was inspired by:
Expand All @@ -14,4 +23,8 @@ This was inspired by:
With help from:
- http://www.w3.org/TR/css3-flexbox/
- http://the-echoplex.net/flexyboxes/
- http://msdn.microsoft.com/en-us/library/ie/hh772069%28v=vs.85%29.aspx
- http://msdn.microsoft.com/en-us/library/ie/hh772069%28v=vs.85%29.aspx

A version compatible with Compass is provided by @trinonsense, on the compass branch.

Licensed under MIT.
Loading