Browse Source

fixed too small width of the left div which can easily cause an ugly line break

Natenom/support-murmur-13-1446181288462
Michael Ziegler 16 years ago
parent
commit
c65bb88074
  1. 4
      htdocs/css/screen/basemod.css
  2. 4
      template/mumble/content.htm

4
htdocs/css/screen/basemod.css

@ -41,10 +41,10 @@
* *
*/ */
#col1 { float: left; width: 30%}
#col1 { float: left; width: 40%}
#col1 { float: left } #col1 { float: left }
#col2 { display:none} #col2 { display:none}
#col3 { width: auto; margin: 0 0 0 30%; border-left: 1px #ddd dotted }
#col3 { width: auto; margin: 0 0 0 40%; border-left: 1px #ddd dotted }
#col1_content { padding: 0 10px 0 20px } #col1_content { padding: 0 10px 0 20px }
#col3_content { padding: 0 20px 0 10px } #col3_content { padding: 0 20px 0 10px }

4
template/mumble/content.htm

@ -2,13 +2,11 @@
<div class="mumble"> <div class="mumble">
<table cellspacing="0" cellpadding="0" style="width:100%; border:none"> <table cellspacing="0" cellpadding="0" style="width:100%; border:none">
<tr> <tr>
<td class="mumble" id="server">
<td class="mumble" id="server" colspan="2">
<img src="/static/mumble/mumble.16x16.png" alt="mumble" /> <img src="/static/mumble/mumble.16x16.png" alt="mumble" />
<a href="mumble://{% if mumbleAccount %}{{ mumbleAccount.name }}@{% endif %}{{ DBaseObject.addr }}/" class="dingen" id="link_server"> <a href="mumble://{% if mumbleAccount %}{{ mumbleAccount.name }}@{% endif %}{{ DBaseObject.addr }}/" class="dingen" id="link_server">
{{ ServerObject.rootName }} {{ ServerObject.rootName }}
</a> </a>
</td>
<td class="mumble"> </td>
</tr> </tr>
{% for item in ChannelTable %} {% for item in ChannelTable %}
<tr> <tr>

Loading…
Cancel
Save