Hey,
I noticed the default "play package" for jQuery Mobile comes with text shadow on everything.
This sucks really bad for developers who have to strip the entire thing down.
Next time, please just make a "text-shadow" class. It's more efficient.
Shadow individual element in div, or all elements in div:
.text-shadow, .text-shadow p, .text-shadow a, .text-shadow h2 (etc.) {
text-shadow: 0 1px 0 #fff;
}
Shadowing all elements in div / etc., except 1 or 2 elements? no-shadow class:
.no-shadow {
text-shadow: none;
}
Apps that are both dark and light can further alter the color of the shadow depending on the ui element theme.
Thanks,
Brendan