Skip to content

Commit

Permalink
[FIX] web_company_color: Colors where not shown correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
etobella committed Oct 4, 2024
1 parent cf07323 commit 6717989
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions web_company_color/models/res_company.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,22 @@ class ResCompany(models.Model):
}
}
}
a[href],
a[tabindex],
.btn-link,
.o_external_button {
color: %(color_link_text)s !important;
}
a[href],
a[tabindex],
.btn-link,
.o_external_button {
color: %(color_link_text)s;
.o_main_navbar {
color: none;
}
}
a:hover,
.btn-link:hover {
color: %(color_link_text_hover)s !important;
color: %(color_link_text_hover)s;
.o_main_navbar {
color: none;
}
}
.btn-primary:not(.disabled),
.ui-autocomplete .ui-menu-item > a.ui-state-active {
Expand Down

0 comments on commit 6717989

Please sign in to comment.