diff options
-rw-r--r-- | view/css/mod_manage.css | 17 | ||||
-rwxr-xr-x | view/tpl/channels.tpl | 4 |
2 files changed, 18 insertions, 3 deletions
diff --git a/view/css/mod_manage.css b/view/css/mod_manage.css index 51f5062ae..58f9d3159 100644 --- a/view/css/mod_manage.css +++ b/view/css/mod_manage.css @@ -1,8 +1,8 @@ #channels-selected { color: #666666; font-size: 1.2em; - margin-top: 20px; - margin-bottom: 10px; + width: 120px; + margin: 20px auto 10px auto; } #channels-desc { @@ -12,12 +12,23 @@ margin-bottom: 20px; } +#selected-channel { + width: 200px; + margin: 0px auto 0px auto; +} + +#selected-channel .channel-selection { + clear: both; + width: 120px; + margin: 0px auto 0px auto; +} + .channel-selection-default { font-size: 0.8em; margin-bottom: 10px; } -.channel-selection { +#all-channels .channel-selection { width: 120px; float: left; } diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl index a3acaac06..317384661 100755 --- a/view/tpl/channels.tpl +++ b/view/tpl/channels.tpl @@ -8,15 +8,19 @@ {{/if}} {{if $selected}} +<div id="selected-channel"> <div id="channels-selected">{{$msg_selected}}</div> {{include file="channel.tpl" channel=$selected}} <div class="channels-end selected"></div> +</div> {{/if}} <div id="channels-desc" class="descriptive-text">{{$desc}}</div> +<div id="all-channels"> {{foreach $all_channels as $chn}} {{include file="channel.tpl" channel=$chn}} {{/foreach}} +</div> <div class="channels-end all"></div> |