lelms-copyright/css/style.css
文派备案 ee72143cbb 升级至1.1.5 稳定版本
添加了访客模式、自定义水印文本、自定义文章类型、权限管理等
2025-04-06 22:13:55 +08:00

41 lines
737 B
CSS

#lelms-watermark {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 999;
}
.watermark-text {
position: absolute;
user-select: none;
pointer-events: none;
}
/* Allow form elements to interact */
input, textarea, select, button,
[contenteditable="true"],
a, button {
pointer-events: auto !important;
user-select: auto !important;
}
@media print {
#lelms-watermark {
display: none !important;
}
body * {
display: none !important;
}
body:after {
content: "Printing is disabled";
display: block !important;
text-align: center;
font-size: 24px;
margin-top: 50px;
}
}