Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-13 03:39:43 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-13 03:40:15 +0400
commit76a49d3c833eaa69b97f889958283f22d1eb3602 (patch)
tree6c18667735694036a8eb7ee4d68b25fedc036948 /plugins/Live
parentaac90cac2c4725a523ab8c2fc0cededcfc470aee (diff)
Refs #3089, fixing two small bugs.
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/stylesheets/visitor_profile.less10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/Live/stylesheets/visitor_profile.less b/plugins/Live/stylesheets/visitor_profile.less
index 93abb01404..ad92a761e3 100644
--- a/plugins/Live/stylesheets/visitor_profile.less
+++ b/plugins/Live/stylesheets/visitor_profile.less
@@ -97,21 +97,23 @@
border-bottom:1px solid #d1cec8;
> div { // columns
- width:unit(@visitor_profile_width / 2, px);
vertical-align:top;
height:auto;
display:inline-block;
- border-left:1px solid #d1cec8;
}
> div:first-child { // first column
+ width:unit(@visitor_profile_width / 2, px);
border-left:none;
- margin:0 -4px 0 0;
+ margin:0 -3px 0 0;
+ border-right:1px solid #d1cec8;
}
> div:last-child { // last column
+ width:unit(@visitor_profile_width / 2 - 1, px);
border-bottom:none;
- margin:0 0 0 -4px;
+ margin:0 0 0 -3px;
+ border-left:1px solid #d1cec8;
}
}
}