static: fix backdrop for modals
This commit is contained in:
parent
8934a0d4f0
commit
b770508d68
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,8 @@
|
|||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "rollup -c ./rollup.config.js",
|
||||
"watch": "rollup -c -w"
|
||||
"watch": "rollup -c -w",
|
||||
"format": "prettier --write ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.15.1",
|
||||
|
|
|
@ -24,7 +24,6 @@ export class SiteShell extends LitElement {
|
|||
css`
|
||||
:host {
|
||||
position: relative;
|
||||
--pf-global--BackgroundColor--dark-transparent-100: rgba(0,0,0,0);
|
||||
}
|
||||
:host .pf-l-bullseye {
|
||||
position: absolute;
|
||||
|
@ -34,6 +33,14 @@ export class SiteShell extends LitElement {
|
|||
left: 0;
|
||||
z-index: 2000;
|
||||
}
|
||||
.pf-c-backdrop {
|
||||
--pf-c-backdrop--BackgroundColor: rgba(
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
) !important;
|
||||
}
|
||||
`,
|
||||
BackdropStyle,
|
||||
BullseyeStyle,
|
||||
|
|
Reference in New Issue