Rails 3.1 simple_form submit style css
Asked Answered
A

2

15

Hello did anybody know how to add a class to a simple_form submit button, for css style.Here's what I try to do:

_form.html.erb

<%= simple_form_for(@drink) do |f| %>
 <%= f.submit "Add drink",:input_html =>{:class => "create"} %>
<%end%>

drinks.css.scss

.create {
    background-color:#2fd62f;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    border:1px solid #dcdcdc;
    display:inline-block;
    color:#fafafa;
    font-family:arial;
    font-size:12px;
    font-weight:bold;
    padding:7px 24px;
    text-decoration:none;
    text-shadow:0px 0px 0px #70706f;
}.create:hover {
    background-color:#2fbf0f;
}.create:active {
    position:relative;
    top:1px;
}   
Amphoteric answered 16/10, 2011 at 22:29 Comment(1)
doesn't it work for you?Bird
B
36

<%= f.submit "Add drink", :class => "create" %>

Bird answered 17/10, 2011 at 4:27 Comment(0)
X
1

In rails 5 do the following

<%= f.button :submit, "Add drink", class: "create" %>
Ximenez answered 20/6, 2017 at 12:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.