jekyll-theme-foundation 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/_includes/google-analytics.html +8 -0
- data/_includes/head.html +17 -0
- data/_includes/scripts.html +4 -0
- data/_layouts/default.html +16 -0
- data/_layouts/home.html +5 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/_vendor/normalize-scss/sass/_normalize.scss +3 -0
- data/_sass/_vendor/normalize-scss/sass/normalize/_import-now.scss +11 -0
- data/_sass/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +676 -0
- data/_sass/_vendor/normalize-scss/sass/normalize/_variables.scss +36 -0
- data/_sass/_vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +61 -0
- data/_sass/_vendor/sassy-lists/stylesheets/functions/_contain.scss +31 -0
- data/_sass/_vendor/sassy-lists/stylesheets/functions/_purge.scss +38 -0
- data/_sass/_vendor/sassy-lists/stylesheets/functions/_remove.scss +31 -0
- data/_sass/_vendor/sassy-lists/stylesheets/functions/_replace.scss +46 -0
- data/_sass/_vendor/sassy-lists/stylesheets/functions/_to-list.scss +27 -0
- data/_sass/_vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +25 -0
- data/_sass/_vendor/sassy-lists/stylesheets/helpers/_true.scss +13 -0
- data/_sass/assets/foundation-float.scss +5 -0
- data/_sass/assets/foundation-prototype.scss +3 -0
- data/_sass/assets/foundation-rtl.scss +5 -0
- data/_sass/assets/foundation.scss +3 -0
- data/_sass/jekyll-theme-foundation.scss +5 -0
- data/_sass/scss/_global.scss +249 -0
- data/_sass/scss/components/_accordion-menu.scss +171 -0
- data/_sass/scss/components/_accordion.scss +155 -0
- data/_sass/scss/components/_badge.scss +63 -0
- data/_sass/scss/components/_breadcrumbs.scss +117 -0
- data/_sass/scss/components/_button-group.scss +253 -0
- data/_sass/scss/components/_button.scss +385 -0
- data/_sass/scss/components/_callout.scss +106 -0
- data/_sass/scss/components/_card.scss +129 -0
- data/_sass/scss/components/_close-button.scss +102 -0
- data/_sass/scss/components/_drilldown.scss +142 -0
- data/_sass/scss/components/_dropdown-menu.scss +274 -0
- data/_sass/scss/components/_dropdown.scss +79 -0
- data/_sass/scss/components/_flex-video.scss +1 -0
- data/_sass/scss/components/_flex.scss +117 -0
- data/_sass/scss/components/_float.scss +27 -0
- data/_sass/scss/components/_label.scss +64 -0
- data/_sass/scss/components/_media-object.scss +114 -0
- data/_sass/scss/components/_menu-icon.scss +9 -0
- data/_sass/scss/components/_menu.scss +495 -0
- data/_sass/scss/components/_off-canvas.scss +506 -0
- data/_sass/scss/components/_orbit.scss +196 -0
- data/_sass/scss/components/_pagination.scss +193 -0
- data/_sass/scss/components/_progress-bar.scss +64 -0
- data/_sass/scss/components/_responsive-embed.scss +70 -0
- data/_sass/scss/components/_reveal.scss +180 -0
- data/_sass/scss/components/_slider.scss +137 -0
- data/_sass/scss/components/_sticky.scss +39 -0
- data/_sass/scss/components/_switch.scss +247 -0
- data/_sass/scss/components/_table.scss +330 -0
- data/_sass/scss/components/_tabs.scss +196 -0
- data/_sass/scss/components/_thumbnail.scss +67 -0
- data/_sass/scss/components/_title-bar.scss +84 -0
- data/_sass/scss/components/_tooltip.scss +160 -0
- data/_sass/scss/components/_top-bar.scss +175 -0
- data/_sass/scss/components/_visibility.scss +132 -0
- data/_sass/scss/forms/_checkbox.scss +41 -0
- data/_sass/scss/forms/_error.scss +88 -0
- data/_sass/scss/forms/_fieldset.scss +53 -0
- data/_sass/scss/forms/_forms.scss +34 -0
- data/_sass/scss/forms/_help-text.scss +30 -0
- data/_sass/scss/forms/_input-group.scss +142 -0
- data/_sass/scss/forms/_label.scss +50 -0
- data/_sass/scss/forms/_meter.scss +116 -0
- data/_sass/scss/forms/_progress.scss +94 -0
- data/_sass/scss/forms/_range.scss +149 -0
- data/_sass/scss/forms/_select.scss +86 -0
- data/_sass/scss/forms/_text.scss +179 -0
- data/_sass/scss/foundation.scss +133 -0
- data/_sass/scss/grid/_classes.scss +176 -0
- data/_sass/scss/grid/_column.scss +112 -0
- data/_sass/scss/grid/_flex-grid.scss +259 -0
- data/_sass/scss/grid/_grid.scss +48 -0
- data/_sass/scss/grid/_gutter.scss +82 -0
- data/_sass/scss/grid/_layout.scss +76 -0
- data/_sass/scss/grid/_position.scss +76 -0
- data/_sass/scss/grid/_row.scss +99 -0
- data/_sass/scss/grid/_size.scss +24 -0
- data/_sass/scss/prototype/_arrow.scss +36 -0
- data/_sass/scss/prototype/_border-box.scss +35 -0
- data/_sass/scss/prototype/_border-none.scss +35 -0
- data/_sass/scss/prototype/_bordered.scss +54 -0
- data/_sass/scss/prototype/_box.scss +23 -0
- data/_sass/scss/prototype/_display.scss +50 -0
- data/_sass/scss/prototype/_font-styling.scss +95 -0
- data/_sass/scss/prototype/_list-style-type.scss +95 -0
- data/_sass/scss/prototype/_overflow.scss +72 -0
- data/_sass/scss/prototype/_position.scss +114 -0
- data/_sass/scss/prototype/_prototype.scss +87 -0
- data/_sass/scss/prototype/_relation.scss +157 -0
- data/_sass/scss/prototype/_rotate.scss +31 -0
- data/_sass/scss/prototype/_rounded.scss +54 -0
- data/_sass/scss/prototype/_separator.scss +96 -0
- data/_sass/scss/prototype/_shadow.scss +43 -0
- data/_sass/scss/prototype/_sizing.scss +73 -0
- data/_sass/scss/prototype/_spacing.scss +204 -0
- data/_sass/scss/prototype/_text-decoration.scss +48 -0
- data/_sass/scss/prototype/_text-transformation.scss +48 -0
- data/_sass/scss/prototype/_text-utilities.scss +88 -0
- data/_sass/scss/settings/_settings.scss +869 -0
- data/_sass/scss/typography/_alignment.scss +22 -0
- data/_sass/scss/typography/_base.scss +509 -0
- data/_sass/scss/typography/_helpers.scss +80 -0
- data/_sass/scss/typography/_print.scss +86 -0
- data/_sass/scss/typography/_typography.scss +26 -0
- data/_sass/scss/util/_breakpoint.scss +348 -0
- data/_sass/scss/util/_color.scss +129 -0
- data/_sass/scss/util/_direction.scss +31 -0
- data/_sass/scss/util/_flex.scss +85 -0
- data/_sass/scss/util/_math.scss +72 -0
- data/_sass/scss/util/_mixins.scss +313 -0
- data/_sass/scss/util/_selector.scss +41 -0
- data/_sass/scss/util/_typography.scss +26 -0
- data/_sass/scss/util/_unit.scss +152 -0
- data/_sass/scss/util/_util.scss +14 -0
- data/_sass/scss/util/_value.scss +160 -0
- data/_sass/scss/xy-grid/_cell.scss +169 -0
- data/_sass/scss/xy-grid/_classes.scss +476 -0
- data/_sass/scss/xy-grid/_collapse.scss +74 -0
- data/_sass/scss/xy-grid/_frame.scss +85 -0
- data/_sass/scss/xy-grid/_grid.scss +35 -0
- data/_sass/scss/xy-grid/_gutters.scss +45 -0
- data/_sass/scss/xy-grid/_layout.scss +33 -0
- data/_sass/scss/xy-grid/_position.scss +28 -0
- data/_sass/scss/xy-grid/_xy-grid.scss +51 -0
- data/assets/css/main.scss +5 -0
- data/assets/css/motion-ui.min.css +1 -0
- data/assets/js/foundation.min.js +5 -0
- data/assets/js/motion-ui.min.js +1 -0
- metadata +235 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group callout
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Default background color.
|
10
|
+
/// @type Color
|
11
|
+
$callout-background: $white !default;
|
12
|
+
|
13
|
+
/// Default fade value for callout backgrounds.
|
14
|
+
/// @type Number
|
15
|
+
$callout-background-fade: 85% !default;
|
16
|
+
|
17
|
+
/// Default border style for callouts.
|
18
|
+
/// @type List
|
19
|
+
$callout-border: 1px solid rgba($black, 0.25) !default;
|
20
|
+
|
21
|
+
/// Default bottom margin for callouts.
|
22
|
+
/// @type Number
|
23
|
+
$callout-margin: 0 0 1rem 0 !default;
|
24
|
+
|
25
|
+
/// Default inner padding for callouts.
|
26
|
+
/// @type Number
|
27
|
+
$callout-padding: 1rem !default;
|
28
|
+
|
29
|
+
/// Default font color for callouts.
|
30
|
+
/// @type Color
|
31
|
+
$callout-font-color: $body-font-color !default;
|
32
|
+
|
33
|
+
/// Default font color for callouts, if the callout has a dark background.
|
34
|
+
/// @type Color
|
35
|
+
$callout-font-color-alt: $body-background !default;
|
36
|
+
|
37
|
+
/// Default border radius for callouts.
|
38
|
+
/// @type Color
|
39
|
+
$callout-radius: $global-radius !default;
|
40
|
+
|
41
|
+
/// Amount to tint links used within colored panels. Set to `false` to disable this feature.
|
42
|
+
/// @type Number | Boolean
|
43
|
+
$callout-link-tint: 30% !default;
|
44
|
+
|
45
|
+
/// Adds basic styles for a callout, including padding and margin.
|
46
|
+
@mixin callout-base() {
|
47
|
+
position: relative;
|
48
|
+
margin: $callout-margin;
|
49
|
+
padding: $callout-padding;
|
50
|
+
|
51
|
+
border: $callout-border;
|
52
|
+
border-radius: $callout-radius;
|
53
|
+
|
54
|
+
// Respect the padding, fool.
|
55
|
+
> :first-child {
|
56
|
+
margin-top: 0;
|
57
|
+
}
|
58
|
+
|
59
|
+
> :last-child {
|
60
|
+
margin-bottom: 0;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
/// Generate quick styles for a callout using a single color as a baseline.
|
65
|
+
/// @param {Color} $color [$callout-background] - Color to use.
|
66
|
+
@mixin callout-style($color: $callout-background) {
|
67
|
+
$background: scale-color($color, $lightness: $callout-background-fade);
|
68
|
+
|
69
|
+
background-color: $background;
|
70
|
+
color: color-pick-contrast($background, ($callout-font-color, $callout-font-color-alt));
|
71
|
+
}
|
72
|
+
|
73
|
+
@mixin callout-size($padding) {
|
74
|
+
padding-top: $padding;
|
75
|
+
padding-right: $padding;
|
76
|
+
padding-bottom: $padding;
|
77
|
+
padding-left: $padding;
|
78
|
+
}
|
79
|
+
|
80
|
+
|
81
|
+
/// Adds styles for a callout.
|
82
|
+
/// @param {Color} $color [$callout-background] - Color to use.
|
83
|
+
@mixin callout($color: $callout-background) {
|
84
|
+
@include callout-base;
|
85
|
+
@include callout-style($color);
|
86
|
+
}
|
87
|
+
|
88
|
+
@mixin foundation-callout {
|
89
|
+
.callout {
|
90
|
+
@include callout;
|
91
|
+
|
92
|
+
@each $name, $color in $foundation-palette {
|
93
|
+
&.#{$name} {
|
94
|
+
@include callout-style($color);
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
&.small {
|
99
|
+
@include callout-size(0.5rem);
|
100
|
+
}
|
101
|
+
|
102
|
+
&.large {
|
103
|
+
@include callout-size(3rem);
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
@@ -0,0 +1,129 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group card
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Defualt background color.
|
10
|
+
/// @type Color
|
11
|
+
$card-background: $white !default;
|
12
|
+
|
13
|
+
/// Default font color for cards.
|
14
|
+
/// @type Color
|
15
|
+
$card-font-color: $body-font-color !default;
|
16
|
+
|
17
|
+
/// Default background.
|
18
|
+
/// @type Color
|
19
|
+
$card-divider-background: $light-gray !default;
|
20
|
+
|
21
|
+
/// Default border style.
|
22
|
+
/// @type List
|
23
|
+
$card-border: 1px solid $light-gray !default;
|
24
|
+
|
25
|
+
/// Default card shadow.
|
26
|
+
/// @type List
|
27
|
+
$card-shadow: none !default;
|
28
|
+
|
29
|
+
/// Default border radius.
|
30
|
+
/// @type List
|
31
|
+
$card-border-radius: $global-radius !default;
|
32
|
+
|
33
|
+
/// Default padding.
|
34
|
+
/// @type Number
|
35
|
+
$card-padding: $global-padding !default;
|
36
|
+
|
37
|
+
/// Default bottom margin.
|
38
|
+
/// @type number
|
39
|
+
$card-margin-bottom: $global-margin !default;
|
40
|
+
|
41
|
+
/// Adds styles for a card container.
|
42
|
+
/// @param {Color} $background - Background color of the card.
|
43
|
+
/// @param {Color} $color - font color of the card.
|
44
|
+
/// @param {Number} $margin - Bottom margin of the card.
|
45
|
+
/// @param {List} $border - Border around the card.
|
46
|
+
/// @param {List} $radius - border radius of the card.
|
47
|
+
/// @param {List} $shadow - box shadow of the card.
|
48
|
+
@mixin card-container(
|
49
|
+
$background: $card-background,
|
50
|
+
$color: $card-font-color,
|
51
|
+
$margin: $card-margin-bottom,
|
52
|
+
$border: $card-border,
|
53
|
+
$radius: $card-border-radius,
|
54
|
+
$shadow: $card-shadow
|
55
|
+
) {
|
56
|
+
@if $global-flexbox {
|
57
|
+
display: flex;
|
58
|
+
flex-direction: column;
|
59
|
+
flex-grow: 1;
|
60
|
+
}
|
61
|
+
|
62
|
+
margin-bottom: $margin;
|
63
|
+
|
64
|
+
border: $border;
|
65
|
+
border-radius: $radius;
|
66
|
+
|
67
|
+
background: $background;
|
68
|
+
box-shadow: $shadow;
|
69
|
+
|
70
|
+
overflow: hidden;
|
71
|
+
color: $color;
|
72
|
+
|
73
|
+
& > :last-child {
|
74
|
+
margin-bottom: 0;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
/// Adds styles for a card divider.
|
79
|
+
@mixin card-divider(
|
80
|
+
$background: $card-divider-background,
|
81
|
+
$padding: $card-padding
|
82
|
+
) {
|
83
|
+
@if $global-flexbox {
|
84
|
+
flex: 0 1 auto;
|
85
|
+
display: flex;
|
86
|
+
}
|
87
|
+
|
88
|
+
padding: $padding;
|
89
|
+
background: $background;
|
90
|
+
|
91
|
+
& > :last-child {
|
92
|
+
margin-bottom: 0;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
/// Adds styles for a card section.
|
97
|
+
@mixin card-section(
|
98
|
+
$padding: $card-padding
|
99
|
+
) {
|
100
|
+
@if $global-flexbox {
|
101
|
+
flex: 1 0 auto;
|
102
|
+
}
|
103
|
+
|
104
|
+
padding: $padding;
|
105
|
+
|
106
|
+
& > :last-child {
|
107
|
+
margin-bottom: 0;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
@mixin foundation-card {
|
112
|
+
.card {
|
113
|
+
@include card-container;
|
114
|
+
}
|
115
|
+
|
116
|
+
.card-divider {
|
117
|
+
@include card-divider;
|
118
|
+
}
|
119
|
+
|
120
|
+
.card-section {
|
121
|
+
@include card-section;
|
122
|
+
}
|
123
|
+
|
124
|
+
// For IE 11 - Flexbug
|
125
|
+
// https://github.com/philipwalton/flexbugs/issues/75
|
126
|
+
.card-image {
|
127
|
+
min-height: 1px;
|
128
|
+
}
|
129
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group close-button
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Default position of the close button. The first value should be `right` or `left`, and the second value should be `top` or `bottom`.
|
10
|
+
/// @type List
|
11
|
+
$closebutton-position: right top !default;
|
12
|
+
|
13
|
+
/// Right (or left) offset(s) for a close button.
|
14
|
+
/// @type Number|Map
|
15
|
+
$closebutton-offset-horizontal: (
|
16
|
+
small: 0.66rem,
|
17
|
+
medium: 1rem,
|
18
|
+
) !default;
|
19
|
+
|
20
|
+
/// Top (or bottom) offset(s) for a close button.
|
21
|
+
/// @type Number|Map
|
22
|
+
$closebutton-offset-vertical: (
|
23
|
+
small: 0.33em,
|
24
|
+
medium: 0.5rem,
|
25
|
+
) !default;
|
26
|
+
|
27
|
+
/// Default font size(s) of the close button.
|
28
|
+
/// @type Number|Map
|
29
|
+
$closebutton-size: (
|
30
|
+
small: 1.5em,
|
31
|
+
medium: 2em,
|
32
|
+
) !default;
|
33
|
+
|
34
|
+
/// The line-height of the close button. It affects the spacing of the element.
|
35
|
+
/// @type Number
|
36
|
+
$closebutton-lineheight: 1 !default;
|
37
|
+
|
38
|
+
/// Default color of the close button.
|
39
|
+
/// @type Color
|
40
|
+
$closebutton-color: $dark-gray !default;
|
41
|
+
|
42
|
+
/// Default color of the close button when being hovered on.
|
43
|
+
/// @type Color
|
44
|
+
$closebutton-color-hover: $black !default;
|
45
|
+
|
46
|
+
|
47
|
+
/// Get the size and position for a close button. If the input value is a number, the number is returned. If the input value is a config map and the map has the key `$size`, the value is returned.
|
48
|
+
///
|
49
|
+
/// @param {Number|Map} $value - A number or map that represents the size or position value(s) of the close button.
|
50
|
+
/// @param {Keyword} $size - The size of the close button to use.
|
51
|
+
///
|
52
|
+
/// @return {Number} The given number or the value found in the map.
|
53
|
+
@function -zf-get-size-val($value, $size) {
|
54
|
+
// Check if the value is a number
|
55
|
+
@if type-of($value) == 'number' {
|
56
|
+
// If it is, just return the number
|
57
|
+
@return $value;
|
58
|
+
}
|
59
|
+
|
60
|
+
// Check if the size name exists in the value map
|
61
|
+
@else if map-has-key($value, $size) {
|
62
|
+
// If it does, return the value
|
63
|
+
@return map-get($value, $size);
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
/// Sets the size and position of a close button.
|
68
|
+
/// @param {Keyword} $size [medium] - The size to use. Set to `small` to create a small close button. The 'medium' values defined in `$closebutton-*` variables will be used as the default size and position of the close button.
|
69
|
+
@mixin close-button-size($size) {
|
70
|
+
$x: nth($closebutton-position, 1);
|
71
|
+
$y: nth($closebutton-position, 2);
|
72
|
+
|
73
|
+
#{$x}: -zf-get-size-val($closebutton-offset-horizontal, $size);
|
74
|
+
#{$y}: -zf-get-size-val($closebutton-offset-vertical, $size);
|
75
|
+
font-size: -zf-get-size-val($closebutton-size, $size);
|
76
|
+
line-height: -zf-get-size-val($closebutton-lineheight, $size);
|
77
|
+
}
|
78
|
+
|
79
|
+
/// Adds styles for a close button, using the styles in the settings variables.
|
80
|
+
@mixin close-button {
|
81
|
+
$x: nth($closebutton-position, 1);
|
82
|
+
$y: nth($closebutton-position, 2);
|
83
|
+
|
84
|
+
@include disable-mouse-outline;
|
85
|
+
position: absolute;
|
86
|
+
color: $closebutton-color;
|
87
|
+
cursor: pointer;
|
88
|
+
|
89
|
+
&:hover,
|
90
|
+
&:focus {
|
91
|
+
color: $closebutton-color-hover;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
@mixin foundation-close-button {
|
96
|
+
.close-button {
|
97
|
+
@include close-button;
|
98
|
+
|
99
|
+
&.small { @include close-button-size(small) }
|
100
|
+
&, &.medium { @include close-button-size(medium) }
|
101
|
+
}
|
102
|
+
}
|
@@ -0,0 +1,142 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group drilldown
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Transition property to use for animating menus.
|
10
|
+
/// @type Transition
|
11
|
+
$drilldown-transition: transform 0.15s linear !default;
|
12
|
+
|
13
|
+
/// Adds arrows to drilldown items with submenus, as well as the back button.
|
14
|
+
/// @type Boolean
|
15
|
+
$drilldown-arrows: true !default;
|
16
|
+
|
17
|
+
/// Sets drilldown menu item padding.
|
18
|
+
/// @type Number
|
19
|
+
$drilldown-padding: $global-menu-padding !default;
|
20
|
+
|
21
|
+
/// Sets drilldown menu nested margin
|
22
|
+
/// @type Number
|
23
|
+
$drilldown-nested-margin: 0 !default;
|
24
|
+
|
25
|
+
/// Background color for drilldown top level items.
|
26
|
+
/// @type Color
|
27
|
+
$drilldown-background: $white !default;
|
28
|
+
|
29
|
+
/// Sets drilldown menu item padding in the submenu.
|
30
|
+
/// @type Number
|
31
|
+
$drilldown-submenu-padding: $drilldown-padding !default;
|
32
|
+
|
33
|
+
/// Background color for drilldown submenus.
|
34
|
+
/// @type Color
|
35
|
+
$drilldown-submenu-background: $white !default;
|
36
|
+
|
37
|
+
/// Sets drilldown arrow color if arrow is used.
|
38
|
+
/// @type Color
|
39
|
+
$drilldown-arrow-color: $primary-color !default;
|
40
|
+
|
41
|
+
/// Sets drilldown arrow size if arrow is used.
|
42
|
+
/// @type Length
|
43
|
+
$drilldown-arrow-size: 6px !default;
|
44
|
+
|
45
|
+
@mixin zf-drilldown-left-right-arrows {
|
46
|
+
.is-drilldown-submenu-parent > a {
|
47
|
+
position: relative;
|
48
|
+
&::after {
|
49
|
+
position: absolute;
|
50
|
+
top: 50%;
|
51
|
+
margin-top: -1 * $drilldown-arrow-size;
|
52
|
+
#{$global-right}: 1rem;
|
53
|
+
@include css-triangle($drilldown-arrow-size, $drilldown-arrow-color, $global-right);
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
&.align-left .is-drilldown-submenu-parent > a::after {
|
58
|
+
left: auto;
|
59
|
+
right: 1rem;
|
60
|
+
@include css-triangle($dropdownmenu-arrow-size, $dropdownmenu-arrow-color, right);
|
61
|
+
}
|
62
|
+
|
63
|
+
&.align-right .is-drilldown-submenu-parent > a::after {
|
64
|
+
right: auto;
|
65
|
+
left: 1rem;
|
66
|
+
@include css-triangle($dropdownmenu-arrow-size, $dropdownmenu-arrow-color, left);
|
67
|
+
}
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
@mixin foundation-drilldown-menu {
|
72
|
+
// Applied to the Menu container
|
73
|
+
.is-drilldown {
|
74
|
+
position: relative;
|
75
|
+
overflow: hidden;
|
76
|
+
|
77
|
+
li {
|
78
|
+
display: block;
|
79
|
+
}
|
80
|
+
|
81
|
+
&.animate-height {
|
82
|
+
transition: height 0.5s;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
// The top level <ul>
|
87
|
+
.drilldown {
|
88
|
+
a {
|
89
|
+
padding: $drilldown-padding;
|
90
|
+
background: $drilldown-background;
|
91
|
+
}
|
92
|
+
|
93
|
+
// Applied to submenu <ul>s
|
94
|
+
.is-drilldown-submenu {
|
95
|
+
position: absolute;
|
96
|
+
top: 0;
|
97
|
+
#{$global-left}: 100%;
|
98
|
+
z-index: -1;
|
99
|
+
|
100
|
+
width: 100%;
|
101
|
+
background: $drilldown-submenu-background;
|
102
|
+
transition: $drilldown-transition;
|
103
|
+
|
104
|
+
&.is-active {
|
105
|
+
z-index: 1;
|
106
|
+
display: block;
|
107
|
+
transform: translateX(if($global-text-direction == ltr, -100%, 100%));
|
108
|
+
}
|
109
|
+
|
110
|
+
&.is-closing {
|
111
|
+
transform: translateX(if($global-text-direction == ltr, 100%, -100%));
|
112
|
+
}
|
113
|
+
|
114
|
+
// Submenu item padding
|
115
|
+
a {
|
116
|
+
padding: $drilldown-submenu-padding;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
.nested.is-drilldown-submenu {
|
121
|
+
@include menu-nested($drilldown-nested-margin);
|
122
|
+
}
|
123
|
+
|
124
|
+
.drilldown-submenu-cover-previous {
|
125
|
+
min-height: 100%;
|
126
|
+
}
|
127
|
+
|
128
|
+
@if $drilldown-arrows {
|
129
|
+
@include zf-drilldown-left-right-arrows;
|
130
|
+
|
131
|
+
.js-drilldown-back > a::before {
|
132
|
+
@include css-triangle($drilldown-arrow-size, $drilldown-arrow-color, $global-left);
|
133
|
+
border-#{$global-left}-width: 0;
|
134
|
+
display: inline-block;
|
135
|
+
vertical-align: middle;
|
136
|
+
margin-#{$global-right}: 0.75rem; // Creates space between the arrow and the text
|
137
|
+
|
138
|
+
border-#{$global-left}-width: 0;
|
139
|
+
}
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|