Template:Beta

From Official Kodi Wiki
Jump to navigation Jump to search
Beta
[edit] Template documentation
Emblem-important-yellow.png NOTICE: This is a documentation subpage for Template:Beta:
It contains usage information, categories and other content that is not part of the original template page.

The {{Beta}} template creates a table cell with a light blue background and black, larger heavy text which defaults to the word 'Beta', as seen above. It is designed to generate a uniform appearance for common cell values in feature and comparison tables with minimal effort, alongside similar templates like these (each a link to its own template page):

Usage

The template will only function properly when used inside of the standard wikicode for tables, following the pipe character(s) which indicate the start of a new table cell. In practice, it looks like this when editing and then when parsed:

 {| class="wikitable"
  ! scope="col" | Feature development stage
  ! scope="col" | Targeted for next major release?
  |-
  | {{Beta}}
  | {{Yes}}
  |}

Feature development stage Targeted for next major release?
Beta Yes

Custom text

The word 'Beta' that is the cell's default contents can be replaced with any text desired, simply by assigning it as the value of the |1= parameter or passing it as the only unnamed parameter.

For example, calling this template as either {{Beta|Testing}} or {{Beta|1=Testing}} both produce the following table cell:

Testing

Parameters

Changes to the template's appearance when parsed are accomplished by adding parameters to the template call in the form of {{Beta|name=value}}. Use as many or as few as needed to accomplish the desired appearance.

All available template parameters
Name Value
|1=Text
or
{{Beta|Text}}
Text that replaces the default Beta cell contents, and can include wiki markup syntax (may also be provided as the only unnamed parameter)
|align= Aligns the cell contents to either of the horizontal margins, rather than the default center alignment; valid values are left or right
|bgcolor= Override the default background color (#33fcff) — values shound not be terminated with a semicolon.
Valid color formats are:
  • CSS3 keywords like transparent or none (inheriting the surrounding background color or becoming white, respectively)
  • Named CSS3 colors like moccasin or gainsboro
  • RGB or RGBA hexadecimal values, in either the short (#ccc) or long (#ffe228) forms (lowercase letters are preferred due to superior gzip compression)
|style= Any other CSS3 inline style elements desired, in addition to or instead of, the default formatting (each one terminated with a semicolon)

Default style

This template uses the following CSS elements as its defaults. Those without an explicit override parameter above can still be changed, if necessary, by adding them as a value for the |style= parameter and affixing them with a space and !important placed before the terminating semicolon.

<td style="background-color: #33fcff; color: black; font-size: 1.08em; font-weight: 700; padding: 0.2em 0.67em; text-align: center; vertical-align: middle;">

An example of such overrides, should we wish to change the font-size and font-weight values (which control the typeface height and boldness, respectively) to the default text size and normal weight, would look like:

{{Beta|style=font-size: 1em !important; font-weight: 400 !important;}}  which then appears as  
Beta

See also