Tuesday, September 3, 2019

checkbox background color in odoo

ODOO

we can go to the css file and write the code below

div.o_checkbox > input:checked + span {
    background-color: #000000;
}

change date background color in odoo


 
we have to go to the css file and write the code bellow to change the defualt color with #33cc33 color

.datepicker .table-condensed > thead {
    color: white;
    /*background-color: #106bac;*/
    /*background-color:#bfb9b9;*/
    /*background-color:#d11f22;*/
    background-color:#33cc33;
}

.datepicker .table-condensed > tbody > tr , .datepicker .table-condensed > tbody > tr > td {
    /*color: white;
    background-color: #1fa135;*/
    background-color:white;
    border-color: white;
    /*border-style: solid;*/
}


.datepicker .table-condensed > thead > tr:first-child th:hover {
    color: white;
    /*background-color: #71b5e5;*/
    /*background-color: #ccc;*/
    /*background-color: #d11f22;*/
    background-color: #33cc33;
}

.datepicker {
    .table-condensed {
        > tbody {
            > tr {
                > td {
                    &.active, .active {
                        background-color: #33cc33;
                        border-radius: 40%;
                    }
                }
            }
        }
    }
}

navbar background color in odoo

ODOO


 

 

to do that we must go to our theme , and open css file and write the code bellow 

.navbar-default {
  background-color: #1fa135;
 
  }

Odoo Invoice Qr code issues

There are two main issues must of us facing with the QR code in Odoo invoice & these issues are 1/ QR code displayed as broken image w...