Skip to content

Commit

Permalink
[refs #104427] Fix footer text
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaboiangiu committed Jun 6, 2019
1 parent 968a7ca commit a141b89
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 11 deletions.
45 changes: 36 additions & 9 deletions gemet/thesaurus/static/thesaurus/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1485,15 +1485,10 @@ li:hover .btn-remove-down {
height: 30px !important;
}

div.container.header-container.collapse-header {
padding: 0px !important;
margin: 0px !important;
max-width: none !important;
div.container.header-container.collapse-header:before {
content: none;
}

div.header-logo {
padding: 0px !important;
}

.logo-text>span {
color:black !important;
Expand Down Expand Up @@ -1525,18 +1520,34 @@ div.header-logo {

i {
font-family: OpenSans,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
height:inherit !important;
}

.hasDropDown > i:first-of-type {
display:none;
}

.container.header-container.collapse-header {
width: 100%;
max-width: unset !important;
margin-right: auto;
margin-left: auto;

}

nav.plone-breadcrumb > div.container {
width: 88%;
max-width: unset !important;
}

#profilelink:before {
content: none;
}

#content-header .plone-navbar-nav .submenu {
margin-left: 17px;
.footer-text {
font-family: OpenSans,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;

}

.collapse-header .right-actions button {
Expand All @@ -1548,6 +1559,22 @@ i {
font-family: 'Glyphicons Halflings';
}

.content-header:before{
content: none;
}

.container.header-container.collapse-header:after {
content: none;
}



@media (min-width: 1600px) {
.container.header-container.collapse-header {
width: 1670px;
}

}
@media (max-width: 320px) {
.subtitle br {
display: none;
Expand Down
4 changes: 2 additions & 2 deletions gemet/thesaurus/templates/layout_plone.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
{% if user.is_authenticated %}
<a href="http://www.eionet.europa.eu/directory/user?uid={{ user.username }}"
id="profilelink">{{ user.username }}</a>
<a id="logoutlink" href="{% url 'logout' %}">Logout</a>
<a id="logoutlink" href="{% url 'logout' %}">Log out</a>
{% else %}
<a id="loginlink" href="{% url 'login' %}">Login</a>
<a id="loginlink" href="{% url 'login' %}">Log in</a>
{% endif %}

{% include 'plone/header_before_container.html' %}
Expand Down

0 comments on commit a141b89

Please sign in to comment.