Skip to content

Commit e61fb68

Browse files
authored
Merge pull request #405 from JuliaDataCubes/la/menu_ecosystem
ecosystem plus some css
2 parents 4aaa7cb + e6a679b commit e61fb68

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

docs/src/.vitepress/config.mts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,16 @@ export default defineConfig({
7070
{ text: 'Other Tutorials', link: '/tutorials/other_tutorials' },
7171
]
7272
},
73+
{ text: 'Ecosystem',
74+
items: [
75+
{ text: 'DimensionalData.jl', link: 'https://rafaqz.github.io/DimensionalData.jl/dev/' },
76+
{ text: 'NetCDF.jl', link: 'https://juliageo.org/NetCDF.jl/stable/'},
77+
{ text: 'Zarr.jl', link: 'https://juliaio.github.io/Zarr.jl/latest/'},
78+
{ text: 'ArchGDAL.jl', link: 'https://yeesian.com/ArchGDAL.jl/stable/' },
79+
{ text: 'GeoMakie.jl', link: 'https://geo.makie.org/dev/' },
80+
{ text: 'Makie.jl', link: 'https://docs.makie.org/dev/' },
81+
]
82+
},
7383
{
7484
text: 'Development',
7585
items: [

docs/src/.vitepress/theme/style.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,37 @@ mjx-container > svg {
197197
--vp-c-brand-3: #ff875f;
198198
--vp-c-sponsor: #ff875f;
199199
--vitest-c-sponsor-hover: #e51370;
200+
}
201+
202+
.VPDoc.has-aside .content-container {
203+
max-width: 100% !important;
204+
}
205+
.aside {
206+
max-width: 200px !important;
207+
padding-left: 0 !important;
208+
}
209+
.VPDoc {
210+
padding-top: 15px !important;
211+
padding-left: 5px !important;
212+
213+
}
214+
/* This one does the right menu */
215+
216+
.VPDocOutlineItem li {
217+
text-overflow: ellipsis;
218+
overflow: hidden;
219+
white-space: nowrap;
220+
max-width: 200px;
221+
}
222+
223+
.VPNavBar .title {
224+
text-overflow: ellipsis;
225+
overflow: hidden;
226+
white-space: nowrap;
227+
}
228+
229+
@media (max-width: 960px) {
230+
.VPDoc {
231+
padding-left: 25px !important;
232+
}
200233
}

0 commit comments

Comments
 (0)