75
71

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Railsで読み込むスタイルシートを指定する方法

Last updated at Posted at 2012-07-18

application.cssに

*= require_tree .

のかわりに

*= require_directory .

とする。これでassets内全てでなくassets内一番上のディレクトリだけを参照するようになる。
それから、assetsディレクトリにinsideとか適当な名前をつけたサブディレクトリを作って、読み込ませたくないCSSをそこに移動させる。たとえばstories.css.scssをここに移動させる。

これで、まずinsideに入れたCSSを読み込まなくなる。

読み込ませたいページのViewにだけ、

<%= stylesheet_link_tag "inside/stories", :media => "all" %>

という読み込みタグを書き込む。これでstories.css.scssは、そのページでのみ読み込まれる。

75
71
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
75
71

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?