Hi,

I am trying to change the highlight color when some text is selected. The
dark color of my app does not sufficiently contrast with the default color
of the browser.
I found that you could do it using css like so

::selection {
background:#f094b7;
color:#555;
}

::-moz-selection {
background:#f094b7;
color:#555;
}

::-webkit-selection {
background:#f094b7;
color:#555;
}

I am just not sure how to plug-in the CSS into qooxdoo. (Iwant it to apply
to the whole app not just a single widget)

Thanks



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/using-raw-CSS-Change-text-selection-highlight-color-tp7583004.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to