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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -