Jeremy Newman : add defines for new debug log

Jeremy Newman jnewman at winehq.org
Mon Nov 21 08:38:07 CST 2016


Module: appdb
Branch: master
Commit: d161a148e233f1a195d7993e534ae4e309dc0d83
URL:    http://source.winehq.org/git/appdb.git/?a=commit;h=d161a148e233f1a195d7993e534ae4e309dc0d83

Author: Jeremy Newman <jnewman at codeweavers.com>
Date:   Tue Nov 15 12:09:09 2016 -0600

add defines for new debug log

---

 styles.css | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/styles.css b/styles.css
index dc41329..b08d0e8 100644
--- a/styles.css
+++ b/styles.css
@@ -293,3 +293,62 @@ div.rbox div.content                  { margin: 0; background-color: #FFFFFF; }
 .gold               { background-color: wheat; }
 .silver             { background-color: silver; }
 
+
+/*
+    ====================================================================================================================
+    debug log
+    ====================================================================================================================
+*/
+#dlog {
+    position: fixed;
+    left: 0px;
+    bottom: 0px;
+    width: 100%;
+    z-index: 9999;
+    margin: 0;
+    padding: 0;
+    color: #fff;
+    border-top: 1px outset rgba(48,48,48,0.8);
+    background-color: rgba(0,0,0,0.9);
+}
+#dlogt {
+    margin: 0;
+    font-size: x-small;
+    color: #777;
+    font-weight: bold;
+    cursor: pointer;
+    background-color: rgba(0,0,0,0.4);
+    border-top: 1px outset rgba(48,48,48,0.8);
+}
+#dlogp {
+    display: none;
+    margin: 0;
+    padding: 0;
+    overflow: auto;
+    height: 500px;
+}
+#dlogp pre {
+    font-family: monospace;
+    white-space: pre-wrap;
+    margin: 5px 20px 20px 20px;
+    background: inherit;
+    border: none;
+    color: #efefef;
+}
+
+div.appdb_dump {
+    display: inline-block;
+    position: relative;
+    z-index: 999;
+    min-width: 50px;
+    max-width: 600px;
+    max-height: 250px;
+    padding: 5px;
+    margin: 4px;
+    border: 1px dashed #FF0000;
+    background-color: #000000;
+    opacity: 0.8;
+    color: #FFFFFF;
+    overflow: auto;
+}
+div.appdb_dump xmp { margin: 0; }




More information about the wine-cvs mailing list