pull/2858/head
Alex Aragón 7 years ago
parent ca3d00d747
commit 0994740109
  1. 23
      app/Resources/public/css/base.css
  2. 34
      main/template/default/layout/page_header.tpl
  3. 4
      plugin/tour/views/script.tpl

@ -46,7 +46,18 @@ body {
select {
width: auto;
}
.header-ol{
list-style: none;
padding: 0;
margin: 10px 0;
text-align: right;
}
.header-ol li{
display: inline-block;
}
.header-ol .user-online a{
padding: 0;
}
/*------------------------------*/
.admin-block-version {
font-size: 12px;
@ -1126,13 +1137,11 @@ a.personal_agenda:hover, a.personal_agenda:hover {
.breadcrumb{
margin-bottom: 10px;
}
.breadcrumb .home {
padding: 0;
height: 22px;
}
.breadcrumb .home img {
.breadcrumb li a img {
float: left;
padding-right: 5px;
margin-top: 2px;
}
/* ATTENDANCE */
@ -9641,6 +9650,8 @@ ul.dropdown-menu.inner > li > a {
width: 45px;
height: 45px;
border: 2px solid #cdcdcd;
padding-top: 5px;
padding-left: 4px;
}
.sidebar-avatar .area-avatar .avatar-lm h5,

@ -26,26 +26,34 @@
</div>
{% endif %}
</div>
<div class="col-sm-4">
<div class="col-sm-3">
{% if plugin_header_center is not null %}
<div id="plugin_header_center">
{{ plugin_header_center }}
</div>
{% endif %}
</div>
<div class="col-sm-4">
{% if plugin_header_right is not null %}
<div id="plugin_header_right">
{{ plugin_header_right }}
</div>
{% endif %}
<div class="section-notifications">
{% if _u.logged == 1 and not user_in_anon_survey %}
<ul id="notifications" class="nav nav-pills pull-right">
</ul>
<div class="col-sm-5">
<ol class="header-ol">
{% if plugin_header_right is not null %}
<li>
<div id="plugin_header_right">
{{ plugin_header_right }}
</div>
</li>
{% endif %}
</div>
{{ accessibility }}
<li>
<div class="section-notifications">
{% if _u.logged == 1 and not user_in_anon_survey %}
<ul id="notifications" class="nav nav-pills pull-right">
</ul>
{% endif %}
</div>
</li>
<li>
{{ accessibility }}
</li>
</ol>
</div>
</div>
</div>

@ -51,7 +51,7 @@
intro.start();
}
}).appendTo('#tour-button-cotainer');
}).appendTo('#tour-button-container');
});
}
};
@ -84,5 +84,5 @@
});
</script>
<div id="tour-button-cotainer"></div>
<div id="tour-button-container"></div>
{% endif %}

Loading…
Cancel
Save