css - Navigator changing color in browser -
i have simple xpage dynamic views. can switch between them via navigator added extension library. works ok, problem css. navigator have 1 style sheet attached, contains following:
.lotusselected{background-color:none;}
and gets interesting- whenever open xpage in chrome web browser, try open of navigator elements , @ code via chrome devkit (or whatever when press f12) shows code above is:
.lotusselected{background-color:red;}
...so pretty changes css. don't understand why happening. also, not happen in internet explorer. can explain me why occurs , how fix it?
maybe css style being overwritten 1 (i.e. oneui) check if appears strikethrough style below in css debugger.
in case, can add !important in style:
.lotusselected{background-color:none !important;}
(fyi: css anti-pattern :p )
Comments
Post a Comment