Multi file upload, updated styling.

This commit is contained in:
2025-08-12 15:53:36 +02:00
parent e2772a31ab
commit 406836d1dc
8 changed files with 157 additions and 68 deletions

View File

@@ -117,7 +117,6 @@ pre code {
background: #f8fafc;
box-shadow: none;
border: 1px solid #e2e8f0;
border-left: 4px solid #3b82f6;
transition: all 0.15s ease;
position: relative;
}
@@ -160,7 +159,6 @@ pre code {
border-radius: 12px;
box-shadow: none;
border: 1px solid #e2e8f0;
border-left: 4px solid #6366f1;
transition: all 0.15s ease;
}
@@ -176,7 +174,6 @@ pre code {
border-radius: 12px;
box-shadow: none;
border: 1px solid #dcfce7;
border-left: 4px solid #22c55e;
}
.storage-info h3 {
@@ -229,7 +226,6 @@ pre code {
border-radius: 12px;
box-shadow: none;
border: 1px solid #e2e8f0;
border-left: 4px solid #8b5cf6;
}
/* Remove redundant changelog wrapper styles */
@@ -330,7 +326,6 @@ pre code {
padding: 14px 18px;
border-radius: 10px;
border: 1px solid #e2e8f0;
border-left: 4px solid #3b82f6;
transition: all 0.15s ease;
}
@@ -364,7 +359,6 @@ pre code {
.donation-item {
background: #ffffff;
border: 1px solid #e2e8f0;
border-left: 4px solid #22c55e;
border-radius: 10px;
padding: 12px;
margin: 10px 0;
@@ -733,7 +727,8 @@ pre code {
.tab-nav {
display: flex;
gap: 10px;
flex-wrap: wrap;
gap: 8px;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
@@ -744,6 +739,8 @@ pre code {
z-index: 5;
backdrop-filter: blur(8px);
box-shadow: 0 2px 8px rgba(2, 6, 23, 0.04);
overflow-x: hidden;
box-sizing: border-box;
}
.tab-btn {
@@ -751,12 +748,18 @@ pre code {
background: #f1f5f9;
border: 1px solid #e2e8f0;
color: #0f172a;
padding: 10px 16px;
border-radius: 10px;
padding: 8px 12px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
font-size: 13px;
transition: all 0.15s ease;
flex: 1;
min-width: 0;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
box-sizing: border-box;
}
.tab-btn:hover {
@@ -781,9 +784,39 @@ pre code {
.tab-panel[hidden] { display: none; }
@media (max-width: 768px) {
.tab-nav {
flex-direction: column;
gap: 6px;
padding: 8px;
margin: 8px 0 16px 0;
position: static;
}
.tab-btn {
padding: 10px 12px;
font-size: 14px;
text-align: center;
flex: none;
width: 100%;
white-space: normal;
}
}
@media (max-width: 640px) {
.tab-layout { padding: 14px; }
.tab-nav { position: static; }
.tab-layout { padding: 12px; }
.tab-nav {
padding: 6px;
margin: 6px 0 12px 0;
border-radius: 8px;
}
.tab-btn {
padding: 8px 10px;
font-size: 13px;
border-radius: 6px;
}
}
/* Upload UI - aligned with app styles */