Edit
/* scss/table/_table-line.scss */
.table, .table-fixed {
tr {
background-color: #ffffff;
&.active, &.active:hover {
background-color: $theme-color-active-line;
}
&:hover {
background-color: $theme-color-hover-line;
}
td {
height: 80px;
border-bottom: 1px solid $theme-color-grey-light;
padding: 0 30px 0 0;
font-family: $font-family;
font-weight: $font-weight-regular;
font-size: 13px;
color: $theme-color-text-main;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
&.selection-cell {
width: 80px;
padding: 0;
text-align: center;
.input-checkbox-container {
height: 20px;
padding-left: 30px;
}
}
.icon-left {
float: left;
margin-right: 10px;
img {
display: inline;
width: 18px;
}
}
p {
line-height: 20px;
.value {
color: $theme-color-text-main;
}
.label {
color: $theme-color-text-light;
}
}
.mileage-diff {
p {
margin-bottom: 8px;
margin-top: -11px;
font-size: 13px;
font-weight: $font-weight-regular;
}
.diff-gauge {
position: relative;
display: block;
width: 100px;
height: 2px;
background-color: $theme-gauge-background;
.value-gauge {
position: absolute;
left: 0;
top: 0;
height: 100%;
background-color: $theme-gauge-value;
}
}
}
}
}
}
.sticky-cells-container .table-fixed {
tr {
td {
overflow: visible;
}
}
}