linaro-jekyll-theme 0.7.9 → 0.8.0
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/_includes/_theme-includes/_footer/footer.html +2 -2
- data/_sass/core/footer.scss +8 -2
- 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: adc55ebce3f3ba48a3b82767cad6a086e4bb9bc5
|
4
|
+
data.tar.gz: b78bf2154aca4289974d3077526a7d0506214775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e4d2a8b89a144474b5dffa6b9dd37e0a583018fe6d2899c8bdce1c876aa4fc4b9a376ab0b00ba05de463883b8709de1856822a610847455c719fdbe216e664a
|
7
|
+
data.tar.gz: cc3678ed3a66783c3747a665d04ab044fa6ebbf0977b1e0e71fd6dc37ea069513f61583d98ad12157ddcb6b7f40ef8fc670640a39f20983e52107ce80cd850ab
|
@@ -31,8 +31,8 @@
|
|
31
31
|
<div class="row footer-strip">
|
32
32
|
<div class="container">
|
33
33
|
<div class="col-md-6 company-footer-bottom">
|
34
|
-
<a href="{{site.data.linaro.url}}"><img src="{{site.data.linaro.footer-logo}}"
|
35
|
-
<a
|
34
|
+
<a href="{{site.data.linaro.url}}"><img src="{{site.data.linaro.footer-logo}}" class="linaro-logo" alt="Linaro Icon"/></a>
|
35
|
+
<a>Portions of this content © 2017 <a href="{{site.data.linaro.url}}">{{site.data.linaro.name}}</a>
|
36
36
|
{% for companypage in site.data.footer.companylinks %}
|
37
37
|
<span class="coloured-bp">•</span> <a href="{{companypage.url}}">{{companypage.name}}</a>
|
38
38
|
{% endfor %}
|
data/_sass/core/footer.scss
CHANGED
@@ -99,8 +99,6 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
99
99
|
padding-left: 0px;
|
100
100
|
}
|
101
101
|
|
102
|
-
|
103
|
-
|
104
102
|
a.btn.btn-social-icon {
|
105
103
|
color: $footer-text-color;
|
106
104
|
transition: color 1s ease;
|
@@ -109,3 +107,11 @@ a.btn.btn-social-icon:hover {
|
|
109
107
|
color: $brand-primary;
|
110
108
|
transition: color 1s ease;
|
111
109
|
}
|
110
|
+
|
111
|
+
.company-footer-bottom img.linaro-logo {
|
112
|
+
width:40px;
|
113
|
+
height:100%;
|
114
|
+
}
|
115
|
+
.company-footer-bottom, .company-footer-bottom a{
|
116
|
+
color: $footer-text-color;
|
117
|
+
}
|