image library

created using VS Codey Copilot Agent with Claude Sonnet 4
This commit is contained in:
Tobias Brunner 2025-07-04 16:28:13 +02:00
parent bdf06863d2
commit 52dbe89582
No known key found for this signature in database
14 changed files with 1366 additions and 3 deletions

View file

@ -0,0 +1,79 @@
/* CSS for Image Library Admin */
/* Thumbnail styling in list view */
.image-thumbnail {
border-radius: 4px;
object-fit: cover;
}
/* Preview styling in detail view */
.image-preview {
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Form styling */
.image-library-form .form-row {
margin-bottom: 15px;
}
.image-library-form .help {
font-size: 11px;
color: #666;
margin-top: 5px;
}
/* Usage count styling */
.usage-count {
font-weight: bold;
color: #0066cc;
}
.usage-count.high {
color: #cc0000;
}
/* Category badges */
.category-badge {
display: inline-block;
padding: 2px 6px;
border-radius: 3px;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
}
.category-badge.logo {
background-color: #e8f4f8;
color: #2c6e92;
}
.category-badge.article {
background-color: #f0f8e8;
color: #5a7c3a;
}
.category-badge.banner {
background-color: #fef4e8;
color: #d2691e;
}
.category-badge.icon {
background-color: #f8e8f8;
color: #8b4c8b;
}
.category-badge.screenshot {
background-color: #e8f8f4;
color: #3a7c5a;
}
.category-badge.photo {
background-color: #f4e8f8;
color: #923c92;
}
.category-badge.other {
background-color: #f0f0f0;
color: #666;
}