9.12 keeps complaining about this CSS

0
Can anyone tell me what is wrong with this CSS?   .my-transparent-listview .mx-listview-item, .my-transparent-listview .mx-listview-item:hover {  background-color: transparent !important;  /* probably want to change the border too */  border-color: transparent !important;  }   9.12 keeps giving me this error “Style contains invalid CSS. It should be formatted properly and cannot contain comments, e.g. 'font-color: red; “
asked
1 answers
0

Hi Bhanu, 

In fact i don’t see anything wrong in there… can you send screenshot or something.?
Try also with independent rules(doens’t make sense but...)
 

.my-transparent-listview .mx-listview-item {

    background-color: transparent !important;

    border-color: transparent !important;

}

.my-transparent-listview .mx-listview-item:hover {

    background-color: transparent !important;

    border-color: transparent !important;

}

answered