OLD | NEW |
1 //--------------------------------------------------- | 1 //--------------------------------------------------- |
2 // LESS Elements 0.9 | 2 // LESS Elements 0.9 |
3 //--------------------------------------------------- | 3 //--------------------------------------------------- |
4 // A set of useful LESS mixins | 4 // A set of useful LESS mixins |
5 // More info at: http://lesselements.com | 5 // More info at: http://lesselements.com |
6 //--------------------------------------------------- | 6 //--------------------------------------------------- |
7 | 7 |
8 .gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) { | 8 .gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) { |
9 background: @color; | 9 background: @color; |
10 background: -webkit-gradient(linear, | 10 background: -webkit-gradient(linear, |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 column-rule-width: @columnRuleWidth; | 147 column-rule-width: @columnRuleWidth; |
148 } | 148 } |
149 .translate(@x:0, @y:0) { | 149 .translate(@x:0, @y:0) { |
150 .transform(translate(@x, @y)); | 150 .transform(translate(@x, @y)); |
151 } | 151 } |
152 .background-clip(@argument: padding-box) { | 152 .background-clip(@argument: padding-box) { |
153 -moz-background-clip: @argument; | 153 -moz-background-clip: @argument; |
154 -webkit-background-clip: @argument; | 154 -webkit-background-clip: @argument; |
155 background-clip: @argument; | 155 background-clip: @argument; |
156 } | 156 } |
OLD | NEW |