]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fixing display mode switching in Baggy theme (issue #896) 897/head
authorJay Sitter <jsitter@gmail.com>
Thu, 30 Oct 2014 15:20:05 +0000 (11:20 -0400)
committerJay Sitter <jsitter@gmail.com>
Thu, 30 Oct 2014 15:20:05 +0000 (11:20 -0400)
themes/baggy/css/main.css
themes/baggy/home.twig

index 558fb20898fda1d0002ddc03af19fe79a0ae9ff8..fe49b8e4cff1157e044b26b87963ec18454240c5 100755 (executable)
@@ -360,11 +360,15 @@ footer a {
   position: relative;
   overflow: hidden;
   padding: 1.5em 1.5em 3em 1.5em;
-  -webkit-transition: all 0.5s ease;
-     -moz-transition: all 0.5s ease;
-      -ms-transition: all 0.5s ease;
-       -o-transition: all 0.5s ease;
-          transition: all 0.5s ease;
+
+       /* Removing CSS transitions because they make the switch from list view to
+        * table view jerky
+        */
+  /* -webkit-transition: all 0.5s ease; */
+  /*    -moz-transition: all 0.5s ease; */
+  /*     -ms-transition: all 0.5s ease; */
+  /*      -o-transition: all 0.5s ease; */
+  /*         transition: all 0.5s ease; */
 }
 
 .entrie:before {
index a870fc21cc010e1951b3a4320457edf98cfae0fb..03de6b9b74fddf65a43da762d894c7fdddcdb0da 100755 (executable)
@@ -38,7 +38,7 @@
                 {% endblock %}
             <div id="list-entries" class="list-entries">
                     {% for entry in entries %}
-                <div id="entry-{{ entry.id|e }}" class="entrie"{% if listmode %} style="width:100%; margin-left:0;"{% endif %}>
+                <div id="entry-{{ entry.id|e }}" class="entrie">
                     <h2><a href="index.php?view=view&amp;id={{ entry.id|e }}">{{ entry.title|raw }}</a></h2>
                     {% if entry.content| getReadingTime > 0 %}
                         <div class="estimatedTime"><a target="_blank" title="{% trans "estimated reading time:" %} {{ entry.content| getReadingTime }} min" class="tool reading-time"><span>{% trans "estimated reading time :" %} {{ entry.content| getReadingTime }} min</span></div>