gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunetbib] branch master updated (3af37e3 -> 9b9ca0f)


From: gnunet
Subject: [GNUnet-SVN] [gnunetbib] branch master updated (3af37e3 -> 9b9ca0f)
Date: Tue, 02 Jul 2019 20:19:09 +0200

This is an automated email from the git hooks/post-receive script.

xrs pushed a change to branch master
in repository gnunetbib.

    from 3af37e3  test new layout for bibliography list
     new 2fc540c  test: have bar visible on the right side
     new 9b9ca0f  reverse order by date

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 BibTeX.py    | 2 +-
 css/main.css | 9 ++++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/BibTeX.py b/BibTeX.py
index ca0eb68..fa5821e 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -299,7 +299,7 @@ def sortEntriesByDate(entries):
         except ValueError:
             date = 10000*13
         tmp.append((date, i, ent))
-    tmp.sort()
+    tmp.sort(reverse=True)
     return [t[2] for t in tmp]
 
 
diff --git a/css/main.css b/css/main.css
index 3a7f08b..b68c39f 100644
--- a/css/main.css
+++ b/css/main.css
@@ -116,6 +116,7 @@ H3 {
     color: black;
     font-size: 0.9em;
     padding: 30px 0px;
+    width: 20%;
 }
 .bar-title {
     color: black;
@@ -220,7 +221,12 @@ H3 {
 }
 
 
-
+.sheet {
+    display: inline-block;
+    vertical-align: top;
+    width: 75%;
+}
+/*
 @media screen and (min-width: 1280px) {
     .sheet {
         display: inline-block;
@@ -232,6 +238,7 @@ H3 {
         padding-right: 20px;
     }
 }
+*/
 
 /* item-preview */
 .item-preview,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]