mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
34 lines
562 B
Plaintext
34 lines
562 B
Plaintext
title: $:/PatchEncryptionPrompt
|
|
tags: $:/core/wiki/rawmarkup
|
|
|
|
<script>
|
|
|
|
window.$tw = window.$tw || Object.create(null);
|
|
$tw.boot = $tw.boot || Object.create(null);
|
|
|
|
$tw.boot.encryptionPrompts = {
|
|
decrypt: "Decrypt this TiddlyWiki by entering the password"
|
|
};
|
|
|
|
</script>
|
|
<style>
|
|
|
|
body .tc-password-wrapper {
|
|
background-color: rgb(183, 197, 235);
|
|
border: 8px solid rgb(152, 164, 197);
|
|
}
|
|
|
|
body .tc-password-wrapper form {
|
|
text-align: center;
|
|
}
|
|
|
|
body .tc-password-wrapper h1 {
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
body .tc-password-wrapper input {
|
|
width: auto;
|
|
}
|
|
|
|
</style>
|