get rid of the 'columns' class and use query-editor instead
[unfold.git] / plugins / query_editor / templates / query_editor.html
index 4c0864a..c7f3dd0 100644 (file)
@@ -8,7 +8,7 @@ EOF;
 EOF; -->
 
 <div>
-  <table id='{{domid}}__table' class='display' width='95%'>
+  <table id='{{domid}}__table' class='query-editor'>
     <thead>
       <tr>
         <th class='center'>Info</th>
@@ -25,13 +25,13 @@ EOF; -->
     {% for field in fields %}
 
       <tr>
-        <td class='center'><span class='ui-icon ui-icon-triangle-1-e' style='cursor:pointer'></span></td>
+        <td class='center'><span class='glyphicon glyphicon-chevron-right' style='cursor:pointer'></span></td>
         <td class='center'>{{ field.name }}</td>
         <td class='center'>{{ field.resource_type }}</td>
         <td class='center'>{{ field.type }}</td>
         <td class='center'>{{ field.filter_input }}</td>
         <td class='center'>
-          <input class='queryeditor-check' id='{{domid}}__check__{{ field.name }}' name='{{ field.header }}' type='checkbox' autocomplete='on' value='{{ field.name }}' {% if field.checked %} checked {% endif %}></input>
+          <input class='queryeditor-check' id='{{domid}}__check__{{ field.name }}' name='{{ field.header }}' type='checkbox' autocomplete='off' value='{{ field.name }}' {% if field.checked %} checked {% endif %}></input>
         </td>
       </tr>