Merge pull request #1811 from umbraco/chore/experimental-themes
Mark themes as experimental
This commit is contained in:
@@ -16,14 +16,14 @@ export const themes: Array<ManifestGlobalContext | ManifestTheme> = [
|
||||
{
|
||||
type: 'theme',
|
||||
alias: 'umb-dark-theme',
|
||||
name: 'Dark',
|
||||
name: 'Dark (Experimental)',
|
||||
css: '/umbraco/backoffice/css/dark.theme.css',
|
||||
weight: 200,
|
||||
},
|
||||
{
|
||||
type: 'theme',
|
||||
alias: 'umb-high-contrast-theme',
|
||||
name: 'High contrast',
|
||||
name: 'High contrast (Experimental)',
|
||||
css: '/umbraco/backoffice/css/high-contrast.theme.css',
|
||||
weight: 100,
|
||||
},
|
||||
|
||||
@@ -48,7 +48,7 @@ export class UmbCurrentUserThemeUserProfileAppElement extends UmbLitElement {
|
||||
render() {
|
||||
if (!this._themes.length) return nothing;
|
||||
return html`
|
||||
<uui-box headline="Select theme">
|
||||
<uui-box headline="Theme (Experimental)">
|
||||
<uui-select label="Select theme" .options=${this._themes} @change=${this.#onThemeChange}></uui-select>
|
||||
</uui-box>
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user