Skip to content

Commit 8f77b0b

Browse files
authored
Fix tool card icon sizing and missing metadata (#1217)
1 parent 7c8ffc0 commit 8f77b0b

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

docs/stylesheets/custom.css

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,16 +326,21 @@ nav.md-nav--primary .md-nav__item--section>.md-nav__link {
326326
}
327327

328328
.tool-card-image-wrapper {
329-
width: 70px;
330-
height: auto;
329+
width: 64px;
330+
height: 64px;
331+
display: flex;
332+
align-items: center;
333+
justify-content: center;
331334
background-color: transparent;
332335
padding: 0.5rem;
333336
box-sizing: border-box;
334337
flex-shrink: 0;
335338
}
336339

337340
.tool-card-image-wrapper img {
338-
width: 100%;
341+
max-width: 100%;
342+
max-height: 100%;
343+
width: auto;
339344
height: auto;
340345
object-fit: contain;
341346
}

docs/tools/third-party/ag-ui.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
catalog_title: AG-UI
3-
catalog_description: Build rich user experiences with CopilotKit and other clients
3+
catalog_description: Build interactive chat UIs with streaming, state sync, and agentic actions
4+
catalog_icon: /adk-docs/assets/tools-ag-ui.png
45
---
56

67
# Build chat experiences with AG-UI and CopilotKit

docs/tools/third-party/mongodb.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
catalog_title: MongoDB
3+
catalog_description: Query collections, manage databases, and analyze schemas
4+
catalog_icon: /adk-docs/assets/tools-mongodb.png
5+
---
6+
17
# MongoDB
28

39
<div class="language-support-tag">

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ plugins:
139139
j2_variable_end_string: '$}}'
140140
# alternative to {# #}
141141
j2_comment_start_string: '{{#'
142-
j2_comment_end_string: '#}}'
142+
j2_comment_end_string: '#}}'
143143
- redirects:
144144
redirect_maps:
145145
'get-started/local-testing.md': 'runtime/api-server.md'
@@ -266,6 +266,7 @@ nav:
266266
- Vertex AI express mode: tools/google-cloud/express-mode.md
267267
- Third-party tools:
268268
- tools/third-party/index.md
269+
- Agentic UI (AG-UI): tools/third-party/ag-ui.md
269270
- Asana: tools/third-party/asana.md
270271
- Atlassian: tools/third-party/atlassian.md
271272
- Cartesia: tools/third-party/cartesia.md
@@ -283,7 +284,6 @@ nav:
283284
- PayPal: tools/third-party/paypal.md
284285
- Qdrant: tools/third-party/qdrant.md
285286
- Stripe: tools/third-party/stripe.md
286-
- Agentic UI (AG-UI): tools/third-party/ag-ui.md
287287
- Tool limitations: tools/limitations.md
288288
- Custom Tools:
289289
- tools-custom/index.md

0 commit comments

Comments
 (0)