aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorhackademix <giorgio@maone.net>2018-09-13 22:37:11 +0200
committerhackademix <giorgio@maone.net>2018-09-13 22:37:11 +0200
commit3bf972bafeac738301623db6b08bedfd476abeca (patch)
tree26eeecff76b3a4c1f875373acdd5d926103d585c /html
parent78af0be0cfd259e59474dc7ac79144ce205139dd (diff)
Temporary hiding complain to owner feature until ready for prime time.
Diffstat (limited to 'html')
-rw-r--r--html/display_panel/content/panel-styles.css6
-rw-r--r--html/preferences_panel/preferences_panel.html4
-rw-r--r--html/preferences_panel/prefs.css4
3 files changed, 12 insertions, 2 deletions
diff --git a/html/display_panel/content/panel-styles.css b/html/display_panel/content/panel-styles.css
index 0d849e4..cbf5cf5 100644
--- a/html/display_panel/content/panel-styles.css
+++ b/html/display_panel/content/panel-styles.css
@@ -149,3 +149,9 @@ span.blocked {
width: 100%;
text-align: center;
}
+
+
+
+#complain {
+ display: none; /* TODO: Complaint to owner UI */
+}
diff --git a/html/preferences_panel/preferences_panel.html b/html/preferences_panel/preferences_panel.html
index ab89d92..effb724 100644
--- a/html/preferences_panel/preferences_panel.html
+++ b/html/preferences_panel/preferences_panel.html
@@ -44,7 +44,7 @@
<h3>Settings</h3>
</div>
<div id="widgets">
- <fieldset><legend>Allow or block scripts matching the following URLs ("*" matches any path)</legend>
+ <fieldset id="section-lists"><legend>Allow or block scripts matching the following URLs ("*" matches any path)</legend>
<label>Type a new whitelist / blacklist entry:</label>
<div id="new-site">
<input type="text" id="site" value="" placeholder="https://www.gnu.org/*">
@@ -69,7 +69,7 @@
</div>
</fieldset>
- <fieldset><legend>Complaint email defaults</legend>
+ <fieldset id="section-complaint"><legend>Complaint email defaults</legend>
<label for="pref_subject">Subject</label>
<input id="pref_subject" type="text"
value="Issues with Javascript on your website"
diff --git a/html/preferences_panel/prefs.css b/html/preferences_panel/prefs.css
index 3ac498e..b52d6c5 100644
--- a/html/preferences_panel/prefs.css
+++ b/html/preferences_panel/prefs.css
@@ -85,3 +85,7 @@ input[type="text"] {
background: #ffe;
color: #800;
}
+
+#section-complaint {
+ display: none; /* TODO: Complaint to owner UI */
+}