wrap record info fields separatedly from link btn

This commit is contained in:
Gani Georgiev
2025-10-19 15:38:21 +03:00
parent 69be986132
commit a7ebb98e20
33 changed files with 69 additions and 49 deletions
+3 -1
View File
@@ -15,7 +15,9 @@
</script>
<div class="record-info-excerpt">
<RecordInfoContent {record} />
<div class="content">
<RecordInfoContent {record} />
</div>
<a
href="#/collections?collection={record.collectionId}&recordId={record.id}"
+21 -6
View File
@@ -962,15 +962,30 @@ a.thumb:not(.thumb-active) {
.record-info-excerpt {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
gap: 5px;;
flex-wrap: nowrap;
gap: 5px;
max-width: 100%;
min-width: 0;
line-height: 18px;
min-width: 40px;
line-height: 18px;;
padding-left: 1px; // for visual alignment with the new tab icon
text-align: left;
white-space: normal;
word-break: break-all;
.content {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 5px;;
width: auto;
min-width: 0;
text-align: left;
white-space: normal;
word-break: break-all;
.txt {
max-width: 140px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.delimiter {
font-size: 0.8em;
color: var(--txtDisabledColor);
+3
View File
@@ -138,6 +138,9 @@ table {
line-height: var(--smLineHeight);
max-width: 300px;
}
.col-type-relation {
min-width: 120px;
}
.col-type-text {
max-width: 300px;
}