Archived
2
0

adjust dual urls

This commit is contained in:
overcuriousity
2025-07-14 16:56:06 +02:00
parent b8183ec961
commit b842df040c
5 changed files with 452 additions and 125 deletions

View File

@@ -472,6 +472,15 @@ footer {
flex-direction: column;
text-align: center;
}
/* Add this inside the existing @media (max-width: 768px) block */
.collaboration-tools-compact {
flex-direction: column;
}
.collaboration-tool-compact {
min-width: auto;
max-width: none;
}
}
/* Animations */
@@ -482,4 +491,64 @@ footer {
.fade-in {
animation: fadeIn 0.3s ease-in;
}
/* Compact Collaboration Tools for Matrix View */
.collaboration-tools-compact {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.collaboration-tool-compact {
background-color: var(--color-bg);
border: 1px solid var(--color-border);
border-radius: 0.375rem;
padding: 0.75rem;
min-width: 200px;
max-width: 300px;
flex: 1;
cursor: pointer;
transition: all 0.2s ease;
}
.collaboration-tool-compact:hover {
border-color: var(--color-primary);
box-shadow: var(--shadow-sm);
}
.collaboration-tool-compact.hosted {
background-color: var(--color-hosted-bg);
border-color: var(--color-hosted);
}
.collaboration-tool-compact.oss {
background-color: var(--color-oss-bg);
border-color: var(--color-oss);
}
.tool-compact-header {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 0.5rem;
}
.badge-mini {
display: inline-flex;
align-items: center;
padding: 0.0625rem 0.375rem;
border-radius: 9999px;
font-size: 0.625rem;
font-weight: 500;
}
.badge-mini.badge-primary {
background-color: var(--color-primary);
color: white;
}
.badge-mini.badge-success {
background-color: var(--color-accent);
color: white;
}