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:
authorJouveer <35312684+Jouveer@users.noreply.github.com>2018-01-18 01:26:16 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2018-01-18 01:26:16 +0300
commitb98e34c10fd2b19493122031aefa730f9383ba1c (patch)
tree75bb77f2d455bd604bfdc241eaf2a73065a08f97
parent115b0c71dfe5bb759e6e1b3d17b5be61e3dbb168 (diff)
Changed "right" positioning on ui-dialog hovering buttons (#12458)
-rw-r--r--plugins/Dashboard/stylesheets/widget.less9
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/Dashboard/stylesheets/widget.less b/plugins/Dashboard/stylesheets/widget.less
index 8e4f1b2211..7bf51ba107 100644
--- a/plugins/Dashboard/stylesheets/widget.less
+++ b/plugins/Dashboard/stylesheets/widget.less
@@ -53,10 +53,10 @@
float: right;
}
.buttons {
+ right: 8px;
float: right;
position: absolute;
padding-left: 50px;
- right: 8px;
display: none;
color: @theme-color-widget-title-text;
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, @theme-color-widget-title-background 45px);
@@ -64,7 +64,7 @@
background: linear-gradient(to right, rgba(255,255,255,0) 0%, @theme-color-widget-title-background 45px);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='@{theme-color-widget-title-background}',GradientType=1 );
}
-
+
&:hover .buttons {
display:block;
}
@@ -160,3 +160,8 @@
position: static;
}
}
+
+
+.ui-dialog .widget .widgetTop .buttons {
+ right: 25px;
+}