0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed bookmark card design regression

no refs.
- fixed border radius of bookmark cards
- fixed title/description/metadata spacings
This commit is contained in:
Peter Zimon 2020-07-06 18:23:29 +02:00
parent 11c684f9b0
commit 6f296f97b1

View file

@ -896,6 +896,7 @@
box-sizing: border-box; box-sizing: border-box;
border: 1px solid var(--whitegrey); border: 1px solid var(--whitegrey);
background: var(--white); background: var(--white);
border-radius: 5px;
} }
.koenig-editor__editor .kg-bookmark-container { .koenig-editor__editor .kg-bookmark-container {
@ -930,7 +931,7 @@
display: -webkit-box; display: -webkit-box;
font-size: 1.4rem; font-size: 1.4rem;
line-height: 1.5em; line-height: 1.5em;
margin-top: 10px; margin-top: 3px;
color: var(--middarkgrey); color: var(--middarkgrey);
font-weight: 400; font-weight: 400;
max-height: 44px; max-height: 44px;
@ -952,6 +953,8 @@
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
} }
.kg-bookmark-metadata { .kg-bookmark-metadata {
@ -960,7 +963,7 @@
font-weight: 500; font-weight: 500;
display: flex; display: flex;
align-items: center; align-items: center;
margin-top: 14px; margin-top: 22px;
} }
.kg-bookmark-icon { .kg-bookmark-icon {