Skip to content
Snippets Groups Projects
Commit 1c6819be authored by gnaegi's avatar gnaegi
Browse files

non-jira: add layout variable for table color hover links

parent f7dad206
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ $menulinkcolor_selected : $basecolor !default; ...@@ -47,6 +47,7 @@ $menulinkcolor_selected : $basecolor !default;
$tablecolor_header : $linkcolor !default; $tablecolor_header : $linkcolor !default;
$tablecolor_links : $linkcolor !default; $tablecolor_links : $linkcolor !default;
$tablecolor_links_hover : $linkcolor !default;
/* full screen margins. Set to 0% to have have no surrounding border at all */ /* full screen margins. Set to 0% to have have no surrounding border at all */
$fullScreenModalMarginPercents: 2% !default; $fullScreenModalMarginPercents: 2% !default;
......
...@@ -53,6 +53,9 @@ div.b_table_wrapper { ...@@ -53,6 +53,9 @@ div.b_table_wrapper {
tr.b_row_selected:hover td { background: $selectcolor_light; } tr.b_row_selected:hover td { background: $selectcolor_light; }
a { a {
color: $tablecolor_links; color: $tablecolor_links;
&:hover {
color: $tablecolor_links_hover;
}
} }
} }
} }
...@@ -120,6 +123,9 @@ div.b_table_wrapper { ...@@ -120,6 +123,9 @@ div.b_table_wrapper {
} }
tbody a { tbody a {
color: $tablecolor_links; color: $tablecolor_links;
&:hover {
color: $tablecolor_links_hover;
}
} }
tr.even td.sorting_1 { tr.even td.sorting_1 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment