Commit ab3f2ca07913888decfe950c5a288008bca6f2cb

Authored by Victor Costa
2 parents a647ac0b 112c2826

Merge branch 'virtuoso_integration' into stable

plugins/virtuoso/public/style.css
@@ -36,3 +36,7 @@ @@ -36,3 +36,7 @@
36 width: 500px; 36 width: 500px;
37 border: 1px solid white; 37 border: 1px solid white;
38 } 38 }
  39 +
  40 +.virtuoso-manage-custom-queries textarea {
  41 + width: 90%;
  42 +}
plugins/virtuoso/views/virtuoso_plugin_custom_queries/_form.html.erb
  1 +<link rel="stylesheet" type="text/css" href="/plugins/virtuoso/virtuoso_plugin_admin.css">
  2 +
  3 +<div class="virtuoso-manage-custom-queries">
1 <%= form_for(:custom_query, :url => {:action => @custom_query.persisted? ? :update : :create, :id => @custom_query.id}) do |f| %> 4 <%= form_for(:custom_query, :url => {:action => @custom_query.persisted? ? :update : :create, :id => @custom_query.id}) do |f| %>
2 <% if @custom_query.errors.any? %> 5 <% if @custom_query.errors.any? %>
3 <div id="error_explanation"> 6 <div id="error_explanation">
@@ -35,3 +38,4 @@ @@ -35,3 +38,4 @@
35 <%= f.submit %> 38 <%= f.submit %>
36 </div> 39 </div>
37 <% end %> 40 <% end %>
  41 +</div>