mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
N°2314 - Markup extensibility: Add a variable for hovered table lines background color
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user