Skip to content
Extraits de code Groupes Projets
Valider 8d2e4b1d rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

Merge pull request #8933 from piwik/8748

Fix some icon placement issues in referrers and visitor log
parents 6a9606f3 3ec46e56
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -42,6 +42,10 @@ table.dataTable img { ...@@ -42,6 +42,10 @@ table.dataTable img {
margin-left: 0.5em; margin-left: 0.5em;
} }
table.subDataTable img.link {
transform: translateY(-50%);
}
table.dataTable tr.subDataTable { table.dataTable tr.subDataTable {
cursor: pointer; cursor: pointer;
......
...@@ -251,11 +251,18 @@ a.visitor-log-visitor-profile-link { ...@@ -251,11 +251,18 @@ a.visitor-log-visitor-profile-link {
.action-list-action-icon { .action-list-action-icon {
float:left; float:left;
margin-top:6px;
margin-right:4px; margin-right:4px;
&.event { &.event {
margin-top: 1px; margin-top: 0;
}
&.outlink {
margin-top: 4px;
margin-right: 4px;
margin-left: 4px;
}
&.search {
margin-right: 4px;
} }
} }
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
{% endif %} {% endif %}
{% if action.siteSearchKeyword is defined %} {% if action.siteSearchKeyword is defined %}
{% if action.type == 'search' %} {% if action.type == 'search' %}
<img src='{{ action.icon }}' title='{{ 'Actions_SubmenuSitesearch'|translate }}' class="action-list-action-icon"> <img src='{{ action.icon }}' title='{{ 'Actions_SubmenuSitesearch'|translate }}' class="action-list-action-icon search">
{% endif %} {% endif %}
<span class="truncated-text-line">{{ action.siteSearchKeyword }}</span> <span class="truncated-text-line">{{ action.siteSearchKeyword }}</span>
{% endif %} {% endif %}
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
{% if action.url is not empty %} {% if action.url is not empty %}
{% if action.type == 'action' and action.pageTitle|default(false) is not empty %}<p>{% endif %} {% if action.type == 'action' and action.pageTitle|default(false) is not empty %}<p>{% endif %}
{% if action.type == 'download' or action.type == 'outlink' %} {% if action.type == 'download' or action.type == 'outlink' %}
<img src='{{ action.icon }}' class="action-list-action-icon"> <img src='{{ action.icon }}' class="action-list-action-icon {{ action.type }}">
{% endif %} {% endif %}
{% if action.eventCategory|default(false) is not empty {% if action.eventCategory|default(false) is not empty
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter