]> mop.ddnsfree.com - git repositories - brisk.git/commitdiff
management of user avatar refactored (removed books from chat)
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Mon, 23 Nov 2015 18:04:04 +0000 (19:04 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Mon, 23 Nov 2015 18:05:13 +0000 (19:05 +0100)
TODO.txt
doc/ARCHITECTURE.txt
web/brisk.css
web/commons.js

index 9818d8686c2e1a0bde6c419d9d08451c98312b16..86bddddc301e9493f8680af118a76be7b90595fe 100644 (file)
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,14 +1,26 @@
  TODO |
 ------+
 
+  BUGS |
+ ------+
+   - Global vars checker
+   - Not triple chars between letters
+   - 10002 message when already clicked
+   - usermgmt: add user delete
+   - trim spaces in apprentice form
+   DONE - Remove books from chat
+   DONE - usermgmt: add email
+
   FEATURES |
  ----------+
+   * inherited info
    * Users Network construction
      DONE - sql
      - dbase API
      - enhance info interface
        . disable parts of interface
      - minisplash at end of the match
+     - differentiate table authorization
 
    * Double click on chat to open preferences
 
        DONE . migration script for old users
      - guarantee for apprentice
 
-  BUGS |
- ------+
-   - Global vars checker
-   - Remove books from chat
-   - Not triple chars between letters
-   - 10002 message when already clicked
-   - usermgmt: add user delete
-   DONE - usermgmt: add email
 
 
 ---------
index f1d706912537c9f0989091b074f8965c262cc21a..b89ba88ca3fc7a9104b6757b7353aa3b9297721e 100644 (file)
@@ -1,5 +1,10 @@
 ===== Sparse documentation about Brisk. =====
 
+==== Form Workflow ====
+
+- div on page
+
+
 User cleanup:
   spush::garbage_manager()
     if (user->the_end)
index d4bafaaffd0eeefe5e5e9628489048d92f788804..ef056ab4b5fc25bd0254a4d660eb286429a61e6d 100644 (file)
@@ -269,19 +269,29 @@ img.button:hover {
 span.au0 span {
     font-weight: bold;
 }
+span.au0_off span {
+    font-weight: bold;
+}
 
 span.au1 span {
     padding-left: 2px;
     padding-right: 4px;
     font-style: italic;
-/* orange   background-color: #ffd780; */
-/* red      background-color: #ffb0b0; */
+    background-color: #a1c8ff;
+}
+span.au1_off span {
+    padding-left: 2px;
+    padding-right: 4px;
+    font-style: italic;
     background-color: #a1c8ff;
 }
 
 span.au2 span {
     background-color: #bafcba;
 }
+span.au2_off span {
+    background-color: #bafcba;
+}
 
 span.au3 {
     padding-left: 24px;
@@ -290,6 +300,12 @@ span.au3 {
     background-position: left center;
 }
 
+span.au3_off span {
+    background-color: transparent;
+}
+span.au3_off {
+}
+
 span.au3 span {
     background-color: transparent;
 }
index 7dcf92225a2630f9f6805e31a541eb6d32ac142f..bb2541b0416d79168c1001b524cbb5d98f9c2c94 100644 (file)
@@ -1038,7 +1038,7 @@ function user_decorator(user, is_real)
 
     for (i = 0 ; i < 4 ; i++) {
         if (flags & (1 << i)) {
-            cl += sp + "au" + i;
+            cl += sp + "au" + i + (is_real ? "" : "_off");
             sp = " ";
         }
     }