Merge pull request #528 from dlynas/feat/wrap-discog-modal-text

feat: wrap discog modal card titles instead of truncating
pull/576/head
BoulderBadgeDad 2 days ago committed by GitHub
commit c6cc8a9923
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -45943,7 +45943,7 @@ textarea.enhanced-meta-field-input {
}
.discog-card {
display: flex; align-items: center; gap: 10px;
display: flex; align-items: flex-start; gap: 10px;
padding: 8px 10px; border-radius: 10px;
background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
cursor: pointer; transition: all 0.15s ease;
@ -45980,7 +45980,7 @@ textarea.enhanced-meta-field-input {
.discog-card-title {
font-size: 13px; font-weight: 600; color: #fff;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
white-space: normal; word-break: break-word;
}
.discog-card-meta { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
@ -45989,6 +45989,7 @@ textarea.enhanced-meta-field-input {
width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
border: 2px solid rgba(255,255,255,0.15); transition: all 0.15s ease;
display: flex; align-items: center; justify-content: center;
margin-top: 2px;
}
.discog-card-cb:checked ~ .discog-card-check {

Loading…
Cancel
Save