1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
.theWidgetContent .card .card-content table.dataTable, table.dataTable {
tr.comparePeriod, tr.comparisonRow {
> td:first-child {
padding-left: 45px;
}
}
tr.parentComparisonRow {
.dataTableRowActions {
display: none !important;
}
> td:not(.label) > * {
visibility: hidden;
}
}
tr.comparePeriod {
.dataTableRowActions {
display: none !important;
}
td.label {
font-weight: bold;
color: @color-silver-l60;
}
}
td.label .prefix-numeral {
display: inline-block;
width: 20px;
.font-default(13px, 18px);
vertical-align: text-bottom;
}
.totalsRow,.summaryRow {
td.label .prefix-numeral {
visibility: hidden;
}
}
img {
margin-left: 1px;
}
}
tr.comparePeriod, tr.comparisonRow {
&.level0 td.label {
padding-left: 44px !important;
}
&.level1 td.label {
padding-left: 68px !important;
}
&.level2 td.label {
padding-left: 90px !important;
}
}
tr.parentComparisonRow {
&.level1 td.label {
padding-left: 44px !important;
}
&.level2 td.label {
padding-left: 68px !important;
}
}
|