From d3b109fae0e246d01b0c73afd828347bcf5d2e86 Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Sun, 13 Jun 2021 19:46:34 +0200
Subject: Use grid layout for items in administration area

Introduce a new 1/2/3-column CSS grid layout in the administration area
for items on overview pages and in the search results. The column count
of the grid depends on the users viewport width.

In addition, the default value of the following configuration settings
has been changed to 12 because 12 can also be divided by 2 and 3 which
is useful for the 1/2/3-column grid layout.

ADMIN.PAGE.LIST_SIZE = 12
ADMIN.POST.LIST_SIZE = 12
---
 theme/admin/html/page/update.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'theme/admin/html/page/update.php')

diff --git a/theme/admin/html/page/update.php b/theme/admin/html/page/update.php
index 77a7eb2..ce51d2a 100644
--- a/theme/admin/html/page/update.php
+++ b/theme/admin/html/page/update.php
@@ -1,4 +1,6 @@
+<main id="main-content">
 <h1><i class="fa fa-pencil-square-o"></i><?=$Language->text('update_page')?></h1>
 <p><?=$Language->text('update_page_desc')?></p>
 
-<?=$HTML?>
\ No newline at end of file
+<?=$HTML?>
+</main>
-- 
cgit v1.2.3