Skip to content
Open
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
Binary file modified build/ui-bundle.zip
Binary file not shown.
79 changes: 79 additions & 0 deletions src/css/doc.css
Original file line number Diff line number Diff line change
Expand Up @@ -965,3 +965,82 @@ h1.page + aside.toc.embedded {
display: block !important;
}
}

.tooltip {
position: relative;
cursor: pointer;
}

/* Tooltip CSS */
.tooltip::after {
content: attr(data-tooltip);
position: absolute;
white-space: nowrap;
background-color: #333;
color: white;
padding: 4px 8px;
border-radius: 4px;
opacity: 0;
transition: opacity 0.5s;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
}

.tooltip:hover::after {
opacity: 1;
}

/* next button CSS */
.next-button {
padding: 10px 20px;
background-color: blue;
color: white;
text-decoration: none;
border-radius: 5px;
display: right;
}

.next-button:hover {
background-color: #0056b3;
}

.back-button {
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}

.back-button:hover {
background-color: #0056b3;
}

.overview-button {
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}

.overview-button:hover {
background-color: #0056b3;
}

/* experimenting with cloud images */
.cloud-image {
display: block !important;
margin-left: auto !important;
margin-right: auto !important;
height: auto;
width: 40%;
max-width: 100%;
vertical-align: middle;
border-radius: 1.5rem;
border-style: solid;
}
10 changes: 9 additions & 1 deletion src/partials/nav-explore.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<div class="dropdown-category">
<a class="category-item" href="{{relativize site.components.cloud.url}}">{{site.components.cloud.title}}</a>
<a class="category-item" href="https://docs.tigergraph.com/cloud/start/get_started">Get Started</a>
<div style="display: flex; align-items: center;">
<a class="category-item" href="https://staging--docs-tigergraph.netlify.app/cloudbeta/overview/">{{site.components.cloudBeta.title}}</a>
<span style="font-weight: 400; top: -2px; position: relative; margin-left: 8px; color: rgb(255, 255, 254); padding: 2px 4px; font-size: 10px; border-radius: 2px; background-color: rgb(255, 109, 0);">New</span>
</div>
</div>

<div class="home-left-nav-title" style="font-weight: bold;">TigerGraph Suite</div>
Expand All @@ -38,8 +42,12 @@
<a class="category-item" href="{{relativize site.components.ml-workbench.url}}">ML Workbench</a>
</div>

<div class="home-left-nav-title" style="font-weight: bold;">Connectors and APIs</div>
<div class="home-left-nav-title" style="font-weight: bold;">Graph + AI</div>
<div class="dropdown-category">
<div style="display: flex; align-items: center;">
<a class="category-item" href="https://staging--docs-tigergraph.netlify.app/tg-copilot/current/intro/">TigerGraph CoPilot</a>
<span style="font-weight: 400; top: -2px; position: relative; margin-left: 8px; color: rgb(255, 255, 254); padding: 2px 4px; font-size: 10px; border-radius: 2px; background-color: rgb(255, 109, 0);">New</span>
</div>
<a class="category-item" href="{{relativize site.components.pytigergraph.url}}">pyTigerGraph</a>
<a class="category-item" href="{{relativize site.components.graphql.url}}">GraphQL Service</a>
<a class="category-item" href="https://github.com/tigergraph/ecosys/tree/master/tools/etl/tg-jdbc-driver">JDBC Driver</a>
Expand Down