mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Compare commits
3 commits
2be9217ba7
...
17714f5f3e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17714f5f3e | ||
|
|
095474a901 | ||
|
|
7341a49407 |
5 changed files with 8 additions and 6 deletions
|
|
@ -1,14 +1,11 @@
|
||||||
---
|
---
|
||||||
title: "Permission syncing"
|
title: "Permission syncing"
|
||||||
sidebarTitle: "Permission syncing"
|
sidebarTitle: "Permission syncing"
|
||||||
tag: "experimental"
|
|
||||||
---
|
---
|
||||||
|
|
||||||
import LicenseKeyRequired from '/snippets/license-key-required.mdx'
|
import LicenseKeyRequired from '/snippets/license-key-required.mdx'
|
||||||
import ExperimentalFeatureWarning from '/snippets/experimental-feature-warning.mdx'
|
|
||||||
|
|
||||||
<LicenseKeyRequired />
|
<LicenseKeyRequired />
|
||||||
<ExperimentalFeatureWarning />
|
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ export const CodePreview = ({
|
||||||
}}
|
}}
|
||||||
title={file.filepath}
|
title={file.filepath}
|
||||||
>
|
>
|
||||||
{file.filepath}
|
<span>{file.filepath}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ export const Entry = ({
|
||||||
<div className="overflow-hidden flex-1 min-w-0">
|
<div className="overflow-hidden flex-1 min-w-0">
|
||||||
<Tooltip>
|
<Tooltip>
|
||||||
<TooltipTrigger asChild>
|
<TooltipTrigger asChild>
|
||||||
<p className="overflow-hidden text-ellipsis whitespace-nowrap truncate-start">{displayName}</p>
|
<p className="overflow-hidden text-ellipsis whitespace-nowrap truncate-start"><span>{displayName}</span></p>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent side="right" className="max-w-sm">
|
<TooltipContent side="right" className="max-w-sm">
|
||||||
<p className="font-mono text-sm break-all whitespace-pre-wrap">{displayName}</p>
|
<p className="font-mono text-sm break-all whitespace-pre-wrap">{displayName}</p>
|
||||||
|
|
|
||||||
|
|
@ -313,6 +313,11 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.truncate-start > * {
|
||||||
|
direction: ltr;
|
||||||
|
unicode-bidi: embed;
|
||||||
|
}
|
||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
* {
|
* {
|
||||||
@apply border-border;
|
@apply border-border;
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ export const FileListItem = ({
|
||||||
pathType: 'blob',
|
pathType: 'blob',
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
{path}
|
<span>{path}</span>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue