diff options
author | Alec Clarke <aclar093@uottawa.ca> | 2019-05-02 19:32:52 -0400 |
---|---|---|
committer | Alec Clarke <aclar093@uottawa.ca> | 2019-05-02 19:32:52 -0400 |
commit | 4c3231ebb666014ab90f003acb4fa13e7216d845 (patch) | |
tree | 586586a1ed30385792b79b7753dc0cc4b6bd51a6 /guides/source | |
parent | 1ce5153a099e82f761315154dfe5e01253dafd81 (diff) | |
download | rails-4c3231ebb666014ab90f003acb4fa13e7216d845.tar.gz rails-4c3231ebb666014ab90f003acb4fa13e7216d845.tar.bz2 rails-4c3231ebb666014ab90f003acb4fa13e7216d845.zip |
[ci skip] Correct the stylesheet name used in the guide.
In the Action Text guides, `app/assets/stylesheets/actiontext.css`
is specified as the file used to style the Action Text editor and
content but the actual file generated from `rails action_text:install`
is `app/assets/stylesheets/actiontext.scss`.
This change simply corrects the file extension shown in the guide.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_text_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_text_overview.md b/guides/source/action_text_overview.md index 08ec35e52a..07919775e2 100644 --- a/guides/source/action_text_overview.md +++ b/guides/source/action_text_overview.md @@ -91,7 +91,7 @@ end By default, the Action Text editor and content is styled by the Trix defaults. If you want to change these defaults, you'll want to remove -the `app/assets/stylesheets/actiontext.css` linker and base your stylings on +the `app/assets/stylesheets/actiontext.scss` linker and base your stylings on the [contents of that file](https://raw.githubusercontent.com/basecamp/trix/master/dist/trix.css). You can also style the HTML used for embedded images and other attachments (known as blobs). |