Adjust bookmark card to meet gscan spec

This commit is contained in:
David Darnes 2019-11-12 13:51:15 +00:00
parent 5e970154fa
commit 8c170a9646
1 changed files with 14 additions and 4 deletions

View File

@ -287,11 +287,15 @@
/* Bookmark Cards /* Bookmark Cards
/* ---------------------------------------------------------- */ /* ---------------------------------------------------------- */
.kg-bookmark-card {
width: 100%;
position: relative;
}
.kg-bookmark-container { .kg-bookmark-container {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
flex-direction: row-reverse; flex-direction: row-reverse;
min-height: 148px;
color: currentColor; color: currentColor;
background: rgba(255,255,255,0.6); background: rgba(255,255,255,0.6);
font-family: inherit; font-family: inherit;
@ -316,8 +320,12 @@
font-weight: 600; font-weight: 600;
} }
.kg-bookmark-metadata { .kg-bookmark-metadata,
.kg-bookmark-description {
margin-top: .5em; margin-top: .5em;
}
.kg-bookmark-metadata {
align-items: center; align-items: center;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@ -325,8 +333,10 @@
} }
.kg-bookmark-description { .kg-bookmark-description {
-webkit-line-clamp: 2; display: -webkit-box;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
} }
.kg-bookmark-icon { .kg-bookmark-icon {
@ -351,7 +361,7 @@
object-fit: cover; object-fit: cover;
} }
.kg-bookmark-author::after { .kg-bookmark-publisher::before {
content: "•"; content: "•";
margin: 0 .5em; margin: 0 .5em;
} }