zurb-foundation 2.0.3.3 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/foundation/version.rb +2 -2
- data/vendor/assets/stylesheets/foundation.scss +37 -13
- metadata +8 -8
data/lib/foundation/version.rb
CHANGED
@@ -77,8 +77,10 @@
|
|
77
77
|
/* --------------------------------------------------
|
78
78
|
:: Links
|
79
79
|
-------------------------------------------------- */
|
80
|
-
a { color: #2a85e8; text-decoration: none;
|
80
|
+
a { color: #2a85e8; text-decoration: none; line-height: inherit; }
|
81
81
|
a:hover { color: #11639d; }
|
82
|
+
a:focus { color: #cc4714; }
|
83
|
+
a:hover, a:active { outline: none; overflow: hidden; }
|
82
84
|
p a, p a:visited { line-height: inherit; }
|
83
85
|
|
84
86
|
|
@@ -376,8 +378,6 @@
|
|
376
378
|
text-indent: 12px;
|
377
379
|
}
|
378
380
|
|
379
|
-
.button:active {}
|
380
|
-
|
381
381
|
/* Sizes ---------- */
|
382
382
|
.small.button { font-size: 11px; padding: 8px 20px 10px; width: auto; }
|
383
383
|
.medium.button { font-size: 13px; width: auto; }
|
@@ -391,20 +391,20 @@
|
|
391
391
|
.blue.button { background-color: #00a6fc; }
|
392
392
|
.red.button { background-color: #e91c21; }
|
393
393
|
.white.button { background-color: #e9e9e9; color: #333; }
|
394
|
-
.black.button
|
394
|
+
.black.button { background-color: #141414; }
|
395
395
|
|
396
396
|
/* Nice Colors ---------- */
|
397
397
|
.nice.blue.button { border: 1px solid #0593dc; }
|
398
398
|
.nice.red.button { border: 1px solid #b90b0b; }
|
399
399
|
.nice.white.button { border: 1px solid #cacaca; text-shadow: none !important; }
|
400
|
-
.nice.black.button
|
400
|
+
.nice.black.button { border: 1px solid #000; }
|
401
401
|
|
402
402
|
/* Hovers ---------- */
|
403
|
-
.button:hover
|
404
|
-
.blue.button:hover { background-color: #0192dd; }
|
405
|
-
.red.button:hover { background-color: #d01217; }
|
406
|
-
.white.button:hover
|
407
|
-
.black.button:hover { background-color: #000; }
|
403
|
+
.button:hover, .button:focus { background-color: #0192dd; color: #fff; }
|
404
|
+
.blue.button:hover, .blue.button:focus { background-color: #0192dd; }
|
405
|
+
.red.button:hover, .red.button:focus { background-color: #d01217; }
|
406
|
+
.white.button:hover, .white.button:focus { background-color: #dadada; color: #333; }
|
407
|
+
.black.button:hover, .black.button:focus { background-color: #000; }
|
408
408
|
|
409
409
|
|
410
410
|
/* Disabled ---------- */
|
@@ -422,7 +422,7 @@
|
|
422
422
|
.alert-box.error { background-color: #c00000; color: #fff; text-shadow: 0px -1px rgba(0,0,0,0.3); }
|
423
423
|
|
424
424
|
.alert-box a.close { color: #000; position: absolute; right: 4px; top: 0px; font-size: 18px; opacity: 0.2; padding: 4px; }
|
425
|
-
.alert-box a.close:hover { opacity: 0.4; }
|
425
|
+
.alert-box a.close:hover,.alert-box a.close:focus { opacity: 0.4; }
|
426
426
|
|
427
427
|
|
428
428
|
|
@@ -440,6 +440,16 @@
|
|
440
440
|
.nice.tabs dd a { padding: 7px 18px 9px; font-size: 15px; font-size: 1.5rem; color: #555555; background: none; border: none; }
|
441
441
|
.nice.tabs dd a.active { font-weight: bold; color: #333; background: #fff; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 3px solid #00a6fc; margin: 0 10px; position: relative; top: -5px; }
|
442
442
|
.nice.tabs dd:first-child a.active { margin-left: 0; }
|
443
|
+
|
444
|
+
dl.tabs.vertical { height: auto; }
|
445
|
+
dl.tabs.vertical dt, dl.tabs.vertical dd, dl.nice.tabs.vertical dt, dl.nice.tabs.vertical dd { float: none; height: auto; }
|
446
|
+
dl.tabs.vertical dd a { display: block; width: auto; height: auto; padding: 15px 20px; line-height: 1; border: solid 0px #ccc; border-width: 1px 1px 0px; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
|
447
|
+
dl.tabs.vertical dd a.active { height: auto; margin: 0; border-width: 1px 0px 0px; background: #fff; }
|
448
|
+
|
449
|
+
.nice.tabs.vertical { border-bottom: solid 1px #eee; height: auto; }
|
450
|
+
.nice.tabs.vertical dd a { padding: 15px 20px; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; background: #fff; }
|
451
|
+
.nice.tabs.vertical dd a.active { border: none; background: #00a6fc; color: #fff; margin: 0; position: static; top: 0px; height: auto; }
|
452
|
+
.nice.tabs.vertical dd:first-child a.active { margin: 0; }
|
443
453
|
|
444
454
|
ul.tabs-content { margin: 0; display: block; }
|
445
455
|
ul.tabs-content > li { display:none; }
|
@@ -459,9 +469,9 @@
|
|
459
469
|
ul.pagination { display: block; height: 24px; margin-left: -5px; }
|
460
470
|
ul.pagination li { float: left; display: block; height: 24px; color: #999; font-size: 15px; margin-left: 5px; }
|
461
471
|
ul.pagination li a { display: block; padding: 6px 7px 4px; color: #555; }
|
462
|
-
ul.pagination li.current a, ul.pagination li:hover a { border-bottom: solid 2px #00a6fc; color: #141414; }
|
472
|
+
ul.pagination li.current a, ul.pagination li:hover a, ul.pagination li a:focus { border-bottom: solid 2px #00a6fc; color: #141414; }
|
463
473
|
ul.pagination li.unavailable a { cursor: default; color: #999; }
|
464
|
-
ul.pagination li.unavailable:hover a { border-bottom: none; }
|
474
|
+
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { border-bottom: none; }
|
465
475
|
|
466
476
|
|
467
477
|
/* --------------------------------------------------
|
@@ -941,6 +951,20 @@ div.slider-nav span.left {
|
|
941
951
|
.column, .columns { width: auto !important; float: none; margin-left: 0px; margin-right: 0px; padding-left: 20px; padding-right: 20px; }
|
942
952
|
.column:last-child, .columns:last-child { margin-right: 0px; }
|
943
953
|
.offset-by-one, .offset-by-two, .offset-by-three, .offset-by-four, .offset-by-five, .offset-by-six, .offset-by-seven, .offset-by-eight, .offset-by-nine, .offset-by-ten, .offset-by-eleven, .centered { margin-left: 0% !important; }
|
954
|
+
|
955
|
+
|
956
|
+
/* Mobile 4-column Grid */
|
957
|
+
.row .phone-one.column:first-child, .row .phone-two.column:first-child, .row .phone-three.column:first-child, .row .phone-four.column:first-child, .row .phone-one.columns:first-child, .row .phone-two.columns:first-child, .row .phone-three.columns:first-child, .row .phone-four.columns:first-child { margin-left: 0px; }
|
958
|
+
|
959
|
+
.row .phone-one.column, .row .phone-two.column, .row .phone-three.column, .row .phone-four.column,
|
960
|
+
.row .phone-one.columns, .row .phone-two.columns, .row .phone-three.columns, .row .phone-four.columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; padding: 0; }
|
961
|
+
|
962
|
+
.row .phone-one.columns { width: 21.68% !important; }
|
963
|
+
.row .phone-two.columns { width: 47.8% !important; }
|
964
|
+
.row .phone-three.columns { width: 73.9% !important; }
|
965
|
+
.row .phone-four.columns { width: 100% !important; }
|
966
|
+
|
967
|
+
|
944
968
|
}
|
945
969
|
|
946
970
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zurb-foundation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-11-
|
12
|
+
date: 2011-11-18 00:00:00.000000000 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
17
|
-
requirement: &
|
17
|
+
requirement: &2154190160 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: 3.1.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2154190160
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: jquery-rails
|
28
|
-
requirement: &
|
28
|
+
requirement: &2154189460 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '1.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2154189460
|
37
37
|
description: An easy to use, powerful, and flexible framework for building prototypes
|
38
38
|
and production code on any kind of device.
|
39
39
|
email:
|
@@ -90,7 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
90
|
version: '0'
|
91
91
|
segments:
|
92
92
|
- 0
|
93
|
-
hash:
|
93
|
+
hash: -4054959945751573924
|
94
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
version: '0'
|
100
100
|
segments:
|
101
101
|
- 0
|
102
|
-
hash:
|
102
|
+
hash: -4054959945751573924
|
103
103
|
requirements: []
|
104
104
|
rubyforge_project: foundation
|
105
105
|
rubygems_version: 1.6.2
|