This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 863823eb1672037d41e64551fa8228b283ce2c48 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 28 12:10:03 2017 +0200 style --- .../src/main/web/tag/poll/Summary.tag.html | 42 +++++++++++++--------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html index e3424d19..4a905831 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Summary.tag.html @@ -47,7 +47,7 @@ require("../components/MultiLineLabel.tag.html"); <div class="summary-part"> <h3>{__.choices}</h3> <div each={choice, index in opts.form.choices} class="{odd-row: index % 2 > 0}"> - <ChoiceView choice={choice} showdescription="true"/> + <ChoiceView choice={choice} showdescription="true" hidereport="true"/> </div> </div> @@ -74,22 +74,22 @@ require("../components/MultiLineLabel.tag.html"); <label class="c-label" for="voteUrl"> {__.shareLink} </label> - <div class="c-input-group"> - <div class="o-field"> - <input id="voteUrl" - ref="voteUrl" - class="c-field" - value={voteUrl} - type="url" - readonly/> - </div> - <button class="c-button c-button--info" - onclick={copy("voteUrl")} - title="{__.copyLink}"> - <i class="fa fa-clipboard" aria-hidden="true"></i> - </button> - </div> <div class="share-actions"> + <div class="c-input-group"> + <div class="o-field"> + <input id="voteUrl" + ref="voteUrl" + class="c-field" + value={voteUrl} + type="url" + readonly/> + </div> + <button class="c-button c-button--info" + onclick={copy("voteUrl")} + title="{__.copyLink}"> + <i class="fa fa-clipboard" aria-hidden="true"></i> + </button> + </div> <QrCodeButton value="{voteUrl}" title="{__.shareByQR}"/> <a href="mailto:?subject={opts.form.model.title}&body={opts.form.model.title}%0D%0A{opts.form.model.description}%0D%0A{voteUrl}" title="{__.shareByEmail}" @@ -192,7 +192,15 @@ require("../components/MultiLineLabel.tag.html"); } .share-actions { - margin-top: 10px; + display: flex; + } + + .share-actions > .c-input-group { + flex-grow: 0.5; + } + + .share-actions > * { + margin-right: 5px; } </style> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.