x
1
2
3
<span data-view-component="true" class="Truncate"> <span data-view-component="true" class="Truncate-text">branch-name-that-is-really-long</span></span>
1
render(Primer::Beta::Truncate.new) { text }
No notes provided.
Param | Description | Input |
---|---|---|
— |
|
app/components/primer/beta/truncate.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Truncate */.Truncate { display: inline-flex; min-width: 0; max-width: 100%;}.Truncate > .Truncate-text { min-width: 1ch; max-width: -moz-fit-content; max-width: fit-content; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.Truncate > .Truncate-text + .Truncate-text { margin-left: var(--control-small-gap,0.25rem); }.Truncate > .Truncate-text.Truncate-text--primary { flex-basis: 200%; }.Truncate > .Truncate-text.Truncate-text--expandable:hover, .Truncate > .Truncate-text.Truncate-text--expandable:focus, .Truncate > .Truncate-text.Truncate-text--expandable:active { max-width: 100% !important; }.Truncate > .Truncate-text.Truncate-text--expandable:hover, .Truncate > .Truncate-text.Truncate-text--expandable:focus, .Truncate > .Truncate-text.Truncate-text--expandable:active { flex-shrink: 0; cursor: pointer; }