-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
2,540 additions
and
1,110 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
[pep8] | ||
# E121 continuation line under-indented for hanging indent | ||
# E122 continuation line missing indentation or outdented | ||
# E124 closing bracket does not match visual indentation | ||
# E125 continuation line with same indent as next logical line | ||
# E126 continuation line over-indented for hanging indent | ||
# E127 continuation line over-indented for visual indent | ||
# E128 continuation line under-indented for visual indent | ||
# E261 at least two spaces before inline comment | ||
# E262 inline comment should start with '# ' | ||
# E265 block comment should start with '# ' | ||
# E501 line too long (312 > 160 characters) | ||
# E502 the backslash is redundant between brackets | ||
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E261,E262,E265,E501,E502 | ||
ignore = E123,E126,E127,E128,E501 | ||
max-line-length = 160 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# About less and css | ||
|
||
**The main message of this document: DO NOT MODIFY style.css - IT IS GENERATED FILE** | ||
|
||
---- | ||
|
||
If you want modify the appearance of Headphones, please, follow this simple steps. | ||
|
||
0. **Install**. Do this just once, and if you still do not have `lessc` utility on your PC. Here is very useful guide, how to install less : [http://lesscss.org/#using-less-installation](http://lesscss.org/#using-less-installation) | ||
1. **Modify**. Carefully add your changes to the `style.less` (`.less` extension, not `.css`). | ||
2. **Compile**. Currently, there is no magic, so you should compile css manually. Go to the `/data/interfaces/default/css` folder (or use full paths..), and then just type: | ||
|
||
```bash | ||
lessc style.less > style.css | ||
``` | ||
|
||
_works good on *nix hosts, I didn't test this on win-hosts_ | ||
|
||
DONE. You have new CSS file. | ||
|
||
## LESS | ||
|
||
Less is very useful tool (CSS pre-processor) for CSS writing. There is the awesome guide on the official site: [Official Less Guide](http://lesscss.org/features/) | ||
|
||
Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.