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:
authorThomas Steur <thomas.steur@googlemail.com>2014-05-01 05:23:22 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-01 05:23:22 +0400
commit6cd5d7c8d21d972f606d5f8e1cd1e7f87593d565 (patch)
treee8e8ca88aa3381fc71bd98057bc12a0a1540a1b0 /plugins/ZenMode/angularjs
parentbf1a786c26a3e91ce105b2755e48d39d0da188d4 (diff)
refs #4987 show footer icon drawer if not in dialog
Diffstat (limited to 'plugins/ZenMode/angularjs')
-rw-r--r--plugins/ZenMode/angularjs/zen-mode/zen-mode-switcher-directive.js2
-rw-r--r--plugins/ZenMode/angularjs/zen-mode/zen-mode.less25
2 files changed, 18 insertions, 9 deletions
diff --git a/plugins/ZenMode/angularjs/zen-mode/zen-mode-switcher-directive.js b/plugins/ZenMode/angularjs/zen-mode/zen-mode-switcher-directive.js
index 408151e377..ffa8c36e01 100644
--- a/plugins/ZenMode/angularjs/zen-mode/zen-mode-switcher-directive.js
+++ b/plugins/ZenMode/angularjs/zen-mode/zen-mode-switcher-directive.js
@@ -15,7 +15,7 @@ angular.module('piwikApp').directive('piwikZenModeSwitcher', function($rootEleme
function showZenModeIsActivatedNotification() {
var UI = require('piwik/UI');
var notification = new UI.Notification();
- var message = '<ul><li>To search for menu items, reports or websites use the search box on the top right or press alt+s.</li><li>To show the footer icons in the tables press alt+f.</li><li>To leave the ZenMode press the arrow on the top right or press alt+z</li></ul>';
+ var message = '<ul><li>To search for menu items, reports or websites use the search box on the top right or press alt+s.</li><li>To leave the ZenMode press the arrow on the top right or press alt+z</li></ul>';
notification.show(message, {
title: 'ZenMode activated',
context: 'info',
diff --git a/plugins/ZenMode/angularjs/zen-mode/zen-mode.less b/plugins/ZenMode/angularjs/zen-mode/zen-mode.less
index c7786776b8..60b1762168 100644
--- a/plugins/ZenMode/angularjs/zen-mode/zen-mode.less
+++ b/plugins/ZenMode/angularjs/zen-mode/zen-mode.less
@@ -146,8 +146,23 @@
border-top: 0px;
}
- #content:not(#dashboardWidgetsArea) .dataTableFooterIcons {
- display: none;
+ #content .foldDataTableFooterDrawer,
+ #content .dataTableFeatures .expandDataTableFooterDrawer {
+ opacity: 0;
+ -webkit-transition: all 300ms ease;
+ -moz-transition: all 300ms ease;
+ -ms-transition: all 300ms ease;
+ -o-transition: all 300ms ease;
+ transition: all 300ms ease;
+ }
+
+ #content > div:not(#dashboard) .dataTableFeatures .expandDataTableFooterDrawer {
+ margin-bottom: -20px;
+ }
+
+ #content .dataTableFeatures:hover .foldDataTableFooterDrawer,
+ #content .dataTableFeatures:hover .expandDataTableFooterDrawer {
+ opacity: 1 !important;
}
#content h2:nth-of-type(n+2) {
@@ -179,10 +194,4 @@
margin-left: 13px;
}
- table.dataTable tr:hover td.labeleven,
- table.dataTable tr:hover td.columneven,
- table.dataTable tr:hover td.labelodd,
- table.dataTable tr:hover td.columnodd {
- background-color: @silver-95 !important;
- }
}