Skip to content

Commit 727c947

Browse files
Joseph NewmanJoseph Newman
Joseph Newman
authored and
Joseph Newman
committed
cloudUpdates
1 parent 7a0fd55 commit 727c947

File tree

3 files changed

+65
-6
lines changed

3 files changed

+65
-6
lines changed

build/ui-bundle.zip

325 Bytes
Binary file not shown.

src/css/doc.css

+54-5
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,7 @@ h1.page + aside.toc.embedded {
966966
}
967967
}
968968

969-
.tooltip {
970-
position: relative;
971-
cursor: pointer;
972-
}
973-
969+
/* Tooltip CSS */
974970
.tooltip::after {
975971
content: attr(data-tooltip);
976972
position: absolute;
@@ -990,3 +986,56 @@ h1.page + aside.toc.embedded {
990986
.tooltip:hover::after {
991987
opacity: 1;
992988
}
989+
990+
/* next button CSS */
991+
.next-button {
992+
padding: 10px 20px;
993+
background-color: blue;
994+
color: white;
995+
text-decoration: none;
996+
border-radius: 5px;
997+
display: right;
998+
}
999+
1000+
.next-button:hover {
1001+
background-color: #0056b3;
1002+
}
1003+
1004+
.back-button {
1005+
padding: 10px 20px;
1006+
background-color: #007bff;
1007+
color: white;
1008+
text-decoration: none;
1009+
border-radius: 5px;
1010+
display: inline-block;
1011+
}
1012+
1013+
.back-button:hover {
1014+
background-color: #0056b3;
1015+
}
1016+
1017+
.overview-button {
1018+
padding: 10px 20px;
1019+
background-color: #007bff;
1020+
color: white;
1021+
text-decoration: none;
1022+
border-radius: 5px;
1023+
display: inline-block;
1024+
}
1025+
1026+
.overview-button:hover {
1027+
background-color: #0056b3;
1028+
}
1029+
1030+
/* experimenting with cloud images */
1031+
.cloud-image {
1032+
display: block !important;
1033+
margin-left: auto !important;
1034+
margin-right: auto !important;
1035+
height: auto;
1036+
width: 40%;
1037+
max-width: 100%;
1038+
vertical-align: middle;
1039+
border-radius: 1.5rem;
1040+
border-style: solid;
1041+
}

src/partials/nav-explore.hbs

+11-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
<div class="dropdown-category">
1818
<a class="category-item" href="{{relativize site.components.cloud.url}}">{{site.components.cloud.title}}</a>
1919
<a class="category-item" href="https://docs.tigergraph.com/cloud/start/get_started">Get Started</a>
20+
{{!-- Below is code for the cloudbeta--}}
21+
<div style="display: flex; align-items: center;">
22+
<a class="category-item" href="https://docs.tigergraph.com/cloudbeta/overview/">{{site.components.cloudBeta.title}}</a>
23+
<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>
24+
</div>
2025
</div>
2126

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

41-
<div class="home-left-nav-title" style="font-weight: bold;">Connectors and APIs</div>
46+
<div class="home-left-nav-title" style="font-weight: bold;">Graph + AI</div>
4247
<div class="dropdown-category">
48+
{{!-- Below is code for the CoPilot--}}
49+
<div style="display: flex; align-items: center;">
50+
<a class="category-item" href="https://docs.tigergraph.com/tg-copilot/current/intro/">TigerGraph CoPilot</a>
51+
<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>
52+
</div>
4353
<a class="category-item" href="{{relativize site.components.pytigergraph.url}}">pyTigerGraph</a>
4454
<a class="category-item" href="{{relativize site.components.graphql.url}}">GraphQL Service</a>
4555
<a class="category-item" href="https://github.com/tigergraph/ecosys/tree/master/tools/etl/tg-jdbc-driver">JDBC Driver</a>

0 commit comments

Comments
 (0)