forked from DvalCaruso/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace "styling tweaks" section with a discussion of
user.css
- Loading branch information
Nathan Sobo
committed
Feb 13, 2013
1 parent
38fa030
commit 4cea1b3
Showing
3 changed files
with
15 additions
and
25 deletions.
There are no files selected for viewing
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,3 +1,3 @@ | ||
[docs] | ||
title = The Guide to Atom | ||
manifest = intro.md, features.md, configuring.md, keymaps.md, themes.md, styling.md, packages/intro.md, packages/installing.md, packages/markdown-preview.md, packages/wrap-guide.md | ||
manifest = intro.md, features.md, configuring.md, keymaps.md, themes.md, user-stylesheet.md, packages/intro.md, packages/installing.md, packages/markdown-preview.md, packages/wrap-guide.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## User Stylesheet | ||
|
||
If you want to apply quick-and-dirty personal styling changes without creating | ||
an entire theme that you intend to distribute, you can add styles to | ||
`user.css` in your `~/.atom` directory. | ||
|
||
For example to change the color of the highlighted line number for the line that | ||
contains the cursor, you could add the following style to `user.css`: | ||
|
||
```css | ||
.editor .line-number.cursor-line { | ||
color: pink; | ||
} | ||
``` |