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
| tr { background-color:transparent;}
td {
background-color:transparent;
text-align:left;
}
.left {
height:25px;
width:8px;
background:right url(icones/line_back_left.png) no-repeat;
}
tr:hover > .left {
background:right url(icones/line_back_left_over2.png) no-repeat;
}
.middle {
background:left url(icones/line_back_mid.png) repeat-x;
height:25px;
}
tr:hover > .middle {
background:left url(icones/line_back_mid_over2.png) repeat-x;
}
.right {
background:left url(icones/line_back_right.png) no-repeat;
height:25px;
width:8px;
}
tr:hover > .right {
background:left url(icones/line_back_right_over2.png) no-repeat;
} |