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 17:55:49 +0400
committerdiosmosis <benaka@piwik.pro>2014-09-09 17:55:49 +0400
commit2e4340fb92bb00ceda40c4ff5e7f52e280ec66fd (patch)
tree1de23834a263b5b80a621656e219c9820b475ea2 /plugins/Morpheus
parent120bfe5962a866b32705594fae6dc3a968c85aeb (diff)
Refs #5355, use existing plus/minus icons in normal subtable reports and don't use new CSS for actions reports which use images.
Diffstat (limited to 'plugins/Morpheus')
-rw-r--r--plugins/Morpheus/stylesheets/theme.less34
1 files changed, 19 insertions, 15 deletions
diff --git a/plugins/Morpheus/stylesheets/theme.less b/plugins/Morpheus/stylesheets/theme.less
index c8847ac3cc..53743c3aa0 100644
--- a/plugins/Morpheus/stylesheets/theme.less
+++ b/plugins/Morpheus/stylesheets/theme.less
@@ -454,24 +454,28 @@ 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;
- }
+div.dataTableVizHtmlTable:not(.dataTableActions) {
+ tr.subDataTable > td:first-child:before {
+ display: inline-block;
+ float: left;
+ top: 0;
+ width: 12px;
+ height: 12px;
+ margin-left:-.5em;
+ margin-top:4px;
+ margin-right:8px;
+ content: '';
+ }
- tr.subDataTable:not(.expanded) > td:first-child:before {
- content: '+';
- }
+ tr.subDataTable:not(.expanded) > td:first-child:before {
+ background-image: url(plugins/Morpheus/images/plus.png);
+ }
- tr.subDataTable.expanded > td:first-child:before {
- content: '-';
- }
+ tr.subDataTable.expanded > td:first-child:before {
+ background-image: url(plugins/Morpheus/images/minus.png);
+ }
}
table.dataTable tr.subDataTable:hover > td, table.dataTable tr.subDataTable:hover > td .dataTableRowActions {