diff --git a/source/_patterns/03-templates/cf2021/anonymous.mustache b/source/_patterns/03-templates/cf2021/anonymous.mustache index 0ea1e3431a9224c53d53e63a78b47fa1b626a64e..2e3a2370abcd70c3e76aac850e55105f82b3e68b 100644 --- a/source/_patterns/03-templates/cf2021/anonymous.mustache +++ b/source/_patterns/03-templates/cf2021/anonymous.mustache @@ -86,6 +86,7 @@ <span class="font-bold">{{ person.first }} {{ person.last }}</span> <span class="text-grey-200 text-sm ml-2">KS Pardubický kraj</span> <span class="text-grey-200 ml-1 text-sm">@ 11:40</span> + <a href="#" class="text-grey-200 text-xs ml-2 underline">(Upraveno přesdedajícím)</a> {{> molecules-chip(classes: "chip--cyan-200 chip--condensed ml-2", cta: "Návrh postupu")}} </div> {{> molecules-thumbs }} diff --git a/source/_patterns/03-templates/cf2021/user.mustache b/source/_patterns/03-templates/cf2021/user.mustache index c9ab8237bc05fadc91f0490c2d24965d9f95c5f3..564232651c811e0dbf2e3d382048c99bbc9fbf56 100644 --- a/source/_patterns/03-templates/cf2021/user.mustache +++ b/source/_patterns/03-templates/cf2021/user.mustache @@ -86,6 +86,7 @@ <span class="font-bold">{{ person.first }} {{ person.last }}</span> <span class="text-grey-200 text-sm ml-2">KS Pardubický kraj</span> <span class="text-grey-200 ml-1 text-sm">@ 11:40</span> + <a href="#" class="text-grey-200 text-xs ml-2 underline">(Upraveno přesdedajícím)</a> {{> molecules-chip(classes: "chip--cyan-200 chip--condensed ml-2", cta: "Návrh postupu")}} </div> {{> molecules-thumbs }} @@ -135,7 +136,20 @@ <div class="my-8 space-y-4"> {{> molecules-textarea-field(nolabel: true) }} <div class="space-x-4"> - {{> atoms-icon-button(classes: "text-base btn--black btn--hoveractive", icon: "ico--chevron-down", cta: "Přidat příspěvek") }} + <button class="btn btn--icon"> + <div class="btn__body-wrap"> + <div class="btn__body">Přidat příspěvek</div> + <div class="btn__icon dropdown-button"> + <i class="ico--chevron-down"></i> + <ul class="dropdown-button__choices bg-white text-black whitespace-no-wrap"> + <li class="dropdown-button__choice hover:bg-grey-125"> + <a class="block px-2 py-3" href="#">Přidat jako návrh postupu</a> + </li> + </ul> + </div> + </div> + </button> + <span class="text-sm text-grey-200">Pro pokročilejší formátování můžete používat <a href="#" class="underline">Markdown</a>.</span> </div> </div>