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:
authorStefan Giehl <stefan@matomo.org>2019-07-05 16:54:51 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-07-05 16:54:51 +0300
commitee22806f2b88de613637d15d25dceec8c1fdc92d (patch)
tree8b3e23c9305f60f8f1deecf1a801e80ce1eee667
parent64d27fa6e0350d3475e1f8608053453cb08ef110 (diff)
Fix padding in live visitors (#14558)
-rw-r--r--plugins/Live/stylesheets/live.less6
-rw-r--r--plugins/Morpheus/stylesheets/main.less10
2 files changed, 13 insertions, 3 deletions
diff --git a/plugins/Live/stylesheets/live.less b/plugins/Live/stylesheets/live.less
index f91451dea7..56adfd2b12 100644
--- a/plugins/Live/stylesheets/live.less
+++ b/plugins/Live/stylesheets/live.less
@@ -26,7 +26,11 @@
}
#visitsLive .datetime, #visitsLive .country, #visitsLive .settings, #visitsLive .returning {
- padding: 10px 5px 10px 12px;
+ padding: 10px 20px;
+
+ .widget & {
+ padding: 10px 11px;
+ }
}
#visitsLive .datetime {
diff --git a/plugins/Morpheus/stylesheets/main.less b/plugins/Morpheus/stylesheets/main.less
index e643ee193c..950e06de43 100644
--- a/plugins/Morpheus/stylesheets/main.less
+++ b/plugins/Morpheus/stylesheets/main.less
@@ -503,14 +503,20 @@ div.dataTableVizHtmlTable:not(.dataTableActions),
}
.visitsLiveFooter {
- padding-left: 10px;
+ .widget & {
+ padding-left: 11px;
+ }
a.rightLink {
.font-default(13px, 16px);
margin-top: 10px;
margin-bottom: 10px;
- padding-right: 10px;
+ padding-right: 0;
+
+ .widget & {
+ padding-right: 11px;
+ }
}
}