0

請求スタイルシートが適切に取得されない理由がわかりません。charge.css.scss で行ったスタイリングは、私のビューにはまったく影響しません。

アプリケーション.css

 *
 *= require jquery.ui.datepicker
 *= require_self    
 *= require bootstrap
 *= require front
 *= require lists
 *= require tasks
 *= require lightbox
 */

請求.css.scss

// Place all the styles related to the charges controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/

.row_form {
    background-color: red;
}

new.html.erb

<div class="container row_form" style="width:990px;">
  <div class="row">
    <div class="span1 offset3">
       <h2></h2>
       <%= render '/charges/new' %>
    </div>   
  </div>
</div>

_newstrip.js を使用したポップアウト支払いフォームはどこにありますか

インライン スタイリングのみが機能し、ブートストラップ クラスも取得しません。ここで何が理解できませんか?また、マニフェストに*= require_tree .andを含めてみましたが、役に立ちませんでした。*= require charges

HTML ソースで更新

<html>
<head>
</head>
<body>
  <div class="container row_form" style="width:990px;">
  <div class="row">
    <div class="span1 offset3">
       <h2></h2>
       <form accept-charset="UTF-8" action="/charges" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="dvlHeyYvCVfMox/UilOaNoPmT+eO3Z7PuMgE3kXpDPU=" /></div>
  <article>
    <label class="amount">
      <span>Amount: $number</span>
    </label>
  </article>

  <script src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button"
          data-key="pk_test_3ZFJmvwy4tgn2XUPwUsL7mZQ"
          data-description="Continued Full User Acess"
          data-amount="integer">
  </script>
</form>
    </div>   
  </div>
</div>
</body>
4

1 に答える 1

0

以下を確認してください

  1. アプリは開発モードで実行されますか?
  2. サーバーrake assets:clean再起動してみてください
  3. スタイルシートが更新されていることを確認してください (html ページのソースを介して)

これの1つがあなたを動かしてくれることを願っています:)

于 2013-03-16T20:23:10.107 に答える