1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-12 09:55:53 +00:00
This commit is contained in:
lian 2025-03-21 17:05:27 +08:00
parent 0aa2d11f36
commit a998903f52
2 changed files with 10 additions and 3 deletions
media/css
seahub/templates/registration

View File

@ -2202,11 +2202,18 @@ a.sf-popover-item {
margin-top: 20px;
margin-bottom: 15px;
}
.login-panel-bottom-privacy-policy {
font-size: 12px;
line-height: 1;
margin-top: 12px;
}
.login-panel-bottom-privacy-policy a {
color: #EC8000;
font-size: 12px;
}
.login-panel-bottom-privacy-policy .bottom-item {
border-right: 1px solid #eb8205;
}
/*myhome*/
#quota-bar {

View File

@ -122,11 +122,11 @@ html, body, #wrapper { height:100%; }
<hr class="login-panel-bottom-divider">
<div class="login-panel-bottom-privacy-policy d-flex justify-content-center">
{% if privacy_policy_link %}
<a href="{{ privacy_policy_link }}" class="normal px-2 bottom-item privacy-policy">{% trans "Privacy Policy" %}</a>
<a href="{{ privacy_policy_link }}" class="normal px-2 bottom-item">{% trans "Privacy Policy" %}</a>
{% endif %}
{% if terms_of_service_link %}
<a href="{{ terms_of_service_link }}" class="normal px-2 bottom-item privacy-policy">{% trans "Terms of Service" %}</a>
<a href="{{ terms_of_service_link }}" class="normal px-2">{% trans "Terms of Service" %}</a>
{% endif %}
</div>
{% endif %}