Feature: Device Importing & Exporting

This commit is contained in:
Gary Sharp
2013-07-25 17:46:20 +10:00
parent a3aaed1d13
commit ad6b1b19b6
67 changed files with 3058 additions and 266 deletions
+10 -11
View File
@@ -1,30 +1,29 @@
@import "Declarations";
// Data Table Mixin
.tableData
{
.tableData {
border: solid 1px @TableDataBorderColour;
border-collapse: collapse;
&>tbody > tr > td
{
& > tbody > tr > td {
border: solid 1px @TableDataBorderColour;
background-color: #fff;
}
&>tbody > tr:nth-child(odd) > td
{
& > tbody > tr:nth-child(odd) > td {
background-color: @TableDataRowBackgroundColor;
}
&>thead > tr > th, &>tbody > tr > th
{
& > thead > tr > th, & > tbody > tr > th {
background-color: @TableDataBorderColour;
border: solid 1px @TableDataBorderColour;
}
&>tbody > tr:hover > td
{
& > tbody > tr:hover > td {
background-color: @TableDataBorderColour;
}
& > tfoot > tr > th, & > tfoot > tr > td {
background-color: @TableDataBorderColour;
}
}