Skip to content

Commit

Permalink
move readme changes to build version and re-build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeapage committed Jan 1, 2014
1 parent d4a5107 commit 3b40e72
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [Less.js v1.5.1](http://lesscss.org)
# [Less.js v1.6.0](http://lesscss.org)

> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
Expand Down Expand Up @@ -151,8 +151,7 @@ used like this:
@link-color: #428bca;
@link-color-hover: darken(@link-color, 10%);

//Transiation mixin would be anywhere here

//Transition mixin would be anywhere here

a {
font-weight: bold;
Expand Down Expand Up @@ -208,7 +207,6 @@ renders to:
.link, a {
color: #428bca;
}

a {
font-weight: bold;
}
Expand Down Expand Up @@ -283,7 +281,6 @@ Before opening any issue, please search for existing issues and read the [Issue

Please report documentation issues in [the documentation project](https://github.com/less/less-docs).


### Development

#### Install Less.js
Expand Down Expand Up @@ -343,11 +340,11 @@ See the [changelog](CHANGELOG.md)

## [License](LICENSE)

Copyright (c) 2009-2013 [Alexis Sellier](http://cloudhead.io/) & The Core Less Team
Copyright (c) 2009-2014 [Alexis Sellier](http://cloudhead.io/) & The Core Less Team
Licensed under the [Apache License](LICENSE).


[so]: http://stackoverflow.com/questions/tagged/twitter-bootstrap+less "StackOverflow.com"
[issues]: https://github.com/less/less.js/issues "GitHub Issues for Less.js"
[wiki]: https://github.com/less/less.js/wiki "The official wiki for Less.js"
[download]: https://github.com/less/less.js/zipball/master "Download Less.js"
[download]: https://github.com/less/less.js/zipball/master "Download Less.js"
19 changes: 17 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ a:hover {
Mixins enable you to apply the styles of one selector inside another selector like this:

```less
// Variables
@link-color: #428bca;

// Any "regular" class...
.link {
color: @link-color;
Expand Down Expand Up @@ -144,6 +147,12 @@ Mixins can also accept parameters:
used like this:

```less
// Variables
@link-color: #428bca;
@link-color-hover: darken(@link-color, 10%);

//Transition mixin would be anywhere here

a {
font-weight: bold;
color: @link-color;
Expand Down Expand Up @@ -176,6 +185,9 @@ a:hover {
The `extend` feature can be thought of as the _inverse_ of mixins. It accomplishes the goal of "borrowing styles", but rather than copying all the rules of _Selector A_ over to _Selector B_, `extend` copies the name of the _inheriting selector_ (_Selector B_) over to the _extending selector_ (_Selector A_). So continuing with the example used for [mixins](#mixins) above, extend works like this:

```less
// Variables
@link-color: #428bca;

.link {
color: @link-color;
}
Expand All @@ -195,6 +207,9 @@ renders to:
.link, a {
color: #428bca;
}
a {
font-weight: bold;
}
```

## Usage
Expand Down Expand Up @@ -264,7 +279,7 @@ Please read [CONTRIBUTING.md](./CONTRIBUTING.md). Add unit tests for any new or

Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). After that if you find a bug or would like to make feature request, [please open a new issue][issues].


Please report documentation issues in [the documentation project](https://github.com/less/less-docs).

### Development

Expand Down Expand Up @@ -321,7 +336,7 @@ Please review the [Gruntfile](Gruntfile.js) to become acquainted with the other


## Release History
See the [changelog](CHANGELOG)
See the [changelog](CHANGELOG.md)

## [License](LICENSE)

Expand Down

0 comments on commit 3b40e72

Please sign in to comment.