branch develop updated (44f306a -> e930cbc)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from 44f306a fixes #53 Set page titles new e930cbc affichage du libellé "anonyme" en cas de vote anonyme The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit e930cbc625fa3b1447ad34f2539346a3f5c0384c Author: Kevin Morin <morin@codelutin.com> Date: Tue May 9 11:25:26 2017 +0200 affichage du libellé "anonyme" en cas de vote anonyme Summary of changes: pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
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 e930cbc625fa3b1447ad34f2539346a3f5c0384c Author: Kevin Morin <morin@codelutin.com> Date: Tue May 9 11:25:26 2017 +0200 affichage du libellé "anonyme" en cas de vote anonyme --- pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html index 983024c..ef2074d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/Votes.tag.html @@ -104,7 +104,8 @@ require("./Podium.tag.html"); <span class="voter-name" if="{vote.id !== voteId}"> <i class="fa fa-user"/> - {vote.voterName} + <span if="{!vote.anonymous}">{vote.voterName}</span> + <span if="{vote.anonymous}" class="anonymous-voter">{parent.__.anonymousVoter}</span> </span> <div class="o-field o-field--icon-left" if={vote.id === voteId}> @@ -497,5 +498,10 @@ require("./Podium.tag.html"); padding: 0 0 0 1px; } + .anonymous-voter { + color: #666; + font-style: italic; + } + </style> </Votes> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm