Difference between revisions of "Template:Ribbon2"
From Geohashing
(add iconcode parameter) |
(reduce indent to 1em) |
||
(41 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | <!-- this css MUST NOT have any variables in it - someday, it'll be moved to [[MediaWiki:Common.css]] --> | ||
{{#css: | {{#css: | ||
− | . | + | .ribbon2-wrapper { |
− | display: | + | /* it's probably possible to remove this but idk how */ |
− | padding: 5px | + | display: flex; |
+ | } | ||
+ | |||
+ | .ribbon2 { | ||
+ | padding: 5px; | ||
margin: 2px 0; | margin: 2px 0; | ||
− | |||
border: 1px solid lightgray; | border: 1px solid lightgray; | ||
− | border-left: 5px solid | + | border-left: 5px solid; |
− | + | border-radius: 1px; | |
− | |||
− | |||
− | |||
align-items: center; | align-items: center; | ||
} | } | ||
− | . | + | |
− | + | .ribbon2[data-ribbon2-theme=default] { | |
+ | display: grid; | ||
+ | grid-template-areas: | ||
+ | "icon achievement achievement image" | ||
+ | "icon . action image"; | ||
+ | grid-template-columns: auto 1em 1fr auto; | ||
+ | gap: 0 1ch; | ||
+ | align-items: center; | ||
+ | |||
+ | .ribbon2-icon { | ||
+ | grid-area: icon; | ||
+ | display: flex; | ||
+ | place-items: center; | ||
+ | img { | ||
+ | width: 3em; | ||
+ | height: 3em; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | .ribbon2-achievement { | ||
+ | font-weight: bold; | ||
+ | grid-area: achievement; | ||
+ | } | ||
+ | |||
+ | .ribbon2-action { | ||
+ | grid-area: action; | ||
+ | } | ||
+ | |||
+ | .ribbon2-image { | ||
+ | grid-area: image; | ||
+ | display: flex; | ||
+ | place-items: center; | ||
+ | align-self: stretch; | ||
+ | } | ||
} | } | ||
− | . | + | |
− | + | .ribbon2[data-ribbon2-theme=mini], .ribbon2[data-ribbon2-theme=micro] { | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
display: flex; | display: flex; | ||
− | + | flex-direction: row; | |
− | + | gap: 1ch; | |
− | . | + | .ribbon2-icon img { |
− | + | width: 3ch; | |
− | + | height: 3ch; | |
− | + | } | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | |||
− | |||
} | } | ||
− | }} | + | }}<div class="ribbon2-wrapper"> |
− | <div class=" | + | <div class="ribbon2" style="border-left-color:{{{color|#e8bf28}}}" data-ribbon2-theme="{{#var:ribbontheme|default}}"> |
− | <div class=" | + | <div class="ribbon2-icon">{{{iconcode|[[File:{{{icon|Landgeohash.png}}}|70px]]}}}</div> |
− | <div class=" | + | <div class="ribbon2-achievement">{{{achievement}}}</div> |
− | <div class=" | + | <div class="ribbon2-action">{{{action}}}</div> |
− | {{#if:{{{ | + | <div class="ribbon2-image">{{#if:{{{image|}}}|[[Image:{{{image}}}|50px]]}}</div> |
</div> | </div> | ||
+ | </div><noinclude> | ||
+ | |||
+ | == Tests == | ||
+ | [[File:Frozen.png|right|220px]] | ||
+ | asdfasdf | ||
+ | {{Ribbon2|action={{Lipsum}}|image=2020-02-08_43_-79_SIGSTKFLT-stupidgrin.jpg}} | ||
+ | {{Dark Ages|latitude=51|longitude=-1|date=2019-11-29|name=[[User:DanQ|DanQ]]|image=Vlcsnap-2019-11-29-15h55m24s199.jpg}} | ||
+ | {{Frozen Geohash|latitude=43|longitude=-79|date=2020-02-08|temperature=-17°C|name=SIGSTKFLT|multiplier=3|image=2020-02-08_43_-79_SIGSTKFLT-stupidgrin.jpg}} | ||
+ | {{Ribbon2}} | ||
+ | === Mini === | ||
+ | {{#vardefine:ribbontheme|mini}} | ||
+ | {{Ribbon2}} | ||
+ | {{Ribbon2|action={{Lipsum}}}} | ||
+ | === Micro === | ||
+ | {{#vardefine:ribbontheme|micro}} | ||
+ | {{Ribbon2|achievement=foo|expedition=bar}} | ||
+ | |||
+ | == TODO == | ||
+ | |||
+ | * <s>Handle long actions in mini and micro themes</s> | ||
+ | * <s>Split themes into their own templates?</s> | ||
+ | * <s>Make the <nowiki>{{{image}}}</nowiki> parameter work</s> | ||
+ | |||
+ | </noinclude> |
Latest revision as of 02:18, 18 November 2024
{{{achievement}}}
{{{action}}}
Tests
asdfasdf
{{{achievement}}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
DanQ earned the Dark Ages achievement
|
SIGSTKFLT earned the Frozen Geohash Achievement
|
{{{achievement}}}
{{{action}}}
Mini
{{{achievement}}}
{{{action}}}
{{{achievement}}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Micro
foo
{{{action}}}
TODO
Handle long actions in mini and micro themesSplit themes into their own templates?Make the {{{image}}} parameter work