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
2 changes: 1 addition & 1 deletion data/menu/more.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ more:
- name: TrueNAS Connect
ref: "https://connect.truenas.com/"
external: true
icon: "gdoc_arrow_right_alt"
icon: ""
- name: TrueNAS API Docs
ref: "https://api.truenas.com/"
external: true
Expand Down
14 changes: 13 additions & 1 deletion static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2696,7 +2696,9 @@ pre.gdoc-mermaid.mermaid.mermaid_sizing {
text-decoration: none !important;
margin: -.5em !important;
transition: all 0.3s ease !important;
width: auto !important;
width: 75% !important;
min-height: 40px !important;
box-sizing: border-box !important;
}

/* Remove styling from the inner link since parent span is now the button */
Expand Down Expand Up @@ -2746,6 +2748,16 @@ pre.gdoc-mermaid.mermaid.mermaid_sizing {
fill: white !important;
}

/* Style the TrueNAS Connect button (nth-child(2)) - no icon, but same dimensions */
.gdoc-nav section:last-child .gdoc-nav__list li:nth-child(2) svg.gdoc-icon {
display: none !important; /* Hide any empty icon elements */
}

/* Ensure Connect button text is properly centered without icon */
.gdoc-nav section:last-child .gdoc-nav__list li:nth-child(2) span.flex {
gap: 0 !important; /* Remove any gap since there's no icon */
}

/* Reorder the menu items - move Apps Market to the very top */
.gdoc-nav section:last-child .gdoc-nav__list {
display: flex !important;
Expand Down