私の見解では、このボタンがあります:
<%= button_to 'YES', { :controller => 'pages', :action => 'yes', :id => p.id, remote: true}, {class: "yes_button"} %>
そして.cssでは、これでボタンのスタイルを設定しようとしています:
.yes_button {
color: white;
background-color:#828282;
display:inline-block;
font-family: 'Fjalla One', serif;
font-size: 9pt;
font-weight: 100;
text-align: center;
font-style: italic;
padding:0px 6px;
padding-right: 8px;
padding-top: 2px;
text-decoration:none;
}
しかし、私が適用したカスタム スタイルだけでなく、他のスタイルもボタンに適用されているようです。独自のスタイリングを適用する前に、すべてのスタイリングを削除する方法はありますか? (または別の方法で修正しますか)?