Merge pull request #528 from dlynas/feat/wrap-discog-modal-text
feat: wrap discog modal card titles instead of truncating
This commit is contained in:
commit
c6cc8a9923
1 changed files with 3 additions and 2 deletions
|
|
@ -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…
Reference in a new issue