]> 91.132.146.200 Git - bibliotheca-php.git/commitdiff
some breakpoint behavior
authorBanana <mail@bananas-playground.net>
Sat, 17 Dec 2022 12:21:16 +0000 (13:21 +0100)
committerBanana <mail@bananas-playground.net>
Sat, 17 Dec 2022 12:21:16 +0000 (13:21 +0100)
CHANGELOG
TODO
webclient/view/default/dashboard/dashboard.html

index 46b245a458f05febe5a678f110a224573e0b7b46..d0ae83b9daf6d5524a3fabf2681548e5c32680f0 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,7 @@
        * Fixed showing the pagination where there is a fulltext default search
        * Made it more visible where to drop the fields in manage fields view for a collection.
        * Added a note about some options in collections manage view.
+       * Improved breakpoint behavior
 
 1.3 - Rrajigar Mine 2022-10-08
        * Fixed install sql file.
diff --git a/TODO b/TODO
index c818b2cc4bf3e49d4339a8072550b544c52e7e89..e58464ff247653570554291708110a227fc2b3d4 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,4 +1,3 @@
-* option for sorting direction
 * Automatic upgrades of DB
 * drop in updates
 * Definition of fields in "card view"
@@ -9,5 +8,5 @@
 
 
 * responsive and breakpoints
-* Field management: Web interface
+* Field management: Web interface to configure or even create new ones.
 * minimal theme
index 642919e80e2f2cf9928d228a8ae0bc9439b191e2..10df0227ff6356696f929875d9191cc1df88eab8 100644 (file)
@@ -12,7 +12,7 @@
 
 <div class="uk-grid-divider uk-child-width-expand@s" uk-grid>
 <?php foreach($TemplateData['latest'] as $k=>$v) { ?>
-       <div>
+       <div class="uk-width-1@s uk-width-1-2@m uk-width-1-3@l">
                <a href="index.php?p=collections&collection=<?php echo $k; ?>"><?php echo $v['name']; ?></a><br  />
                <?php echo $v['description']; ?>
 
@@ -20,7 +20,7 @@
                if(isset($v['entries']['results'])) {
                        foreach($v['entries']['results'] as $entryK=>$entry) { ?>
 
-               <div class="uk-card uk-card-default uk-grid-collapse uk-child-width-1-2@s uk-margin" uk-grid>
+               <div class="uk-card uk-card-default uk-grid-collapse uk-child-width-1-2@s uk-child-width-1-1@m uk-child-width-1-2@xl uk-margin" uk-grid>
                        <div class="uk-card-media-left uk-cover-container">
                                <?php if(Summoner::ifset($entry['fields'], 'coverimage')) { ?>
                                <a href="index.php?p=entry&collection=<?php echo $k ?>&id=<?php echo $entryK; ?>">
@@ -31,7 +31,7 @@
                                <?php } ?>
                        </div>
                        <div>
-                               <div class="uk-card-body">
+                               <div class="uk-card-body uk-visible@l">
                                        <?php if(Summoner::ifset($entry['fields'], 'title')) { ?>
                                        <h3 class="uk-card-title"><?php echo $entry['fields']['title']['value']; ?></h3>
                                        <?php } ?>