mirror of
https://github.com/WenPai-org/lelms-copyright.git
synced 2026-02-24 21:57:27 +08:00
Added lelms-copyright-zh_CN.l10n.php for improved localization, updated zh_CN.po and zh_CN.mo with new and revised translations, and incremented plugin version to 1.1.9 in lelms-copyright.php. File permissions were also updated for several files.
41 lines
737 B
CSS
Executable file
41 lines
737 B
CSS
Executable file
#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;
|
|
}
|
|
}
|