diff options
-rw-r--r-- | modules/extra/webcpanel/templates/default/chanserv/main.html | 2 | ||||
-rw-r--r-- | modules/extra/webcpanel/templates/default/style.css | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/modules/extra/webcpanel/templates/default/chanserv/main.html b/modules/extra/webcpanel/templates/default/chanserv/main.html index 99fec7d75..dd9288f00 100644 --- a/modules/extra/webcpanel/templates/default/chanserv/main.html +++ b/modules/extra/webcpanel/templates/default/chanserv/main.html @@ -1,6 +1,8 @@ {INCLUDE header.html} <b>Channels you have access in:</b><br/> + <div class="cinfo"> {FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES} <a href="/chanserv/set?channel={ECH}">{CH}</a></br> {END FOR} + </div> {INCLUDE footer.html} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 7934e4850..65715faca 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -101,6 +101,11 @@ body { height: 125px;
}
+.cinfo {
+ overflow-x: scroll;
+ height: 450px;
+}
+
.akillR1 {
width: 80px;
text-align: left;
|