فهرست منبع

adjust table layout in blogs

huaisianhuang 4 سال پیش
والد
کامیت
05b087427e
3فایلهای تغییر یافته به همراه4 افزوده شده و 30 حذف شده
  1. 4 0
      backstage/static/styles/main.css
  2. 0 6
      backstage/templates/blogs.html
  3. 0 24
      backstage/templates/collections.html

+ 4 - 0
backstage/static/styles/main.css

@@ -372,6 +372,10 @@ textarea {
 }
 
 /* --- Table */   
+.table .table__head {
+  text-align: center;
+}
 .table .table__data {
   vertical-align: middle;
+  text-align: center;
 }

+ 0 - 6
backstage/templates/blogs.html

@@ -1,10 +1,7 @@
-<<<<<<< HEAD
 {% extends "tables/editor_table.html" %}
 {% block table_body %}
 {% for idx in range(0, length) %}
   <tbody>
-=======
->>>>>>> adjust blogs table buttons and delete options
     <tr>
       <td>{{ idx }}</td>
       <td>{{ blogs[idx].title }}</td>
@@ -19,7 +16,6 @@
         </div>
       </td>
     </tr>
-<<<<<<< HEAD
   </tbody>
 {% endfor %}
 {% endblock table_body %}
@@ -39,5 +35,3 @@
     </div>
   </form>
 {% endblock modal_body %}
-=======
-able buttons and delete options

+ 0 - 24
backstage/templates/collections.html

@@ -30,30 +30,6 @@
         </td>
       </tr>
     </tbody>
-=======
-      <th style="text-align:center;width:140px;">新增 <button type="button" data-func="dt-add" class="btn btn-success btn-xs dt-add">
-          <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
-        </button></th>
-    </tr>
-  </thead>
-  {% for idx in range(0, length) %}
-  <tbody>
-    <tr>
-      <td class="table__data">{{ idx }}</td>
-      <td class="table__data">{{ collections[idx].title }}</td>
-      <td class="table__data">1</td>
-      <td class="table__data">on</td>
-      <td>
-        <div class="d-flex justify-content-center">
-          <a class="m-1 btn__edit" href="{{ url_for('editor.editor', url=collections[idx].url) }}"><i class="fas fa-edit"></i></a>
-          <form action="{{ url_for('editor.remove', url=collections[idx].url) }}" method="POST" class="m-1 inline_block">
-            <button class="btn__delete" type="submit" value="delete"><i class="fas fa-trash-alt"></i></button>
-          </form>
-        </div>
-      </td>
-    </tr>
-  </tbody>
->>>>>>> adjust table layout in collections
   {% endfor %}
 </table>
 <!-- Modal -->