N°2314 - Markup extensibility: Add a variable for hovered table lines background color

This commit is contained in:
Stephen Abello
2020-02-25 15:14:12 +01:00
parent ed030403aa
commit 92ae0e72e1
2 changed files with 4 additions and 3 deletions

View File

@@ -105,6 +105,7 @@ $toggle-button-slider-bg-color: #FFFFFF !default;
$summary-details-background: $grey-color !default;
$main-header-background: $frame-background-color !default;
$table-even-background: $frame-background-color !default;
$table-hover-background: #fdf5d0 !default;
$popup-menu-highlight-color: $highlight-color !default;
$popup-menu-text-color: #000 !default;
$popup-menu-background-color: #fff !default;

View File

@@ -141,7 +141,7 @@ table.listResults > tbody > tr.selected:hover > * {
table.listResults > tbody > tr:hover > * {
/* hover on lines is currently done toggling td.hover, and having a rule for links */
background-color: #fdf5d0;
background-color: $table-hover-background;
color: $text-color;
}
@@ -1693,12 +1693,12 @@ table.listResults tr.even td.truncated, .wizContainer table.listResults tr.even
/* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
table.listResults tr.even td.hover.truncated, .wizContainer table.listResults tr.even td.hover.truncated {
background: #fdf5d0 url($approot-relative + "images/truncated.png?v=" + $version) bottom repeat-x;
background: $table-hover-background url($approot-relative + "images/truncated.png?v=" + $version) bottom repeat-x;
}
/* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */
table.listResults tr.odd td.hover.truncated, table.listResults tr td.hover.truncated, .wizContainer table.listResults tr.odd td.hover.truncated, .wizContainer table.listResults tr td.hover.truncated {
background: #fdf5d0 url($approot-relative + "images/truncated.png?v=" + $version) bottom repeat-x;
background: $table-hover-background url($approot-relative + "images/truncated.png?v=" + $version) bottom repeat-x;
}
table.listResults.truncated {