Properly wrap integration title / device names (#7355)

This commit is contained in:
Philip Allgaier 2020-10-17 22:28:40 +02:00 committed by GitHub
parent eb036a12d9
commit 6e130cc020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -495,7 +495,6 @@ export class HaIntegrationCard extends LitElement {
max-height: 100%;
max-width: 90%;
}
.none-found {
margin: auto;
text-align: center;
@ -510,6 +509,14 @@ export class HaIntegrationCard extends LitElement {
margin-top: 0;
min-height: 24px;
}
h3 {
word-wrap: break-word;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
}
ha-button-menu {
color: var(--secondary-text-color);
--mdc-menu-min-width: 200px;