1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-10-21 19:00:12 +00:00

Fix profile page and height of input

This commit is contained in:
Daniel Pan
2016-05-02 00:04:54 +08:00
parent 092950f802
commit 55da80b237
3 changed files with 13 additions and 8 deletions

View File

@@ -205,7 +205,7 @@ input {
input, button { display:inline-block;/*for ie*/ }
input[type=text],
input[type=password] {
height:22px;
height:26px;
}
button,
input[type=submit],
@@ -1294,7 +1294,7 @@ button.sf-dropdown-toggle:focus {
border-top: 1px solid #c9c9c9;
}
.msg-input {
width:350px;
width:362px;
padding:3px 5px;
}
.msg-form .submit {

View File

@@ -1,4 +1,4 @@
{% extends "myhome_base.html" %}
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Profile Setting" %}{% endblock %}

View File

@@ -1,11 +1,13 @@
{% extends "myhome_base.html" %}
{% extends "base.html" %}
{% load avatar_tags i18n %}
{% load url from future %}
{% block sub_title %}{% trans "Settings" %} - {% endblock %}
{% block left_panel %}
<div class="side-textnav">
{% block main_content %}
<div class="row">
<div class="side-tabnav side-textnav col-md-3 hide" id="side-nav" role="navigation">
<ul class="side-textnav-tabs">
<li class="tab"><a href="#user-basic-info">{% trans "Profile" %}</a></li>
<li class="tab"><a href="#lang-setting">{% trans "Language" %}</a></li>
@@ -15,9 +17,9 @@
<li class="tab"><a href="#del-account">{% trans "Delete Account" %}</a></li>
</ul>
</div>
{% endblock %}
{% block right_panel %}
<div id="right-panel" class="col-md-9 col-md-offset-3">
<h2>{% trans "Settings" %}</h2>
<div id="user-basic-info" class="setting-item">
@@ -113,6 +115,9 @@
<button class="simplemodal-close">{% trans "Cancel"%}</button>
</form>
</div> <!-- right-panel -->
</div> <!-- row -->
{% endblock %}
{% block extra_script %}