summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-08-07 14:09:37 +0100
committerVincent Sanders <vince@kyllikki.org>2019-08-07 14:19:37 +0100
commit1b030bd8dea17ca1d91f68ee05f935e711e747be (patch)
tree6f0446fd45765d12d88c450163b7b8ae2d1fe06a /resources
parent8cec045cb7b433a0c0fc8000ad6bd09f67aaa0c8 (diff)
downloadnetsurf-1b030bd8dea17ca1d91f68ee05f935e711e747be.tar.gz
netsurf-1b030bd8dea17ca1d91f68ee05f935e711e747be.tar.bz2
add basic styling to about scheme privacy query page
Diffstat (limited to 'resources')
-rw-r--r--resources/FatMessages14
-rw-r--r--resources/internal.css28
2 files changed, 40 insertions, 2 deletions
diff --git a/resources/FatMessages b/resources/FatMessages
index 487fe31f7..2c0aa068d 100644
--- a/resources/FatMessages
+++ b/resources/FatMessages
@@ -2784,9 +2784,21 @@ nl.all.Cancel:Annuleer
#
en.all.PrivacyTitle:Privacy error
-en.all.PrivacyDescription:Attackers might be trying to steal your information from %s (for example, passwords, messages or credit cards) %s
+de.all.PrivacyTitle:Datenschutzfehler
+fr.all.PrivacyTitle:Erreur de confidentialité
+it.all.PrivacyTitle:Errore di privacy
+nl.all.PrivacyTitle:Privacyfout
+en.all.PrivacyDescription:A privacy error occurred while communicating with %s this may be a site configuration error or an attempt to steal private information (passwords, messages or credit cards)
en.all.Proceed:Proceed
+de.all.Proceed:Vorgehen
+fr.all.Proceed:Procéder
+it.all.Proceed:Procedere
+nl.all.Proceed:Doorgaan
en.all.Backtosafety:Back to safety
+de.all.Backtosafety:Zurück zur Sicherheit
+fr.all.Backtosafety:Retour a la sécurité
+it.all.Backtosafety:Ritorno alla sicurezza
+nl.all.Backtosafety:Terug naar veiligheid
# SSL certificate viewer
# ======================
diff --git a/resources/internal.css b/resources/internal.css
index 5e5dbf216..8de8ab41b 100644
--- a/resources/internal.css
+++ b/resources/internal.css
@@ -238,7 +238,7 @@ p.imagecachelist span {
}
/*
- * authentication styling
+ * authentication query styling
*/
body#authentication {
@@ -278,3 +278,29 @@ body#authentication div#buttons {
text-align: right;
margin-right: 1em;
}
+
+/*
+ * privacy query styling
+ */
+
+body#privacy {
+ max-width: 34em;
+}
+
+body#privacy form {
+ /* Just to center the form on the page */
+ margin: 0 auto;
+ /* To see the outline of the form */
+ padding: 1em;
+ border: 1px solid #CCC;
+ border-radius: 1em;
+}
+
+body#privacy form div + div {
+ margin-top: 1em;
+}
+
+body#privacy div#buttons {
+ text-align: right;
+ margin-right: 1em;
+}