32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
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{background:transparent!important}'
|
|
'main{background:transparent!important}'
|
|
'main>div>div{background:rgba(255,255,255,0.15)!important;'
|
|
'backdrop-filter:blur(16px) saturate(180%)!important;'
|
|
'-webkit-backdrop-filter:blur(16px) saturate(180%)!important;'
|
|
'border:1px solid rgba(255,255,255,0.18)!important;'
|
|
'border-radius:16px!important;'
|
|
'box-shadow:0 8px 32px rgba(0,0,0,0.1)!important}'
|
|
'header,nav{background:rgba(255,255,255,0.1)!important;'
|
|
'backdrop-filter:blur(12px)!important;'
|
|
'-webkit-backdrop-filter:blur(12px)!important}'
|
|
'footer{background:transparent!important}'
|
|
'</style>'
|
|
)
|
|
|
|
content = content.rstrip() + '\ncustom_code: "' + css + '"\n'
|
|
|
|
with open("/tmp/nezha-config-fixed.yaml", "w") as f:
|
|
f.write(content)
|
|
|
|
print("done")
|