mirror of
https://github.com/docmost/docmost.git
synced 2026-05-22 01:32:55 +08:00
6cf8101ab3
* feat(ee): templates * fix tree * fix
82 lines
1.9 KiB
CSS
82 lines
1.9 KiB
CSS
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-6));
|
|
transition: transform 150ms ease;
|
|
box-shadow: light-dark(rgba(0, 0, 0, 0.07) 0px 2px 45px 4px, none);
|
|
|
|
@mixin hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: 2px solid var(--mantine-primary-color-filled);
|
|
outline-offset: 2px;
|
|
}
|
|
}
|
|
|
|
.cardBody {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 22px;
|
|
line-height: 1;
|
|
width: 36px;
|
|
height: 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--mantine-radius-md);
|
|
background-color: light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-5));
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.iconFallback {
|
|
composes: icon;
|
|
color: light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-3));
|
|
}
|
|
|
|
.title {
|
|
font-weight: 600;
|
|
font-size: var(--mantine-font-size-md);
|
|
line-height: 1.35;
|
|
color: light-dark(var(--mantine-color-gray-9), var(--mantine-color-gray-0));
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding-top: var(--mantine-spacing-sm);
|
|
margin-top: var(--mantine-spacing-lg);
|
|
border-top: 1px solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
|
|
}
|
|
|
|
.scopeDot {
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
background-color: light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-3));
|
|
}
|
|
|
|
.menuTarget {
|
|
opacity: 0;
|
|
transition: opacity 100ms ease;
|
|
|
|
.card:hover &,
|
|
.card:focus-within & {
|
|
opacity: 1;
|
|
}
|
|
}
|