Add attachment support to agreements and enhance image handling

This commit is contained in:
Rinjae
2026-01-07 15:24:35 +09:00
parent f7dff3e8db
commit 868fb9a85d
8 changed files with 230 additions and 13 deletions
+30
View File
@@ -17506,6 +17506,32 @@ body.commission-print-page .btn-primary:hover {
.terms-content {
padding: 0 32px;
}
.terms-content .terms-attachment {
margin-bottom: 16px;
}
.terms-content .terms-attachment .attachment-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: #FFFFFF;
border: 1px solid #0049b4;
border-radius: 6px;
color: #0049b4;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}
.terms-content .terms-attachment .attachment-link:hover {
background: #0049b4;
color: #FFFFFF;
}
.terms-content .terms-attachment .attachment-link svg {
flex-shrink: 0;
}
.terms-content {
min-height: 400px;
background-color: #F6F9FB;
}
@@ -17516,6 +17542,8 @@ body.commission-print-page .btn-primary:hover {
}
}
.terms-content .content-body {
padding-top: 24px;
padding-bottom: 24px;
font-size: 16px;
color: #1A1A2E;
line-height: 1.8;
@@ -17523,6 +17551,8 @@ body.commission-print-page .btn-primary:hover {
}
@media (max-width: 768px) {
.terms-content .content-body {
padding-top: 16px;
padding-bottom: 16px;
font-size: 14px;
}
}
File diff suppressed because one or more lines are too long