]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/log
thirdparty/foundation/foundation-sites.git
8 years agoMerge pull request #9442 from ncoden/fix/menu-expanded
Kevin Ball [Tue, 6 Dec 2016 23:50:21 +0000 (15:50 -0800)] 
Merge pull request #9442 from ncoden/fix/menu-expanded

Fix #8325 - expanded menu

8 years agoMerge pull request #9463 from zurb/orbit-resize-ie-fix
Kevin Ball [Tue, 6 Dec 2016 23:44:22 +0000 (15:44 -0800)] 
Merge pull request #9463 from zurb/orbit-resize-ie-fix

Fix bug in orbit and other sizing on old IE

8 years agoMerge branch 'develop' into ncoden-fix/each-breakpoint-remove-small
Kevin Ball [Tue, 6 Dec 2016 23:03:52 +0000 (15:03 -0800)] 
Merge branch 'develop' into ncoden-fix/each-breakpoint-remove-small

8 years agoMerge branch 'fix/each-breakpoint-remove-small' of git://github.com/ncoden/foundation...
Kevin Ball [Tue, 6 Dec 2016 23:00:50 +0000 (15:00 -0800)] 
Merge branch 'fix/each-breakpoint-remove-small' of git://github.com/ncoden/foundation-sites into ncoden-fix/each-breakpoint-remove-small

8 years agoMerge pull request #9458 from ncoden/fix/9412-normalize-scss-import-2
Kevin Ball [Tue, 6 Dec 2016 22:58:22 +0000 (14:58 -0800)] 
Merge pull request #9458 from ncoden/fix/9412-normalize-scss-import-2

Fix #9412 - import Sass dependencies in vendor folder

8 years agoFix bug in orbit and other sizing on old IE 9463/head
Kevin Ball [Tue, 6 Dec 2016 22:51:03 +0000 (14:51 -0800)] 
Fix bug in orbit and other sizing on old IE

8 years agoMove Sass dependencies from `_vendor/scss` to `_vendor` 9458/head
Nicolas Coden [Tue, 6 Dec 2016 22:28:41 +0000 (23:28 +0100)] 
Move Sass dependencies from `_vendor/scss` to `_vendor`

8 years agoremoving develop notes
Corey Snyder [Tue, 6 Dec 2016 22:07:10 +0000 (17:07 -0500)] 
removing develop notes

forgot to remove some develop helpers that are not needed

8 years agoAdd Mutation Observers to Sticky
Corey Snyder [Tue, 6 Dec 2016 21:57:13 +0000 (16:57 -0500)] 
Add Mutation Observers to Sticky

Sticky is receiving a mutation observer. Sticky can now listen to
elements within its DOM scope for mutation changes. This will allow the
sticky element, and it’s anchor container (if applicable) to receive a
notification if any element is changed within it’s respective space
calling setSizes() and calc() in the same manor as a resize would.

8 years agoMerge remote-tracking branch 'zurb/develop' into develop
Corey Snyder [Tue, 6 Dec 2016 21:51:12 +0000 (16:51 -0500)] 
Merge remote-tracking branch 'zurb/develop' into develop

8 years agoMerge pull request #9461 from ncoden/chore/disable-travis-notifications
Kevin Ball [Tue, 6 Dec 2016 17:03:19 +0000 (09:03 -0800)] 
Merge pull request #9461 from ncoden/chore/disable-travis-notifications

Disable Travis CI email notifications

8 years agoFix /_vendor ignore in .gitignore
Nicolas Coden [Tue, 6 Dec 2016 15:34:13 +0000 (16:34 +0100)] 
Fix /_vendor ignore in .gitignore

Mistaken `.gitignore` with `.npmignore`. The `/vendor` directory should
be ignored by git, not npm.

8 years agoDisable Travis email notifications 9461/head
Nicolas Coden [Tue, 6 Dec 2016 08:59:00 +0000 (09:59 +0100)] 
Disable Travis email notifications

8 years agoFix expanded menu #8325 9442/head
Nicolas Coden [Sun, 4 Dec 2016 10:29:16 +0000 (11:29 +0100)] 
Fix expanded menu #8325

Fix https://github.com/zurb/foundation-sites/issues/8325.
See also: https://github.com/zurb/foundation-sites/pull/8779. Thanks to
@natewiebe13.

`.expanded` is a modifier for a horizontal menu, and should not be
applied on a vertical one.

Changes:
- Move the `.expanded` modifier after `.horizontal` and before
`.vertical`.
- Add the `.expanded` modifiers for each breakpoint with the
corresponding prefixes.

Other changes:
- Use `-zf-each-breakpoint` to generate responsive modifiers.

Note: The `.expanded` modifier should be applied only when the menu is
horizontal. For example, on a menu which is made horizontal on the
medium breakpoint, `.medium-expanded` should be used :
`.menu.vertical.medium-horizontal.medium-expanded`.

8 years agoAdd yarn.lock 9460/head
Nicolas Coden [Tue, 6 Dec 2016 06:47:51 +0000 (07:47 +0100)] 
Add yarn.lock

Yarn (https://yarnpkg.com) is like npm, but you don’t have do delete
`node_modules` each time you have a bug. It is also faster.

`yarn.lock` store exactly which versions of each dependency were
installed.

From https://yarnpkg.com/en/docs/yarn-lock:

All yarn.lock files should be checked into source control (e.g. git or
mercurial). This allows Yarn to install the same exact dependency tree
across all machines, whether it be your coworker’s laptop or a CI
server.

Framework and library authors should also check yarn.lock into source
control. Don’t worry about publishing the yarn.lock file as it won’t
have any effect on users of the library.

8 years agoFix -zf-each-breakpoint without small bp 9441/head
Nicolas Coden [Tue, 6 Dec 2016 05:56:50 +0000 (06:56 +0100)] 
Fix -zf-each-breakpoint without small bp

`$breakpoint-classes` is a list, not a map.

Use `sl-remove()` from SassyList
(https://github.com/at-import/SassyLists) instead of `map-remove()` to
remove the small breakpoint from `$breakpoint-classes`.

Other changes:
- Rename `$map` to `$list`.
- Rename `$size` to `$name`. `$breakpoint-classes` contains breakpoint
names, not sizes. Keep `$-zf-size` for compatibility.

8 years agoupdate docs for badge, button, and label class lists
Andy Cochran [Tue, 6 Dec 2016 05:32:51 +0000 (00:32 -0500)] 
update docs for badge, button, and label class lists

8 years agoFix #9412 - import Sass dependencies in vendor folder
Nicolas Coden [Tue, 6 Dec 2016 05:21:57 +0000 (06:21 +0100)] 
Fix #9412 - import Sass dependencies in vendor folder

Previous PR: https://github.com/zurb/foundation-sites/pull/9449

Changes:
- Revert https://github.com/zurb/foundation-sites/pull/9430 - Make
`normalize-scss` a dev dependency.
- Copy Sass dependencies to `/_vendor/scss` and import them in Sass
from there.

Why not importing the Sass dependencies as real dependencies and from
`node_modules`: we cannot assume the path to our real dependencies. Old
npm versions store them in our `node_modules` folder, while newer
versions store them in the `node_modules` folder of the root project.

8 years agoupdate docs for Global Styles > Colors
Andy Cochran [Tue, 6 Dec 2016 05:05:50 +0000 (00:05 -0500)] 
update docs for Global Styles > Colors

8 years agoupdate add-foundation-colors() description
Andy Cochran [Tue, 6 Dec 2016 05:04:24 +0000 (00:04 -0500)] 
update add-foundation-colors() description

8 years agouse lists to output coloring classes
Andy Cochran [Tue, 6 Dec 2016 05:01:20 +0000 (00:01 -0500)] 
use lists to output coloring classes

8 years agouse get-color() in settings instead of map-get()
Andy Cochran [Mon, 5 Dec 2016 21:38:58 +0000 (16:38 -0500)] 
use get-color() in settings instead of map-get()

8 years agoMerge pull request #9439 from ncoden/refactor/bp-values-map
Kevin Ball [Mon, 5 Dec 2016 18:53:16 +0000 (10:53 -0800)] 
Merge pull request #9439 from ncoden/refactor/bp-values-map

Factorize breakpoints map handling

8 years agoMerge pull request #9446 from ncoden/fix/8880-reveal-unused-parameter
Kevin Ball [Mon, 5 Dec 2016 18:46:04 +0000 (10:46 -0800)] 
Merge pull request #9446 from ncoden/fix/8880-reveal-unused-parameter

Fix #8880 - remove unused parameter in Reveal

8 years agoMerge pull request #9447 from ncoden/chore/update-what-input
Kevin Ball [Mon, 5 Dec 2016 18:45:14 +0000 (10:45 -0800)] 
Merge pull request #9447 from ncoden/chore/update-what-input

Update what-input to latest version

8 years agoabstract ratio-to-percentage math function, clarify responsive-embed comments, allow...
Andy Cochran [Mon, 5 Dec 2016 18:43:26 +0000 (13:43 -0500)] 
abstract ratio-to-percentage math function, clarify responsive-embed comments, allow ratio as string in mixin

8 years agoMerge pull request #9445 from ncoden/docs/8631-fix-equalizer-events-uppercase
Kevin Ball [Mon, 5 Dec 2016 18:40:07 +0000 (10:40 -0800)] 
Merge pull request #9445 from ncoden/docs/8631-fix-equalizer-events-uppercase

Fix #8631 - Equalizer events in UpperCase

8 years agoMerge pull request #9454 from abdullahsalem/fixes-hamburger-icon
Kevin Ball [Mon, 5 Dec 2016 18:37:13 +0000 (10:37 -0800)] 
Merge pull request #9454 from abdullahsalem/fixes-hamburger-icon

Fix hamburger icon

8 years agoMerge pull request #9437 from zurb/remove-deprecation-items-of-6.3
Kevin Ball [Mon, 5 Dec 2016 17:53:44 +0000 (09:53 -0800)] 
Merge pull request #9437 from zurb/remove-deprecation-items-of-6.3

Remove scss items marked for removal in 6.3

8 years agoReposition some code lines 9454/head
Abdullah Salem [Mon, 5 Dec 2016 16:04:25 +0000 (19:04 +0300)] 
Reposition some code lines

8 years agoFixed hamburger icon
Abdullah Salem [Mon, 5 Dec 2016 13:49:41 +0000 (16:49 +0300)] 
Fixed hamburger icon

8 years agoMerge pull request #9453 from abdullahsalem/fixes-slider-page-layout
Abdullah Salem [Mon, 5 Dec 2016 11:42:08 +0000 (14:42 +0300)] 
Merge pull request #9453 from abdullahsalem/fixes-slider-page-layout

Fixed Slider page's layout

8 years agoFixed Slider page's layout 9453/head
Abdullah Salem [Mon, 5 Dec 2016 11:30:51 +0000 (14:30 +0300)] 
Fixed Slider page's layout

8 years agoImprove -zf-breakpoint-value description 9439/head
Nicolas Coden [Mon, 5 Dec 2016 09:41:14 +0000 (10:41 +0100)] 
Improve -zf-breakpoint-value description

8 years agouse map-remove to skip default embed ratio
Andy Cochran [Mon, 5 Dec 2016 04:18:40 +0000 (23:18 -0500)] 
use map-remove to skip default embed ratio

8 years agodon't use a magic number in responsive embed ratio mixin
Andy Cochran [Mon, 5 Dec 2016 04:08:25 +0000 (23:08 -0500)] 
don't use a magic number in responsive embed ratio mixin

8 years agouse map for responsive embed ratios
Andy Cochran [Mon, 5 Dec 2016 01:51:08 +0000 (20:51 -0500)] 
use map for responsive embed ratios

8 years agoReturn Reveal overlay directly 9446/head
Nicolas Coden [Mon, 5 Dec 2016 01:06:18 +0000 (02:06 +0100)] 
Return Reveal overlay directly

Return the Reveal overlay directly, without defining a variable in
`_makeOverlay()`.

Thanks to @ocularrhythm for the suggestion
(https://github.com/zurb/foundation-sites/issues/8880).

8 years agoUpdate what-input to latest version 9447/head
Nicolas Coden [Mon, 5 Dec 2016 00:26:21 +0000 (01:26 +0100)] 
Update what-input to latest version

Update what-input (https://www.npmjs.com/package/what-input) to the
latest and stable version `v4.0.3`.

Changes:
- No breaking changes between `v2.0.0` and `v4.0.3` for the codebase.
- Update the dist file path.

Outdated dependencies: https://david-dm.org/zurb/foundation-sites

8 years agoMerge pull request #9444 from Quy/develop
Nicolas Coden [Sun, 4 Dec 2016 19:09:29 +0000 (20:09 +0100)] 
Merge pull request #9444 from Quy/develop

Typo fix in doc - Change it's to its.

8 years agoFix #8880 - remove unused parameter in Reveal
Nicolas Coden [Sun, 4 Dec 2016 18:45:43 +0000 (19:45 +0100)] 
Fix #8880 - remove unused parameter in Reveal

8 years agoFix #8631 - Equalizer events in UpperCase 9445/head
Nicolas Coden [Sun, 4 Dec 2016 18:30:12 +0000 (19:30 +0100)] 
Fix #8631 - Equalizer events in UpperCase

Update the doc about Equalizer events.

8 years agoChange it's to its. 9444/head
Quy [Sun, 4 Dec 2016 17:41:57 +0000 (09:41 -0800)] 
Change it's to its.

8 years agoAdd a visual test for the dropdown menu cross leave
Nicolas Coden [Sun, 4 Dec 2016 15:31:30 +0000 (16:31 +0100)] 
Add a visual test for the dropdown menu cross leave

8 years agoFix #9427 - Dropdown menu mouseout ignored
Nicolas Coden [Sun, 4 Dec 2016 15:10:18 +0000 (16:10 +0100)] 
Fix #9427 - Dropdown menu mouseout ignored

Fix https://github.com/zurb/foundation-sites/issues/9427

The hide delay of the visible dropdown is replaced by the delays of the
lastly triggered dropdown, so the hide function is never called on the
currently visible dropdown.

Remember and cancel the delay inside each element. So a visible
dropdown remember its hide delay even if several dropdown must be
hidden.

8 years agoMerge pull request #9436 from lesliedoherty/master
Nicolas Coden [Sun, 4 Dec 2016 07:29:48 +0000 (08:29 +0100)] 
Merge pull request #9436 from lesliedoherty/master

Flexbox Helper Document Fix

8 years agoMerge pull request #9433 from andycochran/button-docs
Andy Cochran [Sat, 3 Dec 2016 21:55:33 +0000 (16:55 -0500)] 
Merge pull request #9433 from andycochran/button-docs

update button,badge,label docs for new a11y palette

8 years agoFix typo in grid-column-margin comment
Nicolas Coden [Sat, 3 Dec 2016 13:52:56 +0000 (14:52 +0100)] 
Fix typo in grid-column-margin comment

8 years agoFactorize function -zf-breakpoint-value into -zf-get-bp-val
Nicolas Coden [Sat, 3 Dec 2016 12:01:34 +0000 (13:01 +0100)] 
Factorize function -zf-breakpoint-value into -zf-get-bp-val

- Allow the `-zf-get-bp-val` function to take a single value as
responsive config `$map` and return it regardless of `$value`.
- Remove useless function `-zf-breakpoint-value`

8 years agoFactorize breakpoint map handling in grid gutters and margins
Nicolas Coden [Sat, 3 Dec 2016 11:54:57 +0000 (12:54 +0100)] 
Factorize breakpoint map handling in grid gutters and margins

Factorize breakpoint map handling in `grid-column-gutter` and
`grid-column-margin` mixins.

Changes:
- Add the `-zf-breakpoint-value` mixin which generate its content with
the value `$-zf-bp-value` depending on its parameter, like
`grid-column-gutter` and `grid-column-margin` did (see the `@mixin
-zf-breakpoint-value` doc)
- Use the `-zf-breakpoint-value` mixin in `grid-column-gutter` and
`grid-column-margin` and remove duplicated code.
- Rename the `grid-column-gutter` function to `-zf-breakpoint-value`
and move it to `/scss/util/_breakpoint.scss`. This function had a
generic behaviour.

8 years agoFix a couple of dropdown-menu visual tests in IE9
Kevin Ball [Sat, 3 Dec 2016 01:38:53 +0000 (17:38 -0800)] 
Fix a couple of dropdown-menu visual tests in IE9

8 years agoFix basic-dropdown-rtl test for ie9
Kevin Ball [Sat, 3 Dec 2016 01:20:16 +0000 (17:20 -0800)] 
Fix basic-dropdown-rtl test for ie9

8 years agoRemove scss items marked for removal in 6.3 9437/head
Kevin Ball [Fri, 2 Dec 2016 23:15:39 +0000 (15:15 -0800)] 
Remove scss items marked for removal in 6.3

8 years agoMerge pull request #1 from lesliedoherty/lesliedoherty-patch-1 9436/head
Leslie Doherty [Fri, 2 Dec 2016 19:51:41 +0000 (14:51 -0500)] 
Merge pull request #1 from lesliedoherty/lesliedoherty-patch-1

Update to helper mixin for flexbox

8 years agoUpdate to helper mixin for flexbox
Leslie Doherty [Fri, 2 Dec 2016 19:51:07 +0000 (11:51 -0800)] 
Update to helper mixin for flexbox

The docs read to pass in any horizontal value with an example "bottom", but the function is requiring a vertical alignment (so 'bottom' would work but 'left, center, right' would not.)

Referencing https://github.com/zurb/foundation-sites/blob/develop/scss/util/_flex.scss#L55

8 years agonote disabled attribute button style 9433/head
Andy Cochran [Fri, 2 Dec 2016 16:53:25 +0000 (11:53 -0500)] 
note disabled attribute button style

8 years agoupdate button,badge,label docs for new a11y palette
Andy Cochran [Fri, 2 Dec 2016 02:44:22 +0000 (21:44 -0500)] 
update button,badge,label docs for new a11y palette

8 years agoTweak package.json description v6.3.0-rc1
Kevin Ball [Thu, 1 Dec 2016 23:05:43 +0000 (15:05 -0800)] 
Tweak package.json description

8 years agoPackage up 6.3-rc1
Kevin Ball [Thu, 1 Dec 2016 22:13:00 +0000 (14:13 -0800)] 
Package up 6.3-rc1

8 years agoMerge branch 'master' into develop
Kevin Ball [Thu, 1 Dec 2016 22:08:18 +0000 (14:08 -0800)] 
Merge branch 'master' into develop

8 years agoMerge pull request #9402 from webdevan/patch-3
Kevin Ball [Thu, 1 Dec 2016 22:06:17 +0000 (14:06 -0800)] 
Merge pull request #9402 from webdevan/patch-3

Only remove #modalId from the url on close

8 years agoMerge pull request #9431 from zurb/update-accordion-item-attributes
Kevin Ball [Thu, 1 Dec 2016 22:05:39 +0000 (14:05 -0800)] 
Merge pull request #9431 from zurb/update-accordion-item-attributes

Update visual tests for accordion to take account of new data-attribute req

8 years agoUpdate visual tests for accordion to take account of new data-attribute requirement 9431/head
Kevin Ball [Thu, 1 Dec 2016 22:04:59 +0000 (14:04 -0800)] 
Update visual tests for accordion to take account of new data-attribute requirement

8 years agoMerge branch 'patch-2' of git://github.com/pine3ree/foundation into pine3ree-patch-2
Kevin Ball [Thu, 1 Dec 2016 21:59:17 +0000 (13:59 -0800)] 
Merge branch 'patch-2' of git://github.com/pine3ree/foundation into pine3ree-patch-2

8 years agoMerge pull request #9430 from zurb/make-normalize-dependency-explicit
Kevin Ball [Thu, 1 Dec 2016 21:48:22 +0000 (13:48 -0800)] 
Merge pull request #9430 from zurb/make-normalize-dependency-explicit

add normalize dependency

8 years agoSince we expect normalize in order to make Foundation function now, it needs to be... 9430/head
Kevin Ball [Thu, 1 Dec 2016 21:27:43 +0000 (13:27 -0800)] 
Since we expect normalize in order to make Foundation function now, it needs to be a true dependency

8 years agoMerge branch 'Owlbertz-keyboard-enhancements-v6.3' into develop
Kevin Ball [Thu, 1 Dec 2016 20:35:57 +0000 (12:35 -0800)] 
Merge branch 'Owlbertz-keyboard-enhancements-v6.3' into develop

8 years agoMerge pull request #9429 from zurb/off-canvas-overlay-tweaks
Brett Mason [Thu, 1 Dec 2016 20:35:17 +0000 (20:35 +0000)] 
Merge pull request #9429 from zurb/off-canvas-overlay-tweaks

Pass on making off canvas overlay behave properly in both absolute an…

8 years agoTix fypo 9429/head
Kevin Ball [Thu, 1 Dec 2016 20:33:39 +0000 (12:33 -0800)] 
Tix fypo

8 years agoTix fypo
Kevin Ball [Thu, 1 Dec 2016 20:33:16 +0000 (12:33 -0800)] 
Tix fypo

8 years agoMerge branch 'off-canvas-overlay-tweaks' into Owlbertz-keyboard-enhancements-v6.3
Kevin Ball [Thu, 1 Dec 2016 20:31:15 +0000 (12:31 -0800)] 
Merge branch 'off-canvas-overlay-tweaks' into Owlbertz-keyboard-enhancements-v6.3

8 years agoMerge branch 'keyboard-enhancements-v6.3' of git://github.com/Owlbertz/foundation...
Kevin Ball [Thu, 1 Dec 2016 20:27:35 +0000 (12:27 -0800)] 
Merge branch 'keyboard-enhancements-v6.3' of git://github.com/Owlbertz/foundation into Owlbertz-keyboard-enhancements-v6.3

8 years agoPass on making off canvas overlay behave properly in both absolute and fixed examples
Kevin Ball [Thu, 1 Dec 2016 19:59:45 +0000 (11:59 -0800)] 
Pass on making off canvas overlay behave properly in both absolute and fixed examples

8 years agoMerge pull request #9428 from brettsmason/offcanvas-tweaks
Kevin Ball [Thu, 1 Dec 2016 19:44:41 +0000 (11:44 -0800)] 
Merge pull request #9428 from brettsmason/offcanvas-tweaks

Various off canvas improvements/fixes

8 years agoSet `fixed` as the default off canvas behaviour. Remove the $offcanvas-position`... 9428/head
Brett Mason [Thu, 1 Dec 2016 19:23:05 +0000 (19:23 +0000)] 
Set `fixed` as the default off canvas behaviour. Remove the $offcanvas-position` variable as its no longer needed. Generate a `off-canvas-absolute` class to be used to set a menu as absolute positioned. Add an absolute visual test.

8 years agoMerge pull request #9396 from karland/patch-8
Kevin Ball [Thu, 1 Dec 2016 17:30:29 +0000 (09:30 -0800)] 
Merge pull request #9396 from karland/patch-8

Should't the foundation.css build process depend on settings?

8 years agoMerge pull request #9392 from zurb/fix-drilldown-menu-hide-bug
Kevin Ball [Thu, 1 Dec 2016 17:29:31 +0000 (09:29 -0800)] 
Merge pull request #9392 from zurb/fix-drilldown-menu-hide-bug

Add mutation observer to responsive/drilldown

8 years agoMerge branch 'develop' into vertical-rhythm
Kevin Ball [Thu, 1 Dec 2016 17:27:52 +0000 (09:27 -0800)] 
Merge branch 'develop' into vertical-rhythm

8 years agoMerge branch 'develop' of https://github.com/zurb/foundation-sites into develop
Kevin Ball [Thu, 1 Dec 2016 17:23:21 +0000 (09:23 -0800)] 
Merge branch 'develop' of https://github.com/zurb/foundation-sites into develop

8 years agoUpdate non-deep-link case to behave same as old behavior
Kevin Ball [Thu, 1 Dec 2016 17:22:54 +0000 (09:22 -0800)] 
Update non-deep-link case to behave same as old behavior

8 years agoMerge pull request #9415 from IllusionPerdu/patch-1
Kevin Ball [Thu, 1 Dec 2016 17:15:44 +0000 (09:15 -0800)] 
Merge pull request #9415 from IllusionPerdu/patch-1

Use $callout-font-color-alt in _callout.scss

8 years agoMerge pull request #9426 from zurb/fix-offcanvas-tests
Kevin Ball [Thu, 1 Dec 2016 17:14:55 +0000 (09:14 -0800)] 
Merge pull request #9426 from zurb/fix-offcanvas-tests

Get offcanvas tests workign with new offcanvas implementation

8 years agoAdd warning if using depreciated `$header-sizes` map. Correctly generate settings... 9419/head
Brett Mason [Thu, 1 Dec 2016 12:38:39 +0000 (12:38 +0000)] 
Add warning if using depreciated `$header-sizes` map. Correctly generate settings file variables based on `$header-styles` rather than `$header-sizes`.

8 years agoMerge branch 'develop' of git://github.com/xhezairi/foundation-sites into xhezairi...
Kevin Ball [Wed, 30 Nov 2016 23:10:18 +0000 (15:10 -0800)] 
Merge branch 'develop' of git://github.com/xhezairi/foundation-sites into xhezairi-develop

8 years agoGet offcanvas tests workign with new offcanvas implementation 9426/head
Kevin Ball [Wed, 30 Nov 2016 22:48:23 +0000 (14:48 -0800)] 
Get offcanvas tests workign with new offcanvas implementation

8 years agore-add aria attributes for drilldown specifically
Kevin Ball [Wed, 30 Nov 2016 22:13:33 +0000 (14:13 -0800)] 
re-add aria attributes for drilldown specifically

8 years agoMerge branch 'aria-dropdownMenu' of git://github.com/gerardkcohen/foundation-sites...
Kevin Ball [Wed, 30 Nov 2016 22:04:13 +0000 (14:04 -0800)] 
Merge branch 'aria-dropdownMenu' of git://github.com/gerardkcohen/foundation-sites into gerardkcohen-aria-dropdownMenu2

8 years agoMerge pull request #9358 from ajoy39/drilldown-back-position-selection
Kevin Ball [Wed, 30 Nov 2016 21:54:00 +0000 (13:54 -0800)] 
Merge pull request #9358 from ajoy39/drilldown-back-position-selection

Add an option to the drilldown menu to position the back button at th…

8 years agoMerge pull request #9413 from zurb/fix-sticky-left-offset
Kevin Ball [Wed, 30 Nov 2016 21:51:50 +0000 (13:51 -0800)] 
Merge pull request #9413 from zurb/fix-sticky-left-offset

Remove seemingly unnecessary left offset from sticky

8 years agoMerge pull request #9366 from jeromelebleu/remove-sticky-on-load
Kevin Ball [Wed, 30 Nov 2016 21:51:24 +0000 (13:51 -0800)] 
Merge pull request #9366 from jeromelebleu/remove-sticky-on-load

[Sticky] Ensure that unstuck classes are set on load

8 years agoAttempt to fix ARIA attributes applied in submenu toggle case
Kevin Ball [Wed, 30 Nov 2016 21:42:04 +0000 (13:42 -0800)] 
Attempt to fix ARIA attributes applied in submenu toggle case

8 years agoMerge branch 'develop' into accordion-submenu-toggle
Kevin Ball [Wed, 30 Nov 2016 21:31:09 +0000 (13:31 -0800)] 
Merge branch 'develop' into accordion-submenu-toggle

8 years agoMerge pull request #9365 from andycochran/blockgrid
Rafi [Wed, 30 Nov 2016 21:30:26 +0000 (13:30 -0800)] 
Merge pull request #9365 from andycochran/blockgrid

add block-grid-column so bottom margin matches gutters

8 years agoMerge branch 'develop' into brettsmason-new-offcanvas
Kevin Ball [Wed, 30 Nov 2016 21:15:50 +0000 (13:15 -0800)] 
Merge branch 'develop' into brettsmason-new-offcanvas

8 years agoMerge branch 'new-offcanvas' of git://github.com/brettsmason/foundation-sites into...
Kevin Ball [Wed, 30 Nov 2016 21:03:11 +0000 (13:03 -0800)] 
Merge branch 'new-offcanvas' of git://github.com/brettsmason/foundation-sites into brettsmason-new-offcanvas

8 years agoSet the default off canvas panel behaviour to use `position: absolute`to match curren... 9357/head
Brett Mason [Wed, 30 Nov 2016 21:02:34 +0000 (21:02 +0000)] 
Set the default off canvas panel behaviour to use `position: absolute`to match current live behaviour. Added an alternative class of `off-canvas-fixed` to set a menu to be `position: fixed` allowing you to use both types at the same time.

8 years agoMerge branch 'new-offcanvas' of git://github.com/brettsmason/foundation-sites into...
Kevin Ball [Wed, 30 Nov 2016 21:02:06 +0000 (13:02 -0800)] 
Merge branch 'new-offcanvas' of git://github.com/brettsmason/foundation-sites into brettsmason-new-offcanvas

8 years agoFix incorrect keyboard nav within methods
Brett Mason [Wed, 30 Nov 2016 19:47:25 +0000 (19:47 +0000)] 
Fix incorrect keyboard nav within methods

8 years agoMerge pull request #9423 from zurb/fix-drilldown-height-issue
Kevin Ball [Wed, 30 Nov 2016 18:57:51 +0000 (10:57 -0800)] 
Merge pull request #9423 from zurb/fix-drilldown-height-issue

Stopgap fix to 9368

8 years agoMerge pull request #9420 from zurb/revert-9283
Kevin Ball [Wed, 30 Nov 2016 18:42:12 +0000 (10:42 -0800)] 
Merge pull request #9420 from zurb/revert-9283

Revert #9283 due to breaking changes