aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/web/fixmybarangay/footer.html15
-rw-r--r--web/cobrands/fixmybarangay/message_manager.scss10
2 files changed, 21 insertions, 4 deletions
diff --git a/templates/web/fixmybarangay/footer.html b/templates/web/fixmybarangay/footer.html
index afdeabc60..5bac32e98 100644
--- a/templates/web/fixmybarangay/footer.html
+++ b/templates/web/fixmybarangay/footer.html
@@ -148,14 +148,23 @@
</p>
[% END %]
<h3>
- Replying to a message
+ <span class="demo_detach_btn">detach</span> Detaching a message ("not a reply")
+ </h3>
+ <p>
+ Message Manager tries to notice when an incoming message is a reply. Sometimes it guesses wrong. To detach a
+ message from its parent &mdash; that is, to mark it as <em>not a reply</em>, hover over the message and click
+ <span class="demo_detach_btn">detach</span>.
+ </p>
+
+ <h3>
+ <span class="demo_reply_btn">reply</span> Replying to a message
</h3>
<p>
You can send an SMS back to the original sender: just hover over the message and click <span class="demo_reply_btn">reply</span>. It will usually
take a few minutes for the message to arrive.
</p>
<h3>
- Getting message info
+ <span class="demo_info_btn">i</span> Getting message info
</h3>
<p>
Hover over a message and click on its <span class="demo_info_btn">i</span> button to see when it was sent.
@@ -163,7 +172,7 @@
actual number (instead the number is scrambled, but will be the <em>same scrambled number</em> on other messages they've sent).
</p>
<h3>
- Hiding a message
+ <span class="demo_hide_btn">X</span> Hiding a message
</h3>
<p>
If a message can't be used to create a report, you can hide it by hovering over it and clicking its <span class="demo_hide_btn">X</span> button. If you're not
diff --git a/web/cobrands/fixmybarangay/message_manager.scss b/web/cobrands/fixmybarangay/message_manager.scss
index 6143f2f34..7e92f6366 100644
--- a/web/cobrands/fixmybarangay/message_manager.scss
+++ b/web/cobrands/fixmybarangay/message_manager.scss
@@ -236,7 +236,7 @@ p.mm-submitted-by-sms {
}
}
#mm-help {
- .demo_hide_btn, .demo_reply_btn, .demo_info_btn {
+ .demo_hide_btn, .demo_reply_btn, .demo_info_btn, .demo_detach_btn {
color: #fff;
font-weight: bold;
padding: 0.2em 0.4em;
@@ -244,4 +244,12 @@ p.mm-submitted-by-sms {
.demo_hide_btn { background-color: $color_bg_btn_hide; }
.demo_reply_btn { background-color: $color_bg_btn_reply; }
.demo_info_btn { background-color: $color_bg_btn_info; }
+ .demo_detach_btn{ background-color: $color_bg_btn_detach; }
+ h3 {
+ border-top: 1px solid $color_reply_bg;
+ padding-top: 0.8em;
+ }
+ p {
+ margin: 1em;
+ }
}