Files
vps-management-bot/tmp/fix-nezha-css3.py

32 lines
1.2 KiB
Python
Raw Normal View History

2026-03-21 01:10:53 +08:00
import re
with open("/tmp/nezha-config-raw.yaml") as f:
content = f.read()
content = re.sub(r"custom_code:.*\n?", "", content)
css = (
'<style>'
'body{background:url(/static/bg.jpg) no-repeat center center fixed!important;background-size:cover!important}'
'#root,.loaded,.bg-background,.flex.min-h-screen{background:transparent!important}'
'main{background:transparent!important}'
'main>div>div,section.flex{background:rgba(0,0,0,0.35)!important;'
'backdrop-filter:blur(8px)!important;'
'-webkit-backdrop-filter:blur(8px)!important;'
'border:1px solid rgba(255,255,255,0.1)!important;'
'border-radius:16px!important;'
'box-shadow:0 4px 24px rgba(0,0,0,0.2)!important}'
'header,nav,footer{background:transparent!important}'
'.bg-card,.bg-muted,.bg-accent,.bg-popover{background:rgba(0,0,0,0.25)!important}'
'p,span,h1,h2,h3,h4,a,button,label,.text-muted-foreground,.text-card-foreground,.text-foreground{color:rgba(255,255,255,0.9)!important}'
'.text-muted-foreground{color:rgba(255,255,255,0.6)!important}'
'</style>'
)
content = content.rstrip() + '\ncustom_code: "' + css + '"\n'
with open("/tmp/nezha-config-fixed.yaml", "w") as f:
f.write(content)
print("done")