Skip to content

Commit

Permalink
Refs #5355, use existing plus/minus icons in normal subtable reports …
Browse files Browse the repository at this point in the history
…and don't use new CSS for actions reports which use images.
  • Loading branch information
diosmosis committed Sep 9, 2014
1 parent 120bfe5 commit 2e4340f
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions plugins/Morpheus/stylesheets/theme.less
Expand Up @@ -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 {
Expand Down

0 comments on commit 2e4340f

Please sign in to comment.