Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions preview-src/docs-ndl.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ image:icons/ndl/deployment-options.svg[]
[.description]
Choose from self-managed local and cloud deployments, or fully-managed options.

[.link]
[.link.display]
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MarkWoulfeNeo4j if we merge this change, then you'll need to update GTM with this new subclass of links in cards in the homepage, I think

link:https://www.neo4j.com/docs/deployment-options[Get a Neo4j instance]

=== Cypher
Expand All @@ -47,7 +47,7 @@ image:icons/ndl/cypher-manual.svg[]
[.description]
Learn how to write Cypher, Neo4j's declarative query language.

[.link]
[.link.display]
link:https://www.neo4j.com/docs/cypher-manual/[Query your data]

=== Neo4j Tools
Expand All @@ -58,7 +58,7 @@ image:icons/ndl/neo4j-tools.svg[]
[.description]
Use Neo4j's tools to explore, visualize, manage, monitor, and import data to your graph.

[.link]
[.link.display]
link:https://www.neo4j.com/docs/tools[Discover the products]

=== Graph Data Science
Expand All @@ -69,7 +69,7 @@ image:icons/ndl/data-science.svg[]
[.description]
Run graph algorithms and machine learning models to analyze your data at scale.

[.link]
[.link.display]
xref:gds:index.adoc[Unlock insights from data]

=== Create applications
Expand All @@ -80,7 +80,7 @@ image:icons/ndl/create-applications.svg[]
[.description]
Discover the client libraries and APIs to develop applications with Neo4j and AuraDB.

[.link]
[.link.display]
xref:create-applications:index.adoc[Start developing]

=== Connect data sources
Expand All @@ -91,7 +91,7 @@ image:icons/ndl/connectors.svg[]
[.description]
Learn how to use connectors and other tools to connect Neo4j with other data sources.

[.link]
[.link.display]
xref:connectors:index.adoc[Connect to Neo4j]


Expand Down
6 changes: 5 additions & 1 deletion src/css/docs-ndl.css
Original file line number Diff line number Diff line change
Expand Up @@ -825,10 +825,14 @@ body.docs-ndl .cards .sect2 .paragraph:not(.icon) {
/* flex-grow: 1; */
}

body.docs-ndl .cards .sect2.selectable .paragraph.link {
body.docs-ndl .cards .sect2.selectable .paragraph.link:not(.display) {
display: none;
}

body.docs-ndl .cards .sect2.selectable .paragraph.link.display {
display: flex;
}

body.docs-ndl .cards.selectable .sect2 .paragraph.link,
body.docs-ndl .cards:not(.selectable) .sect2 .paragraph.link {
box-sizing: border-box;
Expand Down
Loading