]> code.citadel.org Git - citadel.git/commitdiff
* CSS change to make folder names stand out more in the "Folder View"
authorArt Cancro <ajc@citadel.org>
Mon, 24 May 2004 03:02:38 +0000 (03:02 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 24 May 2004 03:02:38 +0000 (03:02 +0000)
webcit/ChangeLog
webcit/roomops.c
webcit/static/style.css

index 68ed29db205677d0b23b780b10c8ad02e2b024a0..3780e2fa1e5263c75be2f60177cfacdc4bcf5b54 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 510.1  2004/05/24 03:02:38  ajc
+* CSS change to make folder names stand out more in the "Folder View"
+
 Revision 510.0  2004/04/30 04:08:58  ajc
 * THIS IS 5.10
 
@@ -1809,3 +1812,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 7365f6981980ba3db71133ab7100f795c89eeaa2..042144d6352431a72e05cfa113ea476a15081aca 100644 (file)
@@ -1913,7 +1913,10 @@ void do_folder_view(struct folder *fold, int max_folders, int num_floors) {
                else {
                        wprintf("<i>");
                }
-               if (fold[i].hasnewmsgs) {
+               if (levels == 1) {
+                       wprintf("<SPAN CLASS=\"roomlist_floor\">");
+               }
+               else if (fold[i].hasnewmsgs) {
                        wprintf("<SPAN CLASS=\"roomlist_new\">");
                }
                else {
index 6f6486b293e68a8ad8a458d893cb9765b1182b44..6da95250561126c825bf8baeb7621c13f990f0b5 100644 (file)
@@ -132,6 +132,13 @@ a:active {
        letter-spacing: 1pt;
 }
 
+.roomlist_floor {
+       font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
+       font-size: 12pt;
+       font-weight: bold;
+       color: #000000;
+}
+
 .roomlist_new {
        font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif;
        font-size: 10pt;