Move exif info into common "details" view

This commit is contained in:
N-Pex 2025-09-23 12:52:52 +02:00
parent 609e4a97c2
commit 0f7b9ac7ab
12 changed files with 308 additions and 230 deletions

View file

@ -516,7 +516,14 @@ $hiliteColor: #4642f1;
.attachment-info {
text-align: start;
position: relative;
display: flex;
flex-direction: column;
height: 100%;
.attachment-info__content {
flex: 1 1 auto;
}
.attachment-info__quality {
.attachment-info__quality__title {
font-family: "Inter", sans-serif;
@ -613,12 +620,13 @@ $hiliteColor: #4642f1;
font-size: 14px;
line-height: 125%;
letter-spacing: 0.4px;
margin-top: 8px;
margin-top: 22px;
padding-bottom: 4px;
a, a:visited {
font-weight: 700;
color: #8A87FF;
text-decoration: none !important;
color: white;
text-decoration: underline !important;
margin-right: 4px;
}
}
@ -633,11 +641,13 @@ $hiliteColor: #4642f1;
display: flex;
.v-icon {
color: #dad9fc;
padding: 9.33px;
margin-right: 8px;
width: 32px;
height: 32px;
background-color: black;
border-radius: 4px;
}
.detail-row__text {
@ -656,4 +666,17 @@ $hiliteColor: #4642f1;
}
}
}
.attachment-info__download-button {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 14 * $chat-text-size;
color: white;
background-color: transparent;
border: 1px solid white;
border-radius: 24 * $chat-text-size;
height: 48 * $chat-text-size;
flex: 0 0 (48 * $chat-text-size);
}
}