]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/Resources/static/themes/material/css/cards.scss
Fix pagination on list mode
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / css / cards.scss
index 1e0155c353c50ce9631370dc31b83c57783207ff..0819f0dcecba8f5175d084d89eb7bde7b353b26d 100644 (file)
@@ -8,6 +8,7 @@ main {
   }
 
   ul.row {
+    margin: 0.4rem 0 0;
     padding: 0 0.75rem;
   }
 }
@@ -134,6 +135,7 @@ main {
   .card-fullimage .preview {
     height: 14em;
     background: no-repeat 50%/cover;
+    display: block;
   }
 
   &.sw {
@@ -175,32 +177,66 @@ a.original:not(.waves-effect) {
 }
 
 .card-stacked {
-  &:hover ul.tools-list {
-    display: block;
-  }
+  display: flex;
+  flex-flow: row wrap;
 
-  ul.tools-list {
-    display: none;
+  &:hover ul.tools-list {
+    display: inline;
+    text-align: right;
   }
 
   .preview {
-    float: left;
-    width: 90px;
-    height: 50px;
+    max-width: 100px;
+    height: auto;
+    margin-right: 10px;
+    flex: 1;
 
     img {
-      max-height: 50px;
-      padding-right: 10px;
-      width: 80px;
+      max-width: 100%;
+      max-height: 100%;
+    }
+  }
+
+  div.metadata {
+    .chip {
+      background-color: $blueAccentColor;
+      padding: 0 15px 0 10px;
+      margin: auto 2px;
+      border-radius: 6px;
+
+      a,
+      i {
+        color: #fff;
+      }
+
+      i.material-icons {
+        float: right;
+        font-size: 20px;
+        line-height: 32px;
+        padding-left: 8px;
+      }
     }
   }
 
-  .domain,
-  .footer {
-    font-size: 12px;
+  div.card-content {
+    flex: 4;
+  }
+
+  ul.tools-list {
+    flex: 1;
+    display: none;
+    flex-basis: 5em;
+    align-self: flex-end;
+    float: right;
+    max-width: 6em;
   }
 }
 
+#content .collection .collection-item {
+  min-height: 65px;
+  height: auto;
+}
+
 .quickstart .card .card-action a,
 .quickstart .card .card-action a:hover {
   color: #fff !important;