mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Move VT route announcer styles to a class (#8965)
This commit is contained in:
parent
ef8964c04d
commit
430c470ace
3 changed files with 21 additions and 4 deletions
7
.changeset/sweet-nails-dream.md
Normal file
7
.changeset/sweet-nails-dream.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Move VT route announcer styles to a class
|
||||
|
||||
Doing so allows stricter CSP policies.
|
|
@ -54,3 +54,16 @@
|
|||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Route announcer */
|
||||
.astro-route-announcer {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
clip:rect(0 0 0 0);
|
||||
clip-path:inset(50%);
|
||||
overflow:hidden;
|
||||
white-space:nowrap;
|
||||
width:1px;
|
||||
height:1px;
|
||||
}
|
||||
|
|
|
@ -30,10 +30,7 @@ const announce = () => {
|
|||
let div = document.createElement('div');
|
||||
div.setAttribute('aria-live', 'assertive');
|
||||
div.setAttribute('aria-atomic', 'true');
|
||||
div.setAttribute(
|
||||
'style',
|
||||
'position:absolute;left:0;top:0;clip:rect(0 0 0 0);clip-path:inset(50%);overflow:hidden;white-space:nowrap;width:1px;height:1px'
|
||||
);
|
||||
div.className = 'astro-route-announcer';
|
||||
document.body.append(div);
|
||||
setTimeout(
|
||||
() => {
|
||||
|
|
Loading…
Add table
Reference in a new issue