ama_layout 4.8.3 → 4.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/ama_layout/layout_components/call-to-action.scss +22 -0
- data/app/assets/stylesheets/ama_layout/layout_components/callouts.scss +11 -5
- data/app/assets/stylesheets/ama_layout/layout_components/index.scss +2 -0
- data/app/assets/stylesheets/ama_layout/layout_components/progress-bar.scss +4 -0
- data/app/assets/stylesheets/ama_layout/layout_components/receipt-summary.scss +25 -0
- data/lib/ama_layout/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2046d0c8307e4ed4922bc5d71c49efd806b12fd
|
|
4
|
+
data.tar.gz: f84274dd434989dc997773e3b0ae699c61c5ca86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62b4b190fd6993b395a047daaf7a6cc543c71017f23c3f450defb866ec0e5f761ecf9ca039a537411997e46a6cfb1592c2c24f0bb11a7c7297a8123bfc165777
|
|
7
|
+
data.tar.gz: 7b4afbbd21388370e4d5a1ff57bc221097adaf69a3c9913481fc8f18f69785b1aa1b3f0bfbb687f0b44e2156e6d4ecf26855225c03de5d87eee49a237a6e5e17
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.call-to-action{
|
|
2
|
+
|
|
3
|
+
&__container{
|
|
4
|
+
@include grid-row;
|
|
5
|
+
@include clearfix;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&__image-container{
|
|
9
|
+
@include large-1;
|
|
10
|
+
@include small-3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&__image{
|
|
14
|
+
display: block;
|
|
15
|
+
margin: 0 auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&__content-container{
|
|
19
|
+
@include large-3;
|
|
20
|
+
@include small-9;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -23,22 +23,28 @@
|
|
|
23
23
|
color: $white;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
&__container{
|
|
27
|
+
@include grid-row;
|
|
28
|
+
@include clearfix;
|
|
29
|
+
}
|
|
30
|
+
|
|
26
31
|
&__sub-head{
|
|
27
32
|
color: $white;
|
|
28
33
|
}
|
|
29
34
|
|
|
30
35
|
&__image-container{
|
|
31
|
-
@include large-
|
|
36
|
+
@include large-1;
|
|
37
|
+
@include small-12;
|
|
32
38
|
}
|
|
33
39
|
|
|
34
40
|
&__image{
|
|
35
41
|
display: block;
|
|
36
|
-
margin
|
|
37
|
-
margin-right: auto;
|
|
42
|
+
margin: 0 auto;
|
|
38
43
|
}
|
|
39
44
|
|
|
40
|
-
&__content{
|
|
41
|
-
@include large-
|
|
45
|
+
&__content-container{
|
|
46
|
+
@include large-11;
|
|
47
|
+
@include small-12;
|
|
42
48
|
}
|
|
43
49
|
|
|
44
50
|
&__link{
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.receipt-summary{
|
|
2
|
+
|
|
3
|
+
&__image-container{
|
|
4
|
+
@include medium-3;
|
|
5
|
+
margin-bottom: $base-margin;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&__image{
|
|
9
|
+
|
|
10
|
+
@include breakpoint(small only){
|
|
11
|
+
display: block;
|
|
12
|
+
margin-right: auto;
|
|
13
|
+
margin-left: auto;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&__content-container{
|
|
18
|
+
@include medium-9;
|
|
19
|
+
margin-bottom: $base-margin;
|
|
20
|
+
|
|
21
|
+
@include breakpoint(small only){
|
|
22
|
+
margin-left: $base-margin;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
data/lib/ama_layout/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ama_layout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.8.
|
|
4
|
+
version: 4.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael van den Beuken
|
|
@@ -18,7 +18,7 @@ authors:
|
|
|
18
18
|
autorequire:
|
|
19
19
|
bindir: bin
|
|
20
20
|
cert_chain: []
|
|
21
|
-
date:
|
|
21
|
+
date: 2017-01-05 00:00:00.000000000 Z
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|
|
24
24
|
name: foundation-rails
|
|
@@ -294,6 +294,7 @@ files:
|
|
|
294
294
|
- app/assets/stylesheets/ama_layout/layout_components/breadcrumbs.scss
|
|
295
295
|
- app/assets/stylesheets/ama_layout/layout_components/button-grouping.scss
|
|
296
296
|
- app/assets/stylesheets/ama_layout/layout_components/buttons.scss
|
|
297
|
+
- app/assets/stylesheets/ama_layout/layout_components/call-to-action.scss
|
|
297
298
|
- app/assets/stylesheets/ama_layout/layout_components/callouts.scss
|
|
298
299
|
- app/assets/stylesheets/ama_layout/layout_components/cart.scss
|
|
299
300
|
- app/assets/stylesheets/ama_layout/layout_components/comparison-radios.scss
|
|
@@ -313,6 +314,7 @@ files:
|
|
|
313
314
|
- app/assets/stylesheets/ama_layout/layout_components/pagination.scss
|
|
314
315
|
- app/assets/stylesheets/ama_layout/layout_components/progress-bar.scss
|
|
315
316
|
- app/assets/stylesheets/ama_layout/layout_components/promo-block.scss
|
|
317
|
+
- app/assets/stylesheets/ama_layout/layout_components/receipt-summary.scss
|
|
316
318
|
- app/assets/stylesheets/ama_layout/layout_components/responsive-table.scss
|
|
317
319
|
- app/assets/stylesheets/ama_layout/layout_components/reveal-modal.scss
|
|
318
320
|
- app/assets/stylesheets/ama_layout/layout_components/sections.scss
|