Template:Box: Difference between revisions
No edit summary |
Use variable colors by default |
||
Line 1: | Line 1: | ||
<div style="box-shadow: 0 0 0.2em #999999; border-radius: 0.2em; margin: 0.5em 0.5em 1em 0.5em; background: {{{background-content-color| | <div style="box-shadow: 0 0 0.2em #999999; border-radius: 0.2em; margin: 0.5em 0.5em 1em 0.5em; background: {{{background-content-color|var(--background-color-base)}}}; {{{style|}}};"> | ||
<!-- Title Box --> | <!-- Title Box --> | ||
<div style="background: {{{background-title-color| | <div style="background: {{{background-title-color|var(--background-color-neutral)}}}; border-radius: 0.2em 0.2em 0 0; padding: 0.5em 1em 0.5em 1em; display: flex; align-items: center; {{#if:{{{center|}}}|justify-content: space-between;}}"> | ||
<!-- Icon --> | <!-- Icon --> | ||
{{#if:{{{icon|}}}|<span style="opacity: 0.8; display: flex; align-items: center; margin-right: 0.5em; line-height: 50pxm;">[[File:{{{icon}}}|50px|left|link=|alt=]]</span> }} | {{#if:{{{icon|}}}|<span style="opacity: 0.8; display: flex; align-items: center; margin-right: 0.5em; line-height: 50pxm;">[[File:{{{icon}}}|50px|left|link=|alt=]]</span> }} | ||
<!-- Title --> | <!-- Title --> | ||
<div style="color: {{{title-color| | <div style="color: {{{title-color|var(--color-base)}}}; font-weight: bold; line-height: 50px;"><big>{{{title}}}</big></div> | ||
<!-- Link --> | <!-- Link --> | ||
{{#if:{{{link|}}}|<div style="float: right; font-size: 0.7em;">[[{{{link}}}|<span style="color: {{{link-color|{{{title-color| | {{#if:{{{link|}}}|<div style="float: right; font-size: 0.7em;">[[{{{link}}}|<span style="color: {{{link-color|{{{title-color|var(--color-progressive)}}}}}};">{{{Link-text|{{{link-text|Link}}}}}}</span>]]</div>}} | ||
<!-- Trailing Icon --> | <!-- Trailing Icon --> | ||
{{#if:{{{trailing-icon|}}}|<span style="opacity: 0.8; display: flex; align-items: center; margin-left: 0.5em; line-height: 50px;">[[File:{{{trailing-icon}}}|50px|left|link=|alt=]]</span> }} | {{#if:{{{trailing-icon|}}}|<span style="opacity: 0.8; display: flex; align-items: center; margin-left: 0.5em; line-height: 50px;">[[File:{{{trailing-icon}}}|50px|left|link=|alt=]]</span> }} | ||
</div> | </div> | ||
<!-- Content Box --> | <!-- Content Box --> | ||
<div style="padding: 1em; padding-left: 1em;"> | <div style="padding: 1em; padding-left: 1em; color: var(--color-base);"> | ||
<!---->{{{content}}}{{clr}} | <!---->{{{content}}}{{clr}} | ||
</div> | </div> | ||
Line 49: | Line 49: | ||
"title-color": { | "title-color": { | ||
"label": "Title color", | "label": "Title color", | ||
"description": " | "description": "CSS color of the title text.", | ||
"example": "#339966", | "example": "#339966", | ||
"type": "string", | "type": "string", | ||
"default": " | "default": "var(--color-base)" | ||
}, | }, | ||
"style": { | "style": { | ||
Line 61: | Line 61: | ||
"link-color": { | "link-color": { | ||
"label": "Link color", | "label": "Link color", | ||
"description": " | "description": "CSS color of the 'Edit' link.", | ||
"example": "#339966", | "example": "#339966", | ||
"type": "string", | "type": "string", | ||
"default": " | "default": "var(--color-progressive)" | ||
}, | }, | ||
"background-title-color": { | "background-title-color": { | ||
"label": "Title background color", | "label": "Title background color", | ||
"description": " | "description": "CSS color of the title bar background.", | ||
"example": "#447FF5", | "example": "#447FF5", | ||
"type": "string", | "type": "string", | ||
"default": " | "default": "var(--background-color-base)", | ||
"suggested": true | "suggested": true | ||
}, | }, | ||
"background-content-color": { | "background-content-color": { | ||
"label": "Content background color", | "label": "Content background color", | ||
"description": " | "description": "CSS color of the box content background.", | ||
"example": "#339966", | "example": "#339966", | ||
"type": "string", | "type": "string", | ||
"default": " | "default": "var(--background-color-base)" | ||
}, | }, | ||
"Link-text": { | "Link-text": { |
Revision as of 06:39, 23 January 2025
The box template allows you to highlight something with a coloured box.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Title | title | Title of the box.
| String | required |
Content | content | Content of the box.
| Content | required |
Link | link | Wikipedia page title for editing the content.
| Page name | suggested |
Title background color | background-title-color | CSS color of the title bar background.
| String | suggested |
Icon | icon | Name of an icon file.
| File | optional |
Trailing Icon | trailing-icon | An icon to display after, rather than before, the title. | File | optional |
Title color | title-color | CSS color of the title text.
| String | optional |
Style | style | Additional CSS style for the container. | String | optional |
Link color | link-color | CSS color of the 'Edit' link.
| String | optional |
Content background color | background-content-color | CSS color of the box content background.
| String | optional |
Link-text | Link-text | Default title: edit, can be changed
| Unknown | optional |
background-color | background-color | no description | Unknown | optional |
Title background color on hover | background-title-color-hover | When hovering with the mouse, changes the background color of the title.
| Unknown | optional |
title-color-hover | title-color-hover | no description | Unknown | optional |
Flex | flex | Integration into the dynamic column/row grid. The first number indicates the proportion at which the box can expand, the second indicates the proportion at which it can shrink, the third indicates the minimum width in px/em of the box
| String | optional |
Center title | center | If specified, it allows centering the title. | Unknown | optional |