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
|
.dataTableRowActions {
background: none !important;
}
table.dataTable .dataTableRowActions {
position: absolute;
display: none;
overflow: hidden;
margin-top: -6px;
background-color: inherit !important;
z-index: 1000; /* Work around FF bug to make sure it displays over ellipsis */
}
table.dataTable .dataTableRowActions a {
display: block;
float: left;
padding: 6px 4px 6px 0;
margin: 0;
width: auto!important;
text-decoration: none;
&:hover {
text-decoration: none;
}
.rowActionIcon {
font-size: 19px;
color: @theme-color-brand !important;
opacity: 0.6;
&:hover {
opacity: 1;
}
}
@media print{
display: none;
}
}
table.dataTable .dataTableRowActions a.leftmost {
padding-left: 4px;
}
table.dataTable .dataTableRowActions a.rightmost {
padding-right: 8px;
}
table.dataTable .dataTableRowActions a img {
margin: 0;
padding: 0;
border: 0;
width: 20px;
max-width: 20px;
height: 17px;
max-height: 17px;
}
|