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:
authordiosmosis <benaka@piwik.pro>2014-09-09 15:46:19 +0400
committerdiosmosis <benaka@piwik.pro>2014-09-09 15:47:38 +0400
commitc2446bb843a234945a79491463bac00997b3844b (patch)
tree8ef5802d808d2cf80fd0c3aa41844f541fa50aa8 /plugins/Morpheus
parentae317050324f12d9e0aac670059022a521f3bac5 (diff)
Fixes #5355, add plus/minus icons to left of rows w/ subtables that change when tables expand/contract. Also add tooltip to rows w/ subtables.
Diffstat (limited to 'plugins/Morpheus')
-rw-r--r--plugins/Morpheus/stylesheets/theme.less18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/Morpheus/stylesheets/theme.less b/plugins/Morpheus/stylesheets/theme.less
index 52a78ada82..c8847ac3cc 100644
--- a/plugins/Morpheus/stylesheets/theme.less
+++ b/plugins/Morpheus/stylesheets/theme.less
@@ -454,6 +454,24 @@ table.dataTable {
&.dataTableVizVisitorLog {
}
+
+ tr.subDataTable > td:first-child:before {
+ display: inline-block;
+ float: left;
+ top: 0;
+ width: 1.25em;
+ font-size: .8em;
+ font-style: italic;
+ color:#888;
+ }
+
+ tr.subDataTable:not(.expanded) > td:first-child:before {
+ content: '+';
+ }
+
+ tr.subDataTable.expanded > td:first-child:before {
+ content: '-';
+ }
}
table.dataTable tr.subDataTable:hover > td, table.dataTable tr.subDataTable:hover > td .dataTableRowActions {