diff --git a/plugins/CoreHome/stylesheets/dataTable/_dataTable.less b/plugins/CoreHome/stylesheets/dataTable/_dataTable.less index 5932fd0978286af7f04cba25c4d0205148580ccb..3544f177239c751c9a704ca67ada08eca79bbecd 100644 --- a/plugins/CoreHome/stylesheets/dataTable/_dataTable.less +++ b/plugins/CoreHome/stylesheets/dataTable/_dataTable.less @@ -42,6 +42,10 @@ table.dataTable img { margin-left: 0.5em; } +table.subDataTable img.link { + transform: translateY(-50%); +} + table.dataTable tr.subDataTable { cursor: pointer; diff --git a/plugins/Live/stylesheets/live.less b/plugins/Live/stylesheets/live.less index a071c10f0aa65f4fd6f98365c222310c4b8f6b66..230893a741a02c08037683007ceecba55b08110e 100644 --- a/plugins/Live/stylesheets/live.less +++ b/plugins/Live/stylesheets/live.less @@ -251,11 +251,18 @@ a.visitor-log-visitor-profile-link { .action-list-action-icon { float:left; - margin-top:6px; margin-right:4px; &.event { - margin-top: 1px; + margin-top: 0; + } + &.outlink { + margin-top: 4px; + margin-right: 4px; + margin-left: 4px; + } + &.search { + margin-right: 4px; } } diff --git a/plugins/Live/templates/_actionsList.twig b/plugins/Live/templates/_actionsList.twig index 3d6f1a107518dd06a3aefcbf2cd11825006b8718..82f651d7d30cc1775c52dbda2b8d5bed50d7c29c 100644 --- a/plugins/Live/templates/_actionsList.twig +++ b/plugins/Live/templates/_actionsList.twig @@ -83,7 +83,7 @@ {% endif %} {% if action.siteSearchKeyword is defined %} {% 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 %} <span class="truncated-text-line">{{ action.siteSearchKeyword }}</span> {% endif %} @@ -94,7 +94,7 @@ {% if action.url is not empty %} {% if action.type == 'action' and action.pageTitle|default(false) is not empty %}<p>{% endif %} {% 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 %} {% if action.eventCategory|default(false) is not empty