mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-24 18:52:55 +01:00
external icon
This commit is contained in:
parent
4e7050f181
commit
9e2e292c2c
6
_src/_assets/images/icon-arrowout.svg
Normal file
6
_src/_assets/images/icon-arrowout.svg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" viewBox="0 0 17 16">
|
||||||
|
<g fill="none" stroke="#fff" stroke-width="2" stroke-opacity=".6" transform="translate(0 -4)">
|
||||||
|
<polyline points="19.585 4.069 12.542 11.147 5.464 4.069" transform="rotate(-135 12.525 7.608)"/>
|
||||||
|
<path d="M14,6 L1,19"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 325 B |
@ -39,3 +39,7 @@
|
|||||||
stroke-width: 2px;
|
stroke-width: 2px;
|
||||||
stroke: currentColor;
|
stroke: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon--external {
|
||||||
|
stroke: currentColor;
|
||||||
|
}
|
||||||
|
@ -90,6 +90,24 @@ a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// External links
|
||||||
|
.dropdown,
|
||||||
|
.content--page {
|
||||||
|
[rel='external'],
|
||||||
|
[target='_blank'] {
|
||||||
|
&:after {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
width: 9px;
|
||||||
|
height: 8px;
|
||||||
|
background: url('../img/icon-arrowout.svg') no-repeat center center;
|
||||||
|
background-size: contain;
|
||||||
|
transition: .15s ease-out;
|
||||||
|
margin-left: $spacer / 6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Headings
|
// Headings
|
||||||
|
@ -11,6 +11,7 @@ main:
|
|||||||
url: /developers/guide/
|
url: /developers/guide/
|
||||||
- title: Docs
|
- title: Docs
|
||||||
url: https://docs.bigchaindb.com/
|
url: https://docs.bigchaindb.com/
|
||||||
|
external: true
|
||||||
- title: Services
|
- title: Services
|
||||||
url: /services/
|
url: /services/
|
||||||
|
|
||||||
|
@ -41,7 +41,9 @@
|
|||||||
{% if page.url contains item.url %}
|
{% if page.url contains item.url %}
|
||||||
{% assign active = 'active' %}
|
{% assign active = 'active' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a class="dropdown-item {{ active }}" href="{{ item.url }}">{{ item.title }}</a>
|
<a class="dropdown-item {{ active }}" href="{{ item.url }}" {% if item.external %}rel="external"{% endif %}>
|
||||||
|
{{ item.title }}
|
||||||
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user