Began working on the screen layout for compose mail
authorArt Cancro <ajc@citadel.org>
Wed, 5 Oct 2022 02:18:32 +0000 (22:18 -0400)
committerArt Cancro <ajc@citadel.org>
Wed, 5 Oct 2022 02:18:32 +0000 (22:18 -0400)
webcit-ng/static/css/webcit.css
webcit-ng/static/js/view_mail.js

index 12e0ce39ccbc6ee565584c3d40789bfba955d033..b0af8d64eac7b429de5b8525ed335b70bfb96a5a 100644 (file)
@@ -469,6 +469,7 @@ blockquote pre {
        height: 100%;
        overflow: auto;
        border: 2px dashed red;                 /* FIXME this goes away after testing */
+       background-color: GhostWhite;
 }
 
 .ctdl-login-screen-grid-container {
index 9a8403f9b96490a9974bcff5d605f657733c1d67..37773c294ff35e4ee147cd2630d3354b2118190a 100644 (file)
@@ -207,10 +207,12 @@ function mail_compose(is_quoted, references, msgid) {
        document.getElementById("ctdl-main").innerHTML
                = "<div id=\"ctdl-compose-mail\" class=\"ctdl-compose-mail\">"
 
+               // These should be hidden but we're in the process of building
+               + "is_quoted: <input id=\"ctdl_mc_is_quoted\" style=\"display:block\" value=\"" + is_quoted + "\"></input>"
+               + "references: <input id=\"ctdl_mc_references\" style=\"display:block\" value=\"" + references + "\"></input>"
+               + "reply-to msgid: <input id=\"ctdl_mc_reply_msgid\" style=\"display:block\" value=\"" + msgid + "\"></input>"
+
                + "<table border=\"1\" width=\"100%\">"
-               + "<tr><td>is_quoted</td><td>" + is_quoted + "</td></tr>"
-               + "<tr><td>references</td><td>" + references + "</td></tr>"
-               + "<tr><td>msgid</td><td>" + msgid + "</td></tr>"
                + "<tr><td>from</td><td>" + current_user + "</td></tr>"
                + "<tr><td>to</td><td></td></tr>"
                + "<tr><td>subject</td><td></td></tr></table>"