Previews

No matching results.

x
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
38
39
40
41
42
<button id="overlay-show-overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" popovertarget="overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" aria-haspopup="true" type="button" data-view-component="true" class="Button--secondary Button--medium Button"> <span class="Button-content">
<span class="Button-label">Show Overlay</span>
</span>
</button>
<anchored-position role="dialog" id="overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" anchor="overlay-show-overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" align="start" side="outside-bottom" anchor-offset="normal" popover="auto" aria-labelledby="overlay-title-overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" data-view-component="true">
<div data-view-component="true" class="Overlay Overlay--size-large">
<header data-view-component="true" class="Overlay-header Overlay-header--divided">
<div class="Overlay-headerContentWrap">
<div class="Overlay-titleWrap">
<h1 id="overlay-title-overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" class="Overlay-title ">Large Dialog Header</h1>
</div>
<div class="Overlay-actionWrap">
<button popovertarget="overlay-e3b70b6e-db10-4921-a153-3790fe50c0bf" popovertargetaction="hide" aria-label="Close" type="button" data-view-component="true" class="close-button Overlay-closeButton"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
<path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
</svg></button>
</div>
</div>
</header>
<div data-view-component="true" class="Overlay-body Overlay-body--paddingCondensed">This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
This is a long body for the overlay dialog. <br>
</div>
<div data-view-component="true" class="Overlay-footer Overlay-footer--alignEnd">Large Dialog Footer</div>
</div>
</anchored-position>
1
2
3
4
5
6
render(Primer::Alpha::Overlay.new(title: "Dialog", role: :dialog, size: :large, padding: :condensed)) do |d|
d.with_header(title: "Large Dialog Header", divider: true)
d.with_show_button { "Show Overlay" }
d.with_footer { "Large Dialog Footer" }
d.with_body { "This is a long body for the overlay dialog. <br>".html_safe * 20 }
end

app/components/primer/alpha/overlay.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
anchored-position[popover] {
border-width: 0;
padding: 0;
position: absolute;
min-width: 192px;
overflow: visible;
}
anchored-position:not(.Overlay) {
background: none;
}
/* stylelint-disable-next-line selector-pseudo-class-no-unknown */
.Overlay[popover]:not(:popover-open) {
display: none
}
anchored-position.not-anchored::backdrop, dialog::backdrop {
background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted));
}
@media (forced-colors: active) {
.Overlay {
outline: solid 1px transparent;
}
}