jumbo-jekyll-theme 1.4.2.15 → 1.4.2.16
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/_sass/bootstrap/_variables.scss +6 -0
- data/_sass/core/breadcrumb.scss +6 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf00108b96104af50a432fb16b6b0a181416a7f2
|
|
4
|
+
data.tar.gz: c413c1fd98d488b008dcc479d83c0557b444d818
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c3a0c307258d5be94f48831d35a1b286cc1b95d6efb15fb876fceb110b2f625229981826c6746a0cd2d5bcc1d500a506322367d9ac65a31fbcb81f025cf62e6
|
|
7
|
+
data.tar.gz: 4c72081697584e8f6385bb9d3d8e0390dda0e900261e3e814c17990b08a83bb6c955290b8b4bdc67dfadf7cb0db08c3abdfffe9ad077c298f373c4e338b0069e
|
|
@@ -46,6 +46,12 @@ $footer-bg-color: $gray-darker !default;
|
|
|
46
46
|
$footer-text-color: #fff !default;
|
|
47
47
|
$sub-footer-color: #E5E5E5 !default;
|
|
48
48
|
|
|
49
|
+
|
|
50
|
+
// Breadcrumb
|
|
51
|
+
$breadcrumb-background-color: $brand-primary !default;
|
|
52
|
+
$breadcrumb-title-color: #fff !default;
|
|
53
|
+
$breadcrumb-span-color: #fff !default;
|
|
54
|
+
|
|
49
55
|
// Nav Bar Overrides
|
|
50
56
|
$navbar-text-color: #ffffff !default;
|
|
51
57
|
|
data/_sass/core/breadcrumb.scss
CHANGED
|
@@ -59,7 +59,7 @@ ol.breadcrumb span {
|
|
|
59
59
|
letter-spacing: 1px;
|
|
60
60
|
text-transform: uppercase;
|
|
61
61
|
text-decoration: none;
|
|
62
|
-
color:
|
|
62
|
+
color: $breadcrumb-span-color;
|
|
63
63
|
opacity: .5;
|
|
64
64
|
}
|
|
65
65
|
|
|
@@ -74,8 +74,7 @@ ol.breadcrumb li span:hover {
|
|
|
74
74
|
/* Bread Crumb Container */
|
|
75
75
|
|
|
76
76
|
.breadcrumb-container{
|
|
77
|
-
background-color: $
|
|
78
|
-
background-image: none !important;
|
|
77
|
+
background-color: $breadcrumb-background-color;
|
|
79
78
|
padding-top: 5px;
|
|
80
79
|
padding-bottom: 5px;
|
|
81
80
|
}
|
|
@@ -84,6 +83,10 @@ ol.breadcrumb li span:hover {
|
|
|
84
83
|
color: #fff;
|
|
85
84
|
}
|
|
86
85
|
|
|
86
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3{
|
|
87
|
+
color: $breadcrumb-title-color;
|
|
88
|
+
}
|
|
89
|
+
|
|
87
90
|
|
|
88
91
|
|
|
89
92
|
|