mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Fix dev overlay style leak (#9220)
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
This commit is contained in:
parent
f4401c8c1f
commit
4a5f2cde17
1 changed files with 6 additions and 4 deletions
|
@ -35,8 +35,10 @@ export class AstroDevOverlay extends HTMLElement {
|
|||
async connectedCallback() {
|
||||
if (!this.hasBeenInitialized) {
|
||||
this.shadowRoot.innerHTML = `
|
||||
<style>
|
||||
<style>
|
||||
:host {
|
||||
/* Important! Reset all inherited styles to initial */
|
||||
all: initial;
|
||||
z-index: 999999;
|
||||
view-transition-name: astro-dev-overlay;
|
||||
display: contents;
|
||||
|
@ -44,7 +46,7 @@ export class AstroDevOverlay extends HTMLElement {
|
|||
|
||||
::view-transition-old(astro-dev-overlay),
|
||||
::view-transition-new(astro-dev-overlay) {
|
||||
animation: none;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
#dev-overlay {
|
||||
|
@ -73,7 +75,7 @@ export class AstroDevOverlay extends HTMLElement {
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
#dev-bar {
|
||||
#dev-bar {
|
||||
height: 56px;
|
||||
overflow: hidden;
|
||||
pointer-events: auto;
|
||||
|
@ -253,7 +255,7 @@ export class AstroDevOverlay extends HTMLElement {
|
|||
white-space: nowrap;
|
||||
border-width: 0;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
<div id="dev-overlay">
|
||||
<div id="dev-bar">
|
||||
|
|
Loading…
Add table
Reference in a new issue