I have this submit tag, but it’s generating additional css and I don’t know where it’s coming from
<%= submit_tag "Click Here To Generate The Report", {
:id => "generate-report-btn",
"data-loading-text" => "Please wait...",
:class => "btn btn-primary"
}
%>
</div>
here is the rendered output source code…
<i class="btn btn-primary waves-input-wrapper waves-effect waves-themed" style="color:rgb(0, 0, 0);background:rgb(233, 233, 237)"><input type="submit" name="commit" value="Click Here To Generate The Report" id="generate-report-btn" data-loading-text="Please wait..." class="waves-button-input" data-disable-with="Click Here To Generate The Report" style="background-color:rgba(0,0,0,0);"></i>
what is adding this additional css?