Skip to content

Commit

Permalink
light border around flags in goals and live view
Browse files Browse the repository at this point in the history
  • Loading branch information
Findus23 committed Mar 29, 2017
1 parent be37866 commit 0a5b2a5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions plugins/Goals/stylesheets/goals.css
Expand Up @@ -32,6 +32,11 @@ ul.ulGoalTopElements li {
list-style-type: circle;
}

ul.ulGoalTopElements img {
border: 1px solid lightgray;
box-sizing: content-box;
}

.ulGoalTopElements a {
text-decoration: none;
color: #0033CC;
Expand Down
5 changes: 5 additions & 0 deletions plugins/Live/stylesheets/live.less
Expand Up @@ -297,6 +297,11 @@ a.visitor-log-visitor-profile-link {
height: 16px;
}

.visitorLogIconWithDetails.flag>img {
border: 1px solid lightgray;
box-sizing: content-box;
}

.visitorLogIcons>span.visitorRank>img {
margin: auto 0;
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/Live/templates/_dataTableViz_visitorLog.twig
Expand Up @@ -158,7 +158,7 @@ GPS (lat/long): {{ visitor.getColumn('latitude') }},{{ visitor.getColumn('longit
</span>
{% endif %}
{% if visitor.getColumn('countryFlag') %}
<span class="visitorLogIconWithDetails">
<span class="visitorLogIconWithDetails flag">

<img height="16px" src="{{ visitor.getColumn('countryFlag') }}"/>
{% if visitor.getColumn('city') %}{{ visitor.getColumn('city')|rawSafeDecoded }}{% endif -%}
Expand Down

0 comments on commit 0a5b2a5

Please sign in to comment.