Skip to content

Commit 72755fc

Browse files
authored
Improve how-to indexing and titles (#567)
1 parent c360b5b commit 72755fc

File tree

12 files changed

+25
-24
lines changed

12 files changed

+25
-24
lines changed

doc/how_to/bokeh_holoviews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bokeh, hvPlot, and HoloViews
1+
# Theme Bokeh, hvPlot, and HoloViews
22

33
Panel Material UI has integrated theming support for Bokeh, hvPlot, and HoloViews. This means that the plots will automatically adapt to the active theme, including respecting the primary color, the font family, and toggling between dark and light mode.
44

doc/how_to/branding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How to Brand Your Panel Material-UI Application
1+
# Apply Branding
22

33
This guide demonstrates how to create a cohesive brand experience in your Panel Material-UI applications using the "Orbitron" brand example. You'll learn how to structure your brand assets, configure consistent theming, and apply your brand across all components.
44

doc/how_to/color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Color
1+
# Pick Colors
22

33
Convey meaning through color. By default, `panel-material-ui` provides access to the [Material Design color system](https://m2.material.io/design/color/the-color-system.html#color-usage-and-palettes), allowing you to choose from a broad set of hues and shade combinations.
44

doc/how_to/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Themed Components
1+
# Theme Components
22

33
You can customize `panel-material-ui` components—changing default props, styles, or adding new variants—by defining a `components` key within your `theme_config`. This approach is ideal for ensuring a consistent look and feel across your entire application. If your customizations are extensive, however, consider creating new component classes for maintainability.
44

doc/how_to/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Custom Components
1+
# Build Custom Components
22

33
The `panel-material-ui` package ships with a number of custom Material UI components that are built on top of the Material UI library. However, in some cases, you may need to create your own custom components.
44

doc/how_to/customize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How to Customize
1+
# Customize Themes & Styles
22

33
Customization of Panel Mui components inherits all the benefits of having a consistent design language that Mui provides. Styling can be applied using the `sx` parameter, while theming is achieved through the inheritable `theme_config`. Let us walk through these two different approaches through a series of examples.
44

doc/how_to/dark_mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dark Mode
1+
# Control Dark Mode
22

33
The `panel-material-ui` components automatically integrate with Panel’s dark mode configuration and allow you to force dark mode by setting `dark_theme=True` at the component level or in your Panel extension.
44

doc/how_to/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Icons
1+
# Use Icons
22

33
**panel-material-ui** ships with the Material UI icon library. This means that you can use any of the icons defined in the [Material UI icon library](https://mui.com/material-ui/material-icons/) by default and also include them in `Markdown` and `HTML` components.
44

doc/how_to/index.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ Welcome to the **Panel Material UI** how-to guides. These guides walk you throug
1212
::::{grid} 1 2 2 3
1313
:gutter: 1 1 1 2
1414

15-
:::{grid-item-card} {octicon}`tools;2.5em;sd-mr-1` How to Customize
15+
:::{grid-item-card} {octicon}`tools;2.5em;sd-mr-1` Customize Themes & Styles
1616
:link: customize
1717
:link-type: doc
1818

1919
Explore the fundamentals of customizing **panel-material-ui** components. Learn one-off styling with `sx`, overriding nested elements, global CSS overrides, and theme inheritance.
2020

2121
+++
22-
[Learn more »](how_to_customize)
22+
[Learn more »](customize)
2323
:::
2424

25-
:::{grid-item-card} {octicon}`list-unordered;2.5em;sd-mr-1` Palette
25+
:::{grid-item-card} {octicon}`list-unordered;2.5em;sd-mr-1` Configure Color Palettes
2626
:link: palette
2727
:link-type: doc
2828

@@ -32,7 +32,7 @@ Customize the default primary, secondary, and intent-based colors. Set up advanc
3232
[Learn more »](palette)
3333
:::
3434

35-
:::{grid-item-card} {octicon}`typography;2.5em;sd-mr-1` Typography
35+
:::{grid-item-card} {octicon}`typography;2.5em;sd-mr-1` Configure Typography
3636
:link: typography
3737
:link-type: doc
3838

@@ -42,17 +42,17 @@ Learn how to customize fonts, sizes, and text styles.
4242
[Learn more »](typography)
4343
:::
4444

45-
:::{grid-item-card} {octicon}`apps;2.5em;sd-mr-1` Themed Components
45+
:::{grid-item-card} {octicon}`apps;2.5em;sd-mr-1` Theme Components
4646
:link: components
4747
:link-type: doc
4848

49-
Customize components changing default props, styles, or adding new variants—by defining a `components` key within your `theme_config`..
49+
Customize components changing default props, styles, or adding new variants—by defining a `components` key within your `theme_config`.
5050

5151
+++
5252
[Learn more »](components)
5353
:::
5454

55-
:::{grid-item-card} {octicon}`moon;2.5em;sd-mr-1` Dark Mode
55+
:::{grid-item-card} {octicon}`moon;2.5em;sd-mr-1` Control Dark Mode
5656
:link: dark_mode
5757
:link-type: doc
5858

@@ -62,7 +62,7 @@ Seamlessly toggle between light and dark palettes, or enforce one mode across yo
6262
[Learn more »](dark_mode)
6363
:::
6464

65-
:::{grid-item-card} {octicon}`paintbrush;2.5em;sd-mr-1` Color
65+
:::{grid-item-card} {octicon}`paintbrush;2.5em;sd-mr-1` Pick Colors
6666
:link: color
6767
:link-type: doc
6868

@@ -72,7 +72,7 @@ Dive into the Material Design color system. Create harmonious palettes, pick acc
7272
[Learn more »](color)
7373
:::
7474

75-
:::{grid-item-card} {octicon}`image;2.5em;sd-mr-1` Icons
75+
:::{grid-item-card} {octicon}`image;2.5em;sd-mr-1` Use Icons
7676
:link: icons
7777
:link-type: doc
7878

@@ -82,24 +82,24 @@ Learn how to use icons in **panel-material-ui**.
8282
[Learn more »](icons)
8383
:::
8484

85-
:::{grid-item-card} {octicon}`code;2.5em;sd-mr-1` Custom Components
85+
:::{grid-item-card} {octicon}`code;2.5em;sd-mr-1` Build Custom Components
8686
:link: custom
8787
:link-type: doc
8888

8989
Learn how to build custom components extending **panel-material-ui**.
9090

9191
+++
92-
[Learn more »](branding)
92+
[Learn more »](custom)
9393
:::
9494

95-
:::{grid-item-card} {octicon}`paintbrush;2.5em;sd-mr-1` Branding
95+
:::{grid-item-card} {octicon}`paintbrush;2.5em;sd-mr-1` Apply Branding
9696
:link: branding
9797
:link-type: doc
9898

9999
Learn how to brand your **panel-material-ui** apps.
100100

101101
+++
102-
[Learn more »](custom)
102+
[Learn more »](branding)
103103
:::
104104

105105
::::
@@ -151,6 +151,7 @@ components
151151
dark_mode
152152
color
153153
icons
154+
custom
154155
branding
155156
bokeh_holoviews
156157
plotly

doc/how_to/palette.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Palette
1+
# Customize Color Palettes
22

33
The `panel-material-ui` palette system allows you to customize component colors to suit your brand. Colors are grouped into default categories (primary, secondary, error, warning, info, success) or custom categories that you define yourself.
44

0 commit comments

Comments
 (0)