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 633b0280098fc7279e8a9c4c053f67584a05cfea Author: Kevin Morin <morin@codelutin.com> Date: Thu Aug 3 17:36:50 2017 +0200 fixes #96 Signalement impossible pour les sondage --- pollen-ui-riot-js/src/main/web/css/main.css | 2 +- pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html | 12 ++++++------ pollen-ui-riot-js/src/main/web/tag/poll/Report.tag.html | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/css/main.css b/pollen-ui-riot-js/src/main/web/css/main.css index 8a840d7f..eb3a228b 100644 --- a/pollen-ui-riot-js/src/main/web/css/main.css +++ b/pollen-ui-riot-js/src/main/web/css/main.css @@ -418,7 +418,7 @@ pollenheader .header-link:hover { color: var(--header-link-hover); } -h1 { +h1, .h1-like { color: var(--h1); background-color: var(--h1-background); padding: 30px 2% 15px 2%; diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html index 0e240cdd..74a32ae8 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Poll.tag.html @@ -10,19 +10,19 @@ require("./Report.tag.html"); <div class="container"> <h1 class="no-border"> - <span class="title">{poll.title}</span> - <QrCodeButton if="{poll.pollType === 'FREE'}" class="not-printable" + <span class="title">{poll.title}</span> + <QrCodeButton if="{poll.pollType === 'FREE'}" class="title-button not-printable" value="{window.location.origin}{window.location.pathname}#poll/{poll.id}/vote" title="{__.qrcode}"/> <a href="{session.configuration.endPoint}/v1/polls/{poll.id}/feed?{poll.permission ? 'permission=' + poll.permission : ''}" - class="c-button c-button--info not-printable" + class="c-button c-button--info title-button not-printable" title="{__.rss}"> <i class="fa fa-rss" aria-hidden="true"></i> </a> - <a class="c-button c-button--info not-printable" href="javascript:window.print()" title="{__.print}"> + <a class="c-button c-button--info title-button not-printable" href="javascript:window.print()" title="{__.print}"> <i class="fa fa-print" aria-hidden="true"></i> </a> - <Report target={poll}/> + <Report target="{poll}"/> </h1> <div class="tabs below-h1"> @@ -236,7 +236,7 @@ require("./Report.tag.html"); flex-grow: 1; } - h1 .c-button { + h1 .title-button { font-size: 1rem; margin: 0 2px; flex-shrink: 0; diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Report.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Report.tag.html index eeaa764c..177ef427 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Report.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Report.tag.html @@ -49,7 +49,7 @@ require("../popup/Modal.tag.html"); placeholder="{parent.__.email_placeholder}" value={parent.session.getUser() && parent.session.getUser().email} required - class="c-field"> + class="c-field"/> </div> </modal> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.