0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): remove connector id and prevent text overflow (#2072)

This commit is contained in:
wangsijie 2022-10-12 14:42:20 +08:00 committed by GitHub
parent 343456f44d
commit 05b50250a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 17 deletions

View file

@ -46,11 +46,6 @@
}
.content {
// https://css-tricks.com/almanac/properties/l/line-clamp/
/* stylelint-disable-next-line value-no-vendor-prefix */
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
overflow: hidden;
@include _.multi-line-ellipsis(6);
}
}

View file

@ -45,8 +45,7 @@
font: var(--font-body-small);
color: var(--color-caption);
margin-top: _.unit(1);
height: 60px;
overflow: hidden;
@include _.multi-line-ellipsis(3);
}
}
}

View file

@ -127,9 +127,6 @@ const CreateForm = ({ onClose, isOpen: isFormOpen, type }: Props) => {
<div className={styles.name}>
<UnnamedTrans resource={name} />
</div>
{type !== ConnectorType.Social && (
<div className={styles.connectorId}>{id}</div>
)}
<div className={styles.description}>
<UnnamedTrans resource={description} />
</div>

View file

@ -86,3 +86,13 @@
transform: translateX(100%);
}
}
@mixin multi-line-ellipsis($line) {
// https://css-tricks.com/almanac/properties/l/line-clamp/
/* stylelint-disable-next-line value-no-vendor-prefix */
display: -webkit-box;
-webkit-line-clamp: $line;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

View file

@ -43,11 +43,6 @@ $logo-height: 60px;
font: var(--font-title-small);
color: var(--color-text);
text-align: center;
text-overflow: ellipsis;
/* stylelint-disable-next-line value-no-vendor-prefix */
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
@include _.multi-line-ellipsis(2);
}
}

View file

@ -43,3 +43,13 @@
@function border($color: transparent, $width: 1) {
@return #{$width}px solid #{$color};
}
@mixin multi-line-ellipsis($line) {
// https://css-tricks.com/almanac/properties/l/line-clamp/
/* stylelint-disable-next-line value-no-vendor-prefix */
display: -webkit-box;
-webkit-line-clamp: $line;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}