Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6e73228
Reorganize Classic UI Theming part
stevepiercy Jan 6, 2025
5e385ef
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 7, 2025
33b2cda
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 8, 2025
411d24b
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 10, 2025
617c992
Update docs/classic-ui/theming/settings-ttw.md
stevepiercy Jan 13, 2025
08cda10
Update settings-ttw.md
stevepiercy Jan 13, 2025
e3c9991
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 14, 2025
4681670
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 22, 2025
dc866fe
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 26, 2025
1e96d97
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 28, 2025
c62d07b
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Jan 28, 2025
c6e503e
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 8, 2025
1a4ab10
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 10, 2025
5128263
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 13, 2025
717bc7c
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 16, 2025
8fb80bf
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 17, 2025
edf6d69
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 17, 2025
37b276d
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 24, 2025
b6a6f4b
Fix broken link
stevepiercy Feb 24, 2025
7a36239
Merge branch '6.0' into classic-ui-theming-reorg-1645
stevepiercy Feb 25, 2025
95aeba3
Add guide for choosing one Classic UI theme or another, thanks to @je…
stevepiercy Feb 25, 2025
9747612
Provide the content for the Diazo theming part (#1870)
erral Feb 26, 2025
b0237f6
Fix broken link
stevepiercy Feb 26, 2025
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
1 change: 0 additions & 1 deletion docs/backend/schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ This schema can be used in {doc}`/classic-ui/forms` and Dexterity {doc}`/backend

```{note}
In Dexterity {doc}`/backend/content-types/index`, the base class for a schema is `plone.supermodel.model.Schema`.
This provides functionalities to export and import schemas via XML and the {doc}` Through-the-web (TTW) </classic-ui/theming/through-the-web>` editor.
```


Expand Down
347 changes: 0 additions & 347 deletions docs/classic-ui/theming/barceloneta.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ myst:
"keywords": "Plone, Classic UI, theming, color modes, Bootstrap, Twitter"
---

(color-modes-label)=
(classic-ui-theming-color-modes-label)=

# Color modes

Expand All @@ -24,8 +24,8 @@ This chapter is a guide for how to implement color modes in Plone 6.
## Preferred color modes

You will need to add some JavaScript functionality to set the Bootstrap theme to the user's preferred color scheme.
Add the JavaScript file to the `browser/static` folder of your Plone 6 project.
Register it in the `browser/profiles/default/registry` of your Plone 6 project.
Add the JavaScript file to the {file}`browser/static` folder of your Plone 6 project.
Register it in the {file}`browser/profiles/default/registry` of your Plone 6 project.
See {ref}`classic-ui-static-resources-registering-label` for more information.

```js
Expand Down Expand Up @@ -75,8 +75,8 @@ If you want to add a theme toggler to your site, you can use the following examp
You will need to add some JavaScript functionality to the toggler.
The following code snippet is based on the [Bootstrap 5.3 documentation](https://getbootstrap.com/docs/5.3/customize/color-modes/#javascript).

Add the JavaScript file to the `browser/static` folder of your Plone 6 project.
Register it in the `browser/profiles/default/registry` of your Plone 6 project.
Add the JavaScript file to the {file}`browser/static` folder of your Plone 6 project.
Register it in the {file}`browser/profiles/default/registry` of your Plone 6 project.
See {ref}`classic-ui-static-resources-registering-label` for more information.

```js
Expand Down
Loading