forever_style_guide 3.0.7 → 3.0.8

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.
Files changed (22) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/forever_style_guide/contextualhelplassoanimation.gif +0 -0
  3. data/app/assets/images/forever_style_guide/digiart1.png +0 -0
  4. data/app/assets/images/forever_style_guide/digiart2.png +0 -0
  5. data/app/assets/images/forever_style_guide/digiart3.png +0 -0
  6. data/app/assets/images/forever_style_guide/single-product.jpg +0 -0
  7. data/app/assets/images/style_guide/modals/promobg.jpg +0 -0
  8. data/app/assets/stylesheets/forever_style_guide/modules/_all.scss +2 -0
  9. data/app/assets/stylesheets/forever_style_guide/modules/_button.scss +5 -0
  10. data/app/assets/stylesheets/forever_style_guide/modules/_modal.scss +104 -0
  11. data/app/assets/stylesheets/style_guide/modules/_partial.scss +0 -1
  12. data/app/views/forever_style_guide/sections/components/_modals.erb +129 -0
  13. data/lib/forever_style_guide/version.rb +2 -2
  14. data/test/dummy/log/development.log +540 -0
  15. data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_all.scssc +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_button.scssc +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sass/1fccdb6be9da19cc345d4b92b55eb0d4fbf7c363/_modal.scssc +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sass/77afe34ae60f4f73cffcc8a92e720a6db579269d/_partial.scssc +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/74ee448666a16d19f05d144192a607fd +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/93ba27aa64423f74732b1f2b12b84118 +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/b7c77fa9ddbae9998b1339d6c2c3eef0 +0 -0
  22. metadata +10 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a58e0d72bf09b978d71d0b58042e3feaa2588367
4
- data.tar.gz: d019619fc51e7232e4ce0eb30bb670cdac7ad372
3
+ metadata.gz: bbcd5c03731fd1e9c4190af92b1c8e6dfacf18a3
4
+ data.tar.gz: 35152fa70fb10c72315eae04dfe0b55d2c4b0776
5
5
  SHA512:
6
- metadata.gz: e918e38bb3182f0a63322a0e41e8c1ee0afe34c2816e0125b0b1a7e31d22684265a4aae0dbd137b0edaa8c7a2d6b9954cb7b9cd4a6e4112f625d872afb8fc949
7
- data.tar.gz: 7fbda821852d61b656a3fc298bd74a5fd7cf4f632d3df3a5792149863889cebbc022221081c602bc3259efc0b25d90cb9bed8c1653991c15d759c475283a21c8
6
+ metadata.gz: 30b52f710620d64d6f55a3c8aa1c7a59c68ab96becd12cc006c6cd6c9f836e094d3854510af9756d744db9d2362e826e8137022d669e03e091762ab51e127f3e
7
+ data.tar.gz: e0b1f7630fa8d29038ee46046d6eb0773b1a46b7c79633551b16df946c4410bbe64b9f4aa901269bab14575f79a720314cc036a09ab336ddebb210c87aa74789
@@ -25,5 +25,7 @@
25
25
  @import "promo_banner";
26
26
  @import "select";
27
27
  @import "shame";
28
+ @import "hero_simple";
29
+ @import "modal";
28
30
  @import "signin";
29
31
  @import "switch";
@@ -54,8 +54,13 @@
54
54
  @each $id, $color in $core_colors {
55
55
  @at-root #{&}.btn-#{$id} {
56
56
  @include btn-color(#{$id});
57
+
57
58
  &.btn-inverse {
58
59
  @include btn-color(#{$id}, true);
60
+
61
+ &.btn-inverse-hero {
62
+ border-color: color('white');
63
+ }
59
64
  }
60
65
  }
61
66
  }
@@ -0,0 +1,104 @@
1
+ $modal-padding-footer: 15px;
2
+ $modal-form-width-lg: 355px;
3
+ $modal-product-suggestion-sm: 170px;
4
+ $modal-promo-height: 475px;
5
+
6
+ .modal-title {
7
+ font-family: $font-face-light;
8
+ color: inherit;
9
+ }
10
+
11
+ .modal-footer-buttons {
12
+ padding: $modal-padding-footer;
13
+ text-align: right;
14
+ border-top: 1px solid $color-gray-400;
15
+ }
16
+
17
+ .modal-footer-txt {
18
+ font-family: $font-face-bold;
19
+ color: $color-gray-600;
20
+ line-height: 3;
21
+ }
22
+
23
+ .modal-footer-info {
24
+ padding: 10px;
25
+ }
26
+
27
+ .modal-body-info {
28
+ padding: 30px;
29
+ }
30
+
31
+ .modal-product-name-sm {
32
+ margin: 10px auto 0;
33
+ max-width: $modal-product-suggestion-sm;
34
+ color: $color-gray-600;
35
+ font-family: $font-face-bold;
36
+ text-overflow: ellipsis;
37
+ white-space: nowrap;
38
+ overflow: hidden;
39
+ }
40
+
41
+ .modal-footer-products {
42
+ padding: $modal-padding-footer;
43
+ }
44
+
45
+ .product-preview:hover .modal-product-name-sm {
46
+ color: $color-secondary;
47
+ }
48
+
49
+ .product-preview-link:hover {
50
+ text-decoration: none;
51
+ }
52
+
53
+ .close:hover,
54
+ .close:focus,
55
+ .modal-close:hover,
56
+ .modal-close:focus {
57
+ cursor: pointer;
58
+ }
59
+
60
+ .modal-footer-txt.checkbox {
61
+ line-height: 1.5;
62
+ }
63
+
64
+ .modal-media-text {
65
+ padding: 0 40px;
66
+ margin-top: $modal-padding-footer;
67
+ }
68
+
69
+ .modal-content.modal-promo {
70
+ background-image: url('modals/promobg.jpg');
71
+ background-size: cover;
72
+ height: $modal-promo-height;
73
+ }
74
+
75
+ .modal-promo-footer,
76
+ .modal-promo-header {
77
+ border: none;
78
+ }
79
+
80
+ .modal-promo-content {
81
+ color: $color-gray-600;
82
+ font-size: $font-size-500;
83
+ text-align: center;
84
+ margin-top: 165px;
85
+ padding: 0 50px;
86
+ }
87
+
88
+ .modal-promo-form {
89
+ width: $modal-form-width-lg;
90
+ margin : 0 auto;
91
+ text-align: center;
92
+ }
93
+
94
+ .promo-btn {
95
+ width: $modal-form-width-lg;
96
+ position: relative;
97
+ display: block;
98
+ margin: 0 auto;
99
+ margin-top: 10px;
100
+ }
101
+
102
+ .modal-promo {
103
+ border: none;
104
+ }
@@ -93,5 +93,4 @@
93
93
 
94
94
  .style-guide-partial .style-guide-partial-rendered > * {
95
95
  float: none;
96
- position: relative;
97
96
  }
@@ -0,0 +1,129 @@
1
+ <!-- Trigger the modal with a button -->
2
+ <div class='row'>
3
+ <div class='col-md-6'>
4
+ <h3>Decision/Info:</h3>
5
+ <button type="button" class="btn btn-danger btn-lg" data-toggle="modal" data-target="#info" title="Delete Photo">Delete Photo</button>
6
+ </div>
7
+ <div class='col-md-6'>
8
+ <h3>Product:</h3>
9
+ <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#product" title="Add to Cart">Add to Cart</button>
10
+ </div>
11
+ <div class='col-md-6'>
12
+ <h3>Media:</h3>
13
+ <button type="button" class="btn btn-artisan btn-lg" data-toggle="modal" data-target="#media" title="Learn More">Learn More</button>
14
+ </div>
15
+ <div class='col-md-6'>
16
+ <h3>Field:</h3>
17
+ <button type="button" class="btn btn-services btn-lg" data-toggle="modal" data-target="#promo" title="View Pricing">View Promotion</button>
18
+ </div>
19
+ </div>
20
+
21
+ <!-- Decision Modals -->
22
+ <div id="info" class="modal fade" role="dialog" data-keyboard="true">
23
+ <div class="modal-dialog">
24
+ <div class="modal-content">
25
+ <div class="modal-header color-white color_block-danger">
26
+ <span type="button" class="modal-close pull-right" data-dismiss="modal"><i class="fa fa-close fa-2x"></i></span>
27
+ <h3 class="modal-title"><i class="fa fa-trash-o"></i> Delete Photo?</h3>
28
+ </div>
29
+ <div class="modal-body modal-body-info">
30
+ <p>Are you sure you want to <strong>delete this photo from all locations</strong>, including inbox, albums, tags and dates?</p>
31
+ </div>
32
+ <div class="modal-footer modal-footer-info">
33
+ <span class="pull-left modal-footer-txt"><i>This action cannot be undone.</i></span>
34
+ <button type="button" class="btn btn-link" data-dismiss="modal" title="Cancel">Cancel</button>
35
+ <button type="button" class="btn btn-primary" data-dismiss="modal" title="Delete">Yes, Delete</button>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </div>
40
+
41
+ <!-- Product Modals -->
42
+ <div id="product" class="modal fade" role="dialog">
43
+ <div class="modal-dialog">
44
+ <div class="modal-content">
45
+ <div class="modal-header color-white color_block-primary">
46
+ <span type="button" class="modal-close pull-right" data-dismiss="modal"><i class="fa fa-close fa-2x"></i></span>
47
+ <h3 class="modal-title"><i class="fa fa-check-circle-o"></i> 1 Item Added to Cart</h3>
48
+ </div>
49
+ <div class="modal-body modal-body-info">
50
+ <div class='row'>
51
+ <div class='col-md-6'>
52
+ <%= image_tag("forever_style_guide/single-product.jpg", alt: "Forever Logo", class:"navbar-brand-logo") %>
53
+ </div>
54
+ <div class='col-md-6'>
55
+ <h3>What Makes Your Soul Happy - 5x7 Digital Art Print</h3>
56
+ <p>Designed by <%= link_to 'LJS Designs', '#', title: 'LJS Designs' %><br />Price $3.50</p>
57
+ <button type="button" class="btn btn-secondary btn-inverse" data-dismiss="modal" title="Keep Shopping">Keep Shopping</button>
58
+ <button type="button" class="btn btn-primary" data-dismiss="modal" title="Checkout">Checkout</button>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ <div class="modal-footer modal-footer-products">
63
+ <div class='row text-center'>
64
+ <p>Shoppers also liked:</p>
65
+ <div class='col-md-4 product-preview'>
66
+ <a class='product-preview-link' title="View Product" href="#"%>
67
+ <%= image_tag("forever_style_guide/digiart1.png", alt: "Forever Digital Art Kit", title: "Forever Digital Art Kit") %>
68
+ <p class='modal-product-name-sm'>Jammin' Jungle Juice MEGA Bundle</p>
69
+ <%= link_to 'View Details', '#', title: 'View Details' %>
70
+ </a>
71
+ </div>
72
+ <div class='col-md-4 product-preview'>
73
+ <a class='product-preview-link' title="View Product" href="#"%>
74
+ <%= image_tag("forever_style_guide/digiart2.png", alt: "Forever Digital Art Kit", title: "Forever Digital Art Kit") %>
75
+ <p class='modal-product-name-sm'>Sunshine on My Shoulder - The Bundle!</p>
76
+ <%= link_to 'View Details', '#', title: 'View Details' %>
77
+ </a>
78
+ </div>
79
+ <div class='col-md-4 product-preview'>
80
+ <a class='product-preview-link' title="View Product" href="#"%>
81
+ <%= image_tag("forever_style_guide/digiart3.png", alt: "Forever Digital Art Kit", title: "Forever Digital Art Kit") %>
82
+ <p class='modal-product-name-sm'>Vintage Americana Bundle</p>
83
+ <%= link_to 'View Details', '#', title: 'View Details' %>
84
+ </a>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+
92
+ <!-- Media Modals -->
93
+ <div id="media" class="modal fade" role="dialog">
94
+ <div class="modal-dialog">
95
+ <div class="modal-content">
96
+ <div class="modal-header color-white color_block-artisan">
97
+ <span type="button" class="modal-close pull-right" data-dismiss="modal"><i class="fa fa-close fa-2x"></i></span>
98
+ <h3 class="modal-title"><i class="fa fa-info-circle"></i> Why not round 'em up with Lasso Select?</h3>
99
+ </div>
100
+ <div class="modal-body modal-body-info">
101
+ <%= image_tag("forever_style_guide/contextualhelplassoanimation.gif", alt: "Forever Logo", class:"navbar-brand-logo") %>
102
+ <p class='modal-media-text text-center'>Select and de-select lots of photos and documents by clicking and dragging your cursor around the items you want to work on.</p>
103
+ </div>
104
+ <div class="modal-footer modal-footer-info">
105
+ <span class="pull-left modal-footer-txt checkbox">
106
+ <label><input type="checkbox" value=""><i>Do not show me again.</i></label>
107
+ </span>
108
+ <button type="button" class="btn btn-primary" data-dismiss="modal" title="Got it, Close">Got It!</button>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Promo Modals -->
115
+ <div id="promo" class="modal-promo modal fade" role="dialog">
116
+ <div class="modal-dialog">
117
+ <div class="modal-content modal-promo">
118
+ <div class="modal-header modal-promo-header">
119
+ <span type="button" class="modal-close pull-right" data-dismiss="modal" title="Close"><i class="fa fa-close"></i></span>
120
+ </div>
121
+ <div class="modal-body">
122
+ <p class='modal-promo-content'>Share this deal with friends &amp; family.</p>
123
+ <input type="email" name="email" id="" autofocus="autofocus" class="form-control modal-promo-form" placeholder="Enter Email Address">
124
+ <button type="button" class="btn btn-services btn-artisan promo-btn" data-dismiss="modal" title="Send and Close">Send & Close</button>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </div>
129
+
@@ -1,3 +1,3 @@
1
- module ForeverStyleGuide
2
- VERSION = "3.0.7"
1
+ module ForeverStyleGuide
2
+ VERSION = "3.0.8"
3
3
  end
@@ -531068,3 +531068,543 @@ Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-07-26 13:0
531068
531068
 
531069
531069
 
531070
531070
  Started GET "/assets/style_guide/hero/beach-girl-sm.jpg" for ::1 at 2016-07-26 13:02:29 -0400
531071
+
531072
+
531073
+ Started GET "/style_guide" for ::1 at 2016-07-27 08:21:22 -0400
531074
+ Processing by ForeverStyleGuide::StyleController#index as HTML
531075
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (0.9ms)
531076
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (2.2ms)
531077
+ Completed 200 OK in 3341ms (Views: 3340.2ms | ActiveRecord: 0.0ms)
531078
+
531079
+
531080
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531081
+
531082
+
531083
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531084
+
531085
+
531086
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531087
+
531088
+
531089
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531090
+
531091
+
531092
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531093
+
531094
+
531095
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531096
+
531097
+
531098
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531099
+
531100
+
531101
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531102
+
531103
+
531104
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531105
+
531106
+
531107
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531108
+
531109
+
531110
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531111
+
531112
+
531113
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531114
+
531115
+
531116
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531117
+
531118
+
531119
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531120
+
531121
+
531122
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531123
+
531124
+
531125
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531126
+
531127
+
531128
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531129
+
531130
+
531131
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531132
+
531133
+
531134
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531135
+
531136
+
531137
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531138
+
531139
+
531140
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531141
+
531142
+
531143
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531144
+
531145
+
531146
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-07-27 08:21:25 -0400
531147
+
531148
+
531149
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-07-27 08:21:25 -0400
531150
+
531151
+
531152
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-07-27 08:21:25 -0400
531153
+
531154
+
531155
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-07-27 08:21:25 -0400
531156
+
531157
+
531158
+ Started GET "/style_guide/visual_elements" for ::1 at 2016-07-27 08:23:18 -0400
531159
+ Processing by ForeverStyleGuide::StyleController#show as HTML
531160
+ Parameters: {"id"=>"visual_elements"}
531161
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.3ms)
531162
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.8ms)
531163
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_buttons.erb (0.5ms)
531164
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (22.4ms)
531165
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_dropdowns.erb (0.0ms)
531166
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.3ms)
531167
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_effects.erb (0.4ms)
531168
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.8ms)
531169
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_forms.erb (0.1ms)
531170
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.6ms)
531171
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_input_groups.erb (0.2ms)
531172
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.5ms)
531173
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_lists.erb (0.7ms)
531174
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.0ms)
531175
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_progress.erb (0.1ms)
531176
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.0ms)
531177
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_headings.erb (0.1ms)
531178
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_formatting.erb (0.1ms)
531179
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_styles.erb (0.3ms)
531180
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_typography.html.erb (16.0ms)
531181
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (170.3ms)
531182
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.4ms)
531183
+ Completed 200 OK in 282ms (Views: 270.7ms | ActiveRecord: 0.0ms)
531184
+
531185
+
531186
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531187
+
531188
+
531189
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531190
+
531191
+
531192
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531193
+
531194
+
531195
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531196
+
531197
+
531198
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531199
+
531200
+
531201
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531202
+
531203
+
531204
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531205
+
531206
+
531207
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531208
+
531209
+
531210
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531211
+
531212
+
531213
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531214
+
531215
+
531216
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531217
+
531218
+
531219
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531220
+
531221
+
531222
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531223
+
531224
+
531225
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531226
+
531227
+
531228
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531229
+
531230
+
531231
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531232
+
531233
+
531234
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531235
+
531236
+
531237
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531238
+
531239
+
531240
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531241
+
531242
+
531243
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531244
+
531245
+
531246
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531247
+
531248
+
531249
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-07-27 08:23:19 -0400
531250
+
531251
+
531252
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-07-27 08:23:19 -0400
531253
+
531254
+
531255
+ Started GET "/assets/style_guide/hero/beach-girl-xs.jpg" for ::1 at 2016-07-27 08:23:19 -0400
531256
+
531257
+
531258
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-07-27 08:23:19 -0400
531259
+
531260
+
531261
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-07-27 08:23:19 -0400
531262
+
531263
+
531264
+ Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-07-27 08:23:19 -0400
531265
+
531266
+
531267
+ Started GET "/assets/forever_style_guide/check.png" for ::1 at 2016-07-27 08:23:19 -0400
531268
+
531269
+
531270
+ Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-07-27 08:23:19 -0400
531271
+
531272
+
531273
+ Started GET "/style_guide/components" for ::1 at 2016-07-27 08:23:21 -0400
531274
+ Processing by ForeverStyleGuide::StyleController#show as HTML
531275
+ Parameters: {"id"=>"components"}
531276
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.2ms)
531277
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (1.0ms)
531278
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (0.7ms)
531279
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.3ms)
531280
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.4ms)
531281
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (6.5ms)
531282
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (0.7ms)
531283
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (6.8ms)
531284
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (24.8ms)
531285
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.2ms)
531286
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.9ms)
531287
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero_simple.erb (0.2ms)
531288
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.9ms)
531289
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_modals.erb (5.2ms)
531290
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (23.7ms)
531291
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.1ms)
531292
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.4ms)
531293
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.1ms)
531294
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.4ms)
531295
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_promo_banner.html.erb (0.1ms)
531296
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.1ms)
531297
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.9ms)
531298
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.1ms)
531299
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.1ms)
531300
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (218.6ms)
531301
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.3ms)
531302
+ Completed 200 OK in 330ms (Views: 329.2ms | ActiveRecord: 0.0ms)
531303
+
531304
+
531305
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531306
+
531307
+
531308
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531309
+
531310
+
531311
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531312
+
531313
+
531314
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531315
+
531316
+
531317
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531318
+
531319
+
531320
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531321
+
531322
+
531323
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531324
+
531325
+
531326
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531327
+
531328
+
531329
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531330
+
531331
+
531332
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531333
+
531334
+
531335
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531336
+
531337
+
531338
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531339
+
531340
+
531341
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531342
+
531343
+
531344
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531345
+
531346
+
531347
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531348
+
531349
+
531350
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531351
+
531352
+
531353
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531354
+
531355
+
531356
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531357
+
531358
+
531359
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531360
+
531361
+
531362
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531363
+
531364
+
531365
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531366
+
531367
+
531368
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-07-27 08:23:22 -0400
531369
+
531370
+
531371
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-07-27 08:23:22 -0400
531372
+
531373
+
531374
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-07-27 08:23:22 -0400
531375
+
531376
+
531377
+ Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-07-27 08:23:22 -0400
531378
+
531379
+
531380
+ Started GET "/assets/style_guide/personas/ted_avatar.png" for ::1 at 2016-07-27 08:23:22 -0400
531381
+
531382
+
531383
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-07-27 08:23:22 -0400
531384
+
531385
+
531386
+ Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for ::1 at 2016-07-27 08:23:22 -0400
531387
+
531388
+
531389
+ Started GET "/assets/forever_style_guide/forever-logo.png" for ::1 at 2016-07-27 08:23:22 -0400
531390
+
531391
+
531392
+ Started GET "/assets/forever_style_guide/historian-logo-sm.png" for ::1 at 2016-07-27 08:23:22 -0400
531393
+
531394
+
531395
+ Started GET "/assets/forever_style_guide/services-logo-sm.png" for ::1 at 2016-07-27 08:23:22 -0400
531396
+
531397
+
531398
+ Started GET "/assets/forever_style_guide/single-product.jpg" for ::1 at 2016-07-27 08:23:22 -0400
531399
+
531400
+
531401
+ Started GET "/assets/forever_style_guide/digiart1.png" for ::1 at 2016-07-27 08:23:22 -0400
531402
+
531403
+
531404
+ Started GET "/assets/forever_style_guide/digiart2.png" for ::1 at 2016-07-27 08:23:22 -0400
531405
+
531406
+
531407
+ Started GET "/assets/forever_style_guide/digiart3.png" for ::1 at 2016-07-27 08:23:22 -0400
531408
+
531409
+
531410
+ Started GET "/assets/forever_style_guide/contextualhelplassoanimation.gif" for ::1 at 2016-07-27 08:23:22 -0400
531411
+
531412
+
531413
+ Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-07-27 08:23:22 -0400
531414
+
531415
+
531416
+ Started GET "/assets/style_guide/modals/promobg.jpg" for ::1 at 2016-07-27 08:23:22 -0400
531417
+
531418
+
531419
+ Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-07-27 08:23:24 -0400
531420
+
531421
+
531422
+ Started GET "/style_guide" for ::1 at 2016-07-27 08:25:53 -0400
531423
+ Processing by ForeverStyleGuide::StyleController#index as HTML
531424
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (0.5ms)
531425
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.5ms)
531426
+ Completed 200 OK in 110ms (Views: 110.0ms | ActiveRecord: 0.0ms)
531427
+
531428
+
531429
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531430
+
531431
+
531432
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531433
+
531434
+
531435
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531436
+
531437
+
531438
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531439
+
531440
+
531441
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531442
+
531443
+
531444
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531445
+
531446
+
531447
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531448
+
531449
+
531450
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531451
+
531452
+
531453
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531454
+
531455
+
531456
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531457
+
531458
+
531459
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531460
+
531461
+
531462
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531463
+
531464
+
531465
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531466
+
531467
+
531468
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531469
+
531470
+
531471
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531472
+
531473
+
531474
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531475
+
531476
+
531477
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531478
+
531479
+
531480
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531481
+
531482
+
531483
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531484
+
531485
+
531486
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531487
+
531488
+
531489
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531490
+
531491
+
531492
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531493
+
531494
+
531495
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-07-27 08:25:53 -0400
531496
+
531497
+
531498
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-07-27 08:25:53 -0400
531499
+
531500
+
531501
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-07-27 08:25:54 -0400
531502
+
531503
+
531504
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-07-27 08:25:54 -0400
531505
+
531506
+
531507
+ Started GET "/style_guide/demo/hero" for ::1 at 2016-07-27 08:25:56 -0400
531508
+ Processing by ForeverStyleGuide::StyleController#demo as HTML
531509
+ Parameters: {"path"=>"hero"}
531510
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_cart_icon.erb (0.6ms)
531511
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_my_forever_dropdown.erb (2.6ms)
531512
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_products_dropdown.erb (2.5ms)
531513
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_community_dropdown.erb (1.5ms)
531514
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_cart_icon.erb (0.1ms)
531515
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown.erb (1.3ms)
531516
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_ambassador_dropdown.erb (1.6ms)
531517
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav_account_signed_out_mobile.erb (0.5ms)
531518
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_nav.erb (17.3ms)
531519
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/demo/hero.html.erb within layouts/forever_style_guide/application (20.9ms)
531520
+ Completed 200 OK in 108ms (Views: 107.4ms | ActiveRecord: 0.0ms)
531521
+
531522
+
531523
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531524
+
531525
+
531526
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-07-27 08:25:57 -0400
531527
+
531528
+
531529
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531530
+
531531
+
531532
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531533
+
531534
+
531535
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531536
+
531537
+
531538
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531539
+
531540
+
531541
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531542
+
531543
+
531544
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531545
+
531546
+
531547
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531548
+
531549
+
531550
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531551
+
531552
+
531553
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531554
+
531555
+
531556
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531557
+
531558
+
531559
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531560
+
531561
+
531562
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531563
+
531564
+
531565
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531566
+
531567
+
531568
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531569
+
531570
+
531571
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531572
+
531573
+
531574
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531575
+
531576
+
531577
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531578
+
531579
+
531580
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531581
+
531582
+
531583
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531584
+
531585
+
531586
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531587
+
531588
+
531589
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531590
+
531591
+
531592
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-07-27 08:25:57 -0400
531593
+
531594
+
531595
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-07-27 08:25:57 -0400
531596
+
531597
+
531598
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-07-27 08:25:57 -0400
531599
+
531600
+
531601
+ Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-07-27 08:25:57 -0400
531602
+
531603
+
531604
+ Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-07-27 08:25:57 -0400
531605
+
531606
+
531607
+ Started GET "/assets/forever_style_guide/artisan-logo.png" for ::1 at 2016-07-27 08:25:57 -0400
531608
+
531609
+
531610
+ Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-07-27 08:25:57 -0400
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forever_style_guide
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.7
4
+ version: 3.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas McClay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-26 00:00:00.000000000 Z
11
+ date: 2016-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -201,7 +201,11 @@ files:
201
201
  - app/assets/images/forever_style_guide/artisan-logo-sm.png
202
202
  - app/assets/images/forever_style_guide/artisan-logo.png
203
203
  - app/assets/images/forever_style_guide/check.png
204
+ - app/assets/images/forever_style_guide/contextualhelplassoanimation.gif
204
205
  - app/assets/images/forever_style_guide/default_avatar.jpg
206
+ - app/assets/images/forever_style_guide/digiart1.png
207
+ - app/assets/images/forever_style_guide/digiart2.png
208
+ - app/assets/images/forever_style_guide/digiart3.png
205
209
  - app/assets/images/forever_style_guide/forever-logo.jpg
206
210
  - app/assets/images/forever_style_guide/forever-logo.png
207
211
  - app/assets/images/forever_style_guide/forever-swirl-logo.png
@@ -211,12 +215,14 @@ files:
211
215
  - app/assets/images/forever_style_guide/logo-380.png
212
216
  - app/assets/images/forever_style_guide/services-logo-sm.png
213
217
  - app/assets/images/forever_style_guide/services-logo.png
218
+ - app/assets/images/forever_style_guide/single-product.jpg
214
219
  - app/assets/images/forever_style_guide/valet-logo-sm.png
215
220
  - app/assets/images/forever_style_guide/valet-logo.png
216
221
  - app/assets/images/style_guide/hero/beach-girl-md.jpg
217
222
  - app/assets/images/style_guide/hero/beach-girl-sm.jpg
218
223
  - app/assets/images/style_guide/hero/beach-girl-xs.jpg
219
224
  - app/assets/images/style_guide/hero/beach-girl.jpg
225
+ - app/assets/images/style_guide/modals/promobg.jpg
220
226
  - app/assets/images/style_guide/personas/jane_avatar.png
221
227
  - app/assets/images/style_guide/personas/sophia_avatar.png
222
228
  - app/assets/images/style_guide/personas/ted_avatar.png
@@ -259,6 +265,7 @@ files:
259
265
  - app/assets/stylesheets/forever_style_guide/modules/_input_groups.scss
260
266
  - app/assets/stylesheets/forever_style_guide/modules/_list-toggle.scss
261
267
  - app/assets/stylesheets/forever_style_guide/modules/_list.scss
268
+ - app/assets/stylesheets/forever_style_guide/modules/_modal.scss
262
269
  - app/assets/stylesheets/forever_style_guide/modules/_nav-dropdowns-account.scss
263
270
  - app/assets/stylesheets/forever_style_guide/modules/_nav-dropdowns-ambassador.scss
264
271
  - app/assets/stylesheets/forever_style_guide/modules/_nav-dropdowns.scss
@@ -301,6 +308,7 @@ files:
301
308
  - app/views/forever_style_guide/sections/components/_footer.erb
302
309
  - app/views/forever_style_guide/sections/components/_hero.erb
303
310
  - app/views/forever_style_guide/sections/components/_hero_simple.erb
311
+ - app/views/forever_style_guide/sections/components/_modals.erb
304
312
  - app/views/forever_style_guide/sections/components/_panel.erb
305
313
  - app/views/forever_style_guide/sections/components/_popover.erb
306
314
  - app/views/forever_style_guide/sections/components/_promo_banner.html.erb