1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-10-22 03:16:34 +00:00

modification for IE

This commit is contained in:
llj
2014-02-27 18:06:44 +08:00
parent c0ddc43e28
commit c54a719d4e
3 changed files with 10 additions and 10 deletions

View File

@@ -73,10 +73,6 @@ input.submit,
border: 1px solid #c5c5c5; border: 1px solid #c5c5c5;
border-radius: 2px; border-radius: 2px;
} }
button {
overflow:visible;/*for ie 7*/
padding-bottom:0 \9;/*for ie; to make height right*/
}
input[type=radio] { input[type=radio] {
height:auto; height:auto;
border:0;/*for ie*/ border:0;/*for ie*/
@@ -1694,7 +1690,7 @@ textarea:-moz-placeholder {/* for FF */
width:60%; width:60%;
} }
.table .size { .table .size {
width:15%; width:14%;
} }
.template-upload .start { .template-upload .start {
text-align:right; text-align:right;
@@ -1704,7 +1700,7 @@ textarea:-moz-placeholder {/* for FF */
} }
.template-upload .start, .template-upload .start,
.template-upload .cancel { .template-upload .cancel {
width:12.5%; width:13%;
} }
.fileupload-progress { .fileupload-progress {
margin-top:10px; margin-top:10px;

View File

@@ -49,8 +49,10 @@
{% for mod in mods_available %} {% for mod in mods_available %}
{% if mod == 'group wiki' %} {% if mod == 'group wiki' %}
<li> <li>
<input class="vam" type="checkbox" name="group_wiki" {%if mod in mods_enabled%}checked {% endif%}/></span> <label class="checkbox-label">
<span class="vam">{% trans "Wiki" %}</span> <span class="checkbox {% if mod in mods_enabled %}checkbox-checked{% endif %}"><input type="checkbox" name="group_wiki" class="checkbox-orig" {%if mod in mods_enabled%}checked{% endif%} /></span>
<span class="checkbox-option">{% trans "Wiki" %}</span>
</label>
</li> </li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@@ -41,8 +41,10 @@
{% for mod in mods_available %} {% for mod in mods_available %}
{% if mod == 'personal wiki' %} {% if mod == 'personal wiki' %}
<li> <li>
<input class="vam" type="checkbox" name="personal_wiki" {%if mod in mods_enabled%}checked {% endif%}/> <label class="checkbox-label">
<span class="vam">{% trans "Personal Wiki" %}</span> <span class="checkbox {% if mod in mods_enabled %}checkbox-checked{% endif %}"><input type="checkbox" name="personal_wiki" class="checkbox-orig" {%if mod in mods_enabled%}checked{% endif%} /></span>
<span class="checkbox-option">{% trans "Personal Wiki" %}</span>
</label>
</li> </li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}