Skip to content
Snippets Groups Projects
Commit 717c49f4 authored by Bhabesh Bhabani Mukhopadhyay's avatar Bhabesh Bhabani Mukhopadhyay
Browse files

Table contrast adjusted

css of Odd and Even strips background color overide
parent 4c319164
Branches
No related tags found
No related merge requests found
......@@ -46,11 +46,26 @@
{% endblock %}
{% block customCSS %}
<style>
/* Over ride datatable property to maintain default color */
.navbar-default {
background-color: #fff;
border-color:#fff;
}
/* Text align center - used in datatable */
.colCenter {text-align: center;}
/* Data table odd stripe color */
.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
background-color: #ebf1d4 /* Choose your own color here */
}
/* Data table even stripe color */
.table-striped>tbody>tr:nth-child(even)>td,
.table-striped>tbody>tr:nth-child(even)>th {
background-color: #e4ddd6 /* Choose your own color here */
}
</style>
{% endblock %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment