This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See http://git.chorem.org/pollen.git commit af950522c68f7032960869aad262a0434a40d9cf Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Aug 29 12:22:39 2014 +0200 Fix choices tables border style --- pollen-ui-angular/src/main/webapp/less/style.less | 50 ++++++++++++++--------- 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/pollen-ui-angular/src/main/webapp/less/style.less b/pollen-ui-angular/src/main/webapp/less/style.less index af51b23..f5d5fff 100644 --- a/pollen-ui-angular/src/main/webapp/less/style.less +++ b/pollen-ui-angular/src/main/webapp/less/style.less @@ -379,30 +379,42 @@ body { } } +tr { + td { + &.pollChoice { + padding: 10px 5px 5px; + text-align:center; + border-top: 1px solid @border-color; + border-left: 1px solid @border-color; -.pollChoice { - padding: 10px 5px 5px; - text-align:center; - border:1px solid @border-color; + input[type=text]{ + width:@width-input-vote; + } + input[type=checkbox]{ + width:25px; + height:25px; + } - input[type=text]{ - width:@width-input-vote; - } - input[type=checkbox]{ - width:25px; - height:25px; - } + &.voteTrue { + background-color: lighten(@brand-success, 30%); + .transition(background @time-transition ease); + } - &.voteTrue { - background-color: lighten(@brand-success, 30%); - .transition(background @time-transition ease); + &.voteFalse { + background-color: lighten(@brand-danger, 30%); + .transition(background @time-transition ease); + } + } + &:nth-last-child(2).pollChoice { + border-right: 1px solid @border-color; + } } - &.voteFalse { - background-color: lighten(@brand-danger, 30%); - .transition(background @time-transition ease); - + &:last-child { + td.pollChoice { + border-bottom: 1px solid @border-color; + } } } @@ -642,4 +654,4 @@ footer { &.fade .modal-dialog { .translate(0, 0); } -} \ No newline at end of file +} -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.