mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-07 03:29:19 +02:00
- Add comprehensive migration guides (DEPLOYMENT_MIGRATION.md, DIRECTORY_STRUCTURE.md, MIGRATION_CHECKLIST.md) - Refactor admin panel: split add.php, create reusable header/footer - Update styles: admin.css, common.css, main.css - Improve public pages: index.php, memoire.php - Reorganize database documentation into database/docs/ - Update .gitignore and justfile This prepares for migration to public/ directory structure
181 lines
2.3 KiB
CSS
181 lines
2.3 KiB
CSS
main {
|
|
margin: 1.2rem 0;
|
|
}
|
|
|
|
.filters {
|
|
background: #f5f5f5;
|
|
padding: 1rem;
|
|
margin-bottom: 2rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.filters form {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
align-items: end;
|
|
}
|
|
|
|
.filters fieldset {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.thesis-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.thesis-table th,
|
|
.thesis-table td {
|
|
padding: 0.75rem;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.thesis-table th {
|
|
background: #f0f0f0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.thesis-table tr:hover {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.thesis-title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.thesis-subtitle {
|
|
font-style: italic;
|
|
color: #666;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 3px;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.status-pending {
|
|
background: #ffd700;
|
|
color: #000;
|
|
}
|
|
|
|
.status-published {
|
|
background: #90ee90;
|
|
color: #000;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.btn {
|
|
padding: 0.35rem 0.75rem;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
font-size: 0.9em;
|
|
display: inline-block;
|
|
}
|
|
|
|
.btn-view {
|
|
background: #4a90e2;
|
|
color: white;
|
|
}
|
|
|
|
.btn-edit {
|
|
background: #f39c12;
|
|
color: white;
|
|
}
|
|
|
|
.btn-publish {
|
|
background: #27ae60;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-unpublish {
|
|
background: #95a5a6;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.publish-form {
|
|
display: inline;
|
|
margin: 0;
|
|
}
|
|
|
|
.stats {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.stat-card {
|
|
background: #f5f5f5;
|
|
padding: 1rem;
|
|
border-radius: 4px;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
color: #4a90e2;
|
|
}
|
|
|
|
.stat-label {
|
|
color: #666;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.bulk-actions {
|
|
background: #f5f5f5;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.bulk-actions-buttons {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.btn-bulk-publish {
|
|
background: #27ae60;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.btn-bulk-unpublish {
|
|
background: #95a5a6;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.select-checkbox {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.select-all-checkbox {
|
|
cursor: pointer;
|
|
}
|