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 47eddd178662b86763fb408cecdb351697284cda Author: Adrien Garandel <a.garandel@dralagen.fr> Date: Fri Aug 8 17:00:55 2014 +0200 update style with new import from bootstrap for transition and opacity --- pollen-ui-angular/src/main/webapp/less/style.less | 2 +- .../src/main/webapp/less/variables.less | 20 ++++---------------- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/pollen-ui-angular/src/main/webapp/less/style.less b/pollen-ui-angular/src/main/webapp/less/style.less index 59e1e95..d2ced80 100644 --- a/pollen-ui-angular/src/main/webapp/less/style.less +++ b/pollen-ui-angular/src/main/webapp/less/style.less @@ -105,7 +105,7 @@ body { ul li .text, ul li input { display: none; - opacity:0; + .opacity(0); } } diff --git a/pollen-ui-angular/src/main/webapp/less/variables.less b/pollen-ui-angular/src/main/webapp/less/variables.less index 2ff3a53..fc204ab 100644 --- a/pollen-ui-angular/src/main/webapp/less/variables.less +++ b/pollen-ui-angular/src/main/webapp/less/variables.less @@ -42,18 +42,6 @@ @preview-size:200px; -.transition(@style) { - -webkit-transition : @style; - -moz-transition : @style; - transition : @style; -} - -.transition-duration(@time) { - -webkit-transition-duration : @time; - -moz-transition-duration : @time; - transition-duration : @time; -} - .fade(@time) { &.ng-enter { .transition(all @time ease @time); @@ -69,12 +57,12 @@ &.ng-enter, &.ng-leave.ng-leave-active { - opacity:0; + .opacity(0); } &.ng-leave, &.ng-enter.ng-enter-active { - opacity:1; + .opacity(1); } } @@ -88,12 +76,12 @@ font-weight:bold; .alert { - opacity:0.9; + .opacity(0.9); .transition(opacity @short-time-transition ease); &:hover { - opacity:1; + .opacity(1); .transition(opacity @short-time-transition ease); } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.