ctdl-roomlist-floor class for the floor banner over each floor's room list
authorArt Cancro <ajc@citadel.org>
Fri, 28 Jan 2022 00:22:36 +0000 (19:22 -0500)
committerArt Cancro <ajc@citadel.org>
Fri, 28 Jan 2022 00:22:36 +0000 (19:22 -0500)
webcit-ng/static/css/webcit.css
webcit-ng/static/js/roomlist.js

index 69558775c8ad8df6c3308507fe5dab7c0bf71720..7af7bb1f956e4ae5bbef23d7b7f91870654e742d 100644 (file)
@@ -133,3 +133,7 @@ blockquote pre {
        margin-right: 1%;
 }
 
+.ctdl-roomlist-floor {
+       font-weight: bold;
+       font-size: x-large;
+}
index cc7c393ab6df34a1883e64525ae700e7d1c5172c..c6abd8bd3fa444e13277c15535a36caca14ade95 100644 (file)
@@ -48,7 +48,7 @@ function display_room_list_renderer(floor_list, room_list) {
        output = [];
 
        for (var f in floor_list) {
-               output[floor_list[f].num] = "<div><b>Room list for " + floor_list[f].name + "</b><br>";
+               output[floor_list[f].num] = "<div><div class=\"ctdl-roomlist-floor\">" + floor_list[f].name + "</div>";
        }
 
        for (var i in room_list) {