forever_style_guide 3.6.0 → 3.6.1
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/forever_style_guide/globals/_colors.scss +1 -1
- data/app/assets/stylesheets/forever_style_guide/modules/_ambassador_banner.scss +5 -4
- data/app/assets/stylesheets/forever_style_guide/modules/_primary_nav.scss +5 -4
- data/app/helpers/forever_style_guide/application_helper.rb +1 -1
- data/lib/forever_style_guide/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4c3229c29775874918febfb2c24c934da4afea0ec23d8a43062dacd72e4ed4d
|
4
|
+
data.tar.gz: bd9d5c2da9f549083bca7d39953228495a2a40cd941f3db4463277d4d655623c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e1b95d362d407ed55ff8afdfb428f3b21ee99c82636181768532b2e2f353afb0c2fd7c4368cb8ae1991f194faab83cc16eb10e890679efce638e8c71b413d64
|
7
|
+
data.tar.gz: e2e23c3804c37cbfcf3e4451f8ed036714cd2e1bcf2ee254be3b6fdf3e6c387edcfa17be609867c565839289e02fb36c84c8e7e6ef2261a8fe443c8986d7c1e4
|
@@ -12,6 +12,7 @@ $color-forever_services: colorify('services', #39b3be) !default;
|
|
12
12
|
$color-forever_artisan: colorify('artisan', #28a6de) !default;
|
13
13
|
$color-forever_blue: colorify('blue', #2b91cf) !default;
|
14
14
|
$color-forever_ambassador: colorify('ambassador', #a4314c) !default;
|
15
|
+
$color-forever_ambassador-unassigned: colorify('ambassador-unassigned', #2d8e97) !default;
|
15
16
|
$color-forever_p2p: colorify('p2p', #f89406) !default;
|
16
17
|
|
17
18
|
$color-forever_orange: colorify('orange', #ED773A) !default;
|
@@ -65,7 +66,6 @@ $color-live18-orange: colorify('live18-orange', #f57e25) !default;
|
|
65
66
|
$color-live18-grey: colorify('live18-grey', #a4abb6) !default;
|
66
67
|
|
67
68
|
// Gradients
|
68
|
-
$gradient-ambassador-alt: linear-gradient(to left, mix($color-black, $color-forever_purple, 10%), mix($color-black, $color-forever_ambassador, 10%));
|
69
69
|
$gradient-ambassador: linear-gradient(to left, mix($color-black, $color-forever_valet, 10%), mix($color-black, $color-forever_services, 10%));
|
70
70
|
|
71
71
|
@each $id, $color in $colors {
|
@@ -9,11 +9,10 @@ $banner-hover-effect-speed: 0.15s;
|
|
9
9
|
$chevron-rotate-effect-speed: 0.25s;
|
10
10
|
$dropdown-entrance-and-exit-effect-speed: 0.22s;
|
11
11
|
|
12
|
-
@mixin ambassador_banner($
|
12
|
+
@mixin ambassador_banner($height) {
|
13
13
|
position: relative;
|
14
14
|
height: $height;
|
15
15
|
color: $banner-color;
|
16
|
-
background-image: $banner-background-gradient;
|
17
16
|
cursor: pointer;
|
18
17
|
z-index: $in-front-of-primary-nav;
|
19
18
|
|
@@ -55,7 +54,8 @@ a.ambassador_banner {
|
|
55
54
|
}
|
56
55
|
|
57
56
|
.ambassador_banner-assigned {
|
58
|
-
@include ambassador_banner($
|
57
|
+
@include ambassador_banner($ambassador-banner-height-assigned);
|
58
|
+
background-image: $gradient-ambassador;
|
59
59
|
padding-top: $banner-vertical-padding-assigned;
|
60
60
|
padding-bottom: $banner-vertical-padding-assigned;
|
61
61
|
height: $ambassador-banner-height-assigned;
|
@@ -76,7 +76,8 @@ a.ambassador_banner {
|
|
76
76
|
}
|
77
77
|
|
78
78
|
.ambassador_banner-unassigned {
|
79
|
-
@include ambassador_banner($
|
79
|
+
@include ambassador_banner($ambassador-banner-height-unassigned);
|
80
|
+
background: $color-forever_ambassador-unassigned;
|
80
81
|
padding-top: $banner-vertical-padding-unassigned;
|
81
82
|
padding-bottom: $banner-vertical-padding-unassigned;
|
82
83
|
|
@@ -27,9 +27,7 @@ $f-primary_nav-icon-count_badge-right: -4px;
|
|
27
27
|
|
28
28
|
.f-primary_nav {
|
29
29
|
width: 100%;
|
30
|
-
|
31
|
-
padding-right: 10px;
|
32
|
-
box-shadow: $f-primary_nav-shadow;
|
30
|
+
|
33
31
|
background-color: $color-white;
|
34
32
|
|
35
33
|
/*support store method of affixing*/
|
@@ -56,6 +54,9 @@ $f-primary_nav-icon-count_badge-right: -4px;
|
|
56
54
|
display: flex;
|
57
55
|
height: $f-primary_nav-main-minheight;
|
58
56
|
min-height: $f-primary_nav-main-minheight;
|
57
|
+
box-shadow: $f-primary_nav-shadow;
|
58
|
+
padding-left: 10px;
|
59
|
+
padding-right: 10px;
|
59
60
|
position: relative;
|
60
61
|
z-index: $f-primary_nav-main-zindex;
|
61
62
|
}
|
@@ -440,7 +441,7 @@ $f-primary_nav-icon-count_badge-right: -4px;
|
|
440
441
|
//everything above xs
|
441
442
|
@media (min-width: $screen-xs) {
|
442
443
|
|
443
|
-
.f-primary_nav {
|
444
|
+
.f-primary_nav-main {
|
444
445
|
padding: 0 15px;
|
445
446
|
}
|
446
447
|
|
@@ -13,7 +13,7 @@ module ForeverStyleGuide
|
|
13
13
|
"Forever Retreat", "Forever Ambassador", "Forever Ambassadors", "Forever Deal of the Day", "Forever App", "Forever Digital Art",
|
14
14
|
"Forever Digital Art Store", "Forever Founder's Club", "Forever Gift Certificate", "Forever Gift Certificates", "Forever Intro Account", "Forever Library",
|
15
15
|
"Forever Media Conversion", "Forever Mobile", "Forever Owner", "Forever Vault", "Forever Print Shop", "Forever Services",
|
16
|
-
"Forever Software", "Forever Store", "Forever Premium Video Plan", "Forever Club", "Forever Print", "Forever Historian", "Forever Valet", "Forever Live!"
|
16
|
+
"Forever Software", "Forever Store", "Forever Premium Video Plan", "Forever Club", "Forever Print", "Forever Design & Print", "Forever Historian", "Forever Valet", "Forever Live!"
|
17
17
|
copy[0..6].upcase + "®" + copy[7..copy.length-1]
|
18
18
|
when "Forever Artisan", "Forever Storage"
|
19
19
|
copy[0..6].upcase + copy[7..copy.length-1] + "®"
|
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.6.
|
4
|
+
version: 3.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicholas McClay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|