私のアプリでbootstrap
を使用していて、table-striped
テーブルにさまざまな背景色を使用したいとします。これは私のコードです:バックグラウンドカラーをブートストラップテーブルの行に変更するにはどうすればよいですか(崩壊したテーブルを使用して)
<table class="table table-striped">
<% @casinos.take(10).each_with_index do |casino, index| %>
<tr class="casino-row">
<td class="index-number"><%= index + 1 %></td>
<td class="casino-logo"><%= link_to image_tag(casino.logo), casino %></td>
<td class="bonus-info"><%= casino.bonus_info %></td>
<td>
<ul class="rating">
<% form_id = "casino_#{casino.id}_rating" %>
<%= form_for casino.ratings.build, html:
{ id: "casino_#{casino.id}_rating", class: 'star_rating_form' } do |f| %>
<%= f.hidden_field :casino_id %>
<%= f.hidden_field :score, id: "#{form_id}_stars", class: 'star-value' %>
<% end %>
</ul>
<div id="<%= "average_rating_#{form_id}" %>" class="average-rating" data-rating="<%= casino.id %>">
<span><%= casino.average_rating.to_f.round(2) %></span></div>
<input type="range" value="<%= casino.average_rating.to_f.round(2) %>" step="0.5" id="backing_<%= casino.id %>">
<div id="<%= "rate_#{casino.id}" %>" class="rateit" data-rateit-mode="font" data-rateit-backingfld="#backing_<%= casino.id %>" data-rateit-resetable="false" data-rateit-min="0" data-rateit-max="5">
</div>
<div class="review"><%= link_to 'Review', '#' %></div>
</td>
<td><a class="btn btn-primary play-now" href="<%= casino.play_now_link %>" target="_blank">Play now</a></td>
<td><a class="more" role="button" data-toggle="collapse" href="#additional_row<%= index %>" aria-expanded="false" aria-controls="collapseExample">More</a><div class="triangle"></div></td>
<tr class="collapse additional-row" id="additional_row<%= index %>">
<td colspan="6">
<div>
<%= casino.name %>
</div>
</td>
</tr>
</tr>
<% end %>
</table>
あなたが見ることができるように、私はMore
リンクをクリックしたとき、表が展開し、それが私の1つの以上の行を示しています。その行は、上記の行と同じ色にする必要があります。したがって、最初の行はbackground-color: #ffffff
で、展開された行は同じCSSプロパティです。次の行 - background-color: #f5f5f5
、次の展開された行もその色を持つ必要があります。等々。私は私のCSSで試した:
.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
background-color: #f5f5f5;
}
.table-striped > tbody > tr > .additional-row:nth-child(even) td,
.table-striped > tbody > tr > .additional-row:nth-child(even) th {
background-color: #f5f5f5;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #ffffff;
}
.table-striped > tbody > tr > .additional-row:nth-child(odd) td,
.table-striped > tbody > tr > .additional-row:nth-child(odd) th {
background-color: #ffffff;
}
しかし、それは役に立たなかった。どのようにこの問題を解決するための任意のアイデアですか?ありがとう。
嘆願スクリーンショットを追加します。 seはスクリーンショットを追加します。 –