foundation-rails 5.4.4.0 → 5.4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bower.json +2 -2
- data/lib/foundation/rails/version.rb +1 -1
- data/vendor/assets/_settings.scss +2 -1
- data/vendor/assets/javascripts/foundation/foundation.abide.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.accordion.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.alert.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.clearing.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.dropdown.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.equalizer.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.interchange.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.joyride.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.magellan.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.orbit.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.reveal.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.slider.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.tab.js +2 -9
- data/vendor/assets/javascripts/foundation/foundation.tooltip.js +1 -1
- data/vendor/assets/javascripts/foundation/foundation.topbar.js +1 -1
- data/vendor/assets/stylesheets/foundation/_functions.scss +1 -1
- data/vendor/assets/stylesheets/foundation/_settings.scss +2 -1
- data/vendor/assets/stylesheets/foundation/components/_forms.scss +1 -0
- data/vendor/assets/stylesheets/foundation/components/_global.scss +1 -1
- data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +2 -1
- data/vendor/assets/stylesheets/foundation/components/_type.scss +3 -1
- metadata +4 -4
data/bower.json
CHANGED
@@ -1093,6 +1093,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1093
1093
|
// $reveal-modal-bg: $white;
|
1094
1094
|
// $reveal-position-top: rem-calc(100);
|
1095
1095
|
// $reveal-default-width: 80%;
|
1096
|
+
// $reveal-max-width: $row-width;
|
1096
1097
|
// $reveal-modal-padding: rem-calc(20);
|
1097
1098
|
// $reveal-box-shadow: 0 0 10px rgba($black,.4);
|
1098
1099
|
|
@@ -1139,7 +1140,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1139
1140
|
// $side-nav-font-weight: $font-weight-normal;
|
1140
1141
|
// $side-nav-font-weight-active: $side-nav-font-weight;
|
1141
1142
|
// $side-nav-font-family: $body-font-family;
|
1142
|
-
// $side-nav-
|
1143
|
+
// $side-nav-font-family-active: $side-nav-font-family;
|
1143
1144
|
|
1144
1145
|
// We use these to control heading styles.
|
1145
1146
|
// $side-nav-heading-color: $side-nav-link-color;
|
@@ -4,7 +4,7 @@
|
|
4
4
|
Foundation.libs.tab = {
|
5
5
|
name : 'tab',
|
6
6
|
|
7
|
-
version : '5.4.
|
7
|
+
version : '5.4.5',
|
8
8
|
|
9
9
|
settings : {
|
10
10
|
active_class: 'active',
|
@@ -59,14 +59,7 @@
|
|
59
59
|
S(window).on('hashchange.fndtn.tab', function (e) {
|
60
60
|
e.preventDefault();
|
61
61
|
self.handle_location_hash_change();
|
62
|
-
|
63
|
-
}).on('keyup', function (e) {
|
64
|
-
if (e.keyword == 9) {
|
65
|
-
// active tab
|
66
|
-
console.log(document.querySelector('[data-tab] .tab-title :focus'))
|
67
|
-
}
|
68
|
-
});
|
69
|
-
;
|
62
|
+
});
|
70
63
|
},
|
71
64
|
|
72
65
|
handle_location_hash_change : function () {
|
@@ -1093,6 +1093,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1093
1093
|
// $reveal-modal-bg: $white;
|
1094
1094
|
// $reveal-position-top: rem-calc(100);
|
1095
1095
|
// $reveal-default-width: 80%;
|
1096
|
+
// $reveal-max-width: $row-width;
|
1096
1097
|
// $reveal-modal-padding: rem-calc(20);
|
1097
1098
|
// $reveal-box-shadow: 0 0 10px rgba($black,.4);
|
1098
1099
|
|
@@ -1139,7 +1140,7 @@ $include-html-global-classes: $include-html-classes;
|
|
1139
1140
|
// $side-nav-font-weight: $font-weight-normal;
|
1140
1141
|
// $side-nav-font-weight-active: $side-nav-font-weight;
|
1141
1142
|
// $side-nav-font-family: $body-font-family;
|
1142
|
-
// $side-nav-
|
1143
|
+
// $side-nav-font-family-active: $side-nav-font-family;
|
1143
1144
|
|
1144
1145
|
// We use these to control heading styles.
|
1145
1146
|
// $side-nav-heading-color: $side-nav-link-color;
|
@@ -333,6 +333,7 @@ $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%) !default;
|
|
333
333
|
border: $input-border-width $input-border-style $input-border-color;
|
334
334
|
padding: $form-spacing / 2;
|
335
335
|
font-size: $input-font-size;
|
336
|
+
font-family: $body-font-family;
|
336
337
|
color: $input-font-color;
|
337
338
|
line-height: normal;
|
338
339
|
@include radius(0);
|
@@ -345,7 +345,7 @@ $cursor-text-value: text !default;
|
|
345
345
|
// Forward slash placed around everything to convince PhantomJS to read the value.
|
346
346
|
|
347
347
|
meta.foundation-version {
|
348
|
-
font-family: "/5.4.
|
348
|
+
font-family: "/5.4.5/";
|
349
349
|
}
|
350
350
|
|
351
351
|
meta.foundation-mq-small {
|
@@ -5,6 +5,7 @@
|
|
5
5
|
@import "global";
|
6
6
|
@import "grid";
|
7
7
|
@import "buttons";
|
8
|
+
@import "forms";
|
8
9
|
|
9
10
|
//
|
10
11
|
// Top Bar Variables
|
@@ -49,7 +50,7 @@ $topbar-link-font-family: $body-font-family !default;
|
|
49
50
|
$topbar-link-text-transform: none !default;
|
50
51
|
$topbar-link-padding: $topbar-height / 3 !default;
|
51
52
|
$topbar-back-link-size: rem-calc(18) !default;
|
52
|
-
$topbar-link-dropdown-padding: 20px;
|
53
|
+
$topbar-link-dropdown-padding: 20px !default;
|
53
54
|
$topbar-button-font-size: 0.75rem !default;
|
54
55
|
$topbar-button-top: 7px !default;
|
55
56
|
|
@@ -386,11 +386,13 @@ $align-class-breakpoints:
|
|
386
386
|
text-transform: uppercase;
|
387
387
|
font-size: 90%;
|
388
388
|
color: $body-font-color;
|
389
|
-
border-bottom: $acronym-underline;
|
390
389
|
cursor: $cursor-help-value;
|
391
390
|
}
|
392
391
|
abbr {
|
393
392
|
text-transform: none;
|
393
|
+
&[title] {
|
394
|
+
border-bottom: $acronym-underline;
|
395
|
+
}
|
394
396
|
}
|
395
397
|
|
396
398
|
/* Blockquotes */
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foundation-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.4.
|
4
|
+
version: 5.4.5.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-09-
|
12
|
+
date: 2014-09-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -238,7 +238,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
238
238
|
version: '0'
|
239
239
|
segments:
|
240
240
|
- 0
|
241
|
-
hash: -
|
241
|
+
hash: -265992628700706658
|
242
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
243
243
|
none: false
|
244
244
|
requirements:
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
247
247
|
version: '0'
|
248
248
|
segments:
|
249
249
|
- 0
|
250
|
-
hash: -
|
250
|
+
hash: -265992628700706658
|
251
251
|
requirements: []
|
252
252
|
rubyforge_project:
|
253
253
|
rubygems_version: 1.8.23
|