mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 19:25:51 +00:00
Add support for paragraphs being clicked
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -40,6 +40,10 @@
|
||||
.dev-tools-img {
|
||||
content:url(../../img/graphics/dev-tools-light.svg)
|
||||
}
|
||||
|
||||
.dev-tools-link:hover p {
|
||||
color: #000
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
@@ -71,6 +75,10 @@
|
||||
.connections-illustration {
|
||||
content:url(../../img/graphics/nodes-dark.png)
|
||||
}
|
||||
|
||||
.dev-tools-link:hover p {
|
||||
color: #E0E0E1;
|
||||
}
|
||||
}
|
||||
|
||||
.quickstart-image {
|
||||
@@ -98,7 +106,7 @@
|
||||
|
||||
.page-docs-index {
|
||||
|
||||
.dev-tools-links {
|
||||
.dev-tools-link {
|
||||
h6::before {
|
||||
margin-top: -20px;
|
||||
height: 20px;
|
||||
@@ -110,12 +118,13 @@
|
||||
background: none!important;
|
||||
}
|
||||
|
||||
p:hover {
|
||||
&:hover p {
|
||||
text-decoration: none !important;
|
||||
background: none !important;
|
||||
display: inline-block; // Inline blocks don't have underlines
|
||||
}
|
||||
|
||||
a:hover{
|
||||
a:hover {
|
||||
color:#9A52FF;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
@@ -78,12 +78,10 @@
|
||||
{% endmacro %}
|
||||
|
||||
{% macro devToolsCard(link, title, description) %}
|
||||
<div class="col dev-tools-links">
|
||||
<a href="{{ link }}">
|
||||
<a href="{{ link }}" class="col dev-tools-link">
|
||||
<h6 class="btn-arrow">{{ title }}</h6>
|
||||
<p class="no-underline"> {{ description }}</p>
|
||||
</a>
|
||||
<p> {{ description }}</p>
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user