aboutsummaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorjzaefferer <joern.zaefferer@gmail.com>2010-03-22 20:58:28 +0100
committerjzaefferer <joern.zaefferer@gmail.com>2010-03-22 20:58:28 +0100
commit710c38d19333cfffc2056ccd97989f934d0649ee (patch)
tree1dfaa34279413d3ec62edbd5ac3909785c5e339a /themes
parent339543636f521a0c7d3c5a4138937e3a7dc2d1ba (diff)
downloadjquery-ui-710c38d19333cfffc2056ccd97989f934d0649ee.tar.gz
jquery-ui-710c38d19333cfffc2056ccd97989f934d0649ee.zip
Experimental shadow for tooltip element
Diffstat (limited to 'themes')
-rw-r--r--themes/base/jquery.ui.tooltip.css11
1 files changed, 9 insertions, 2 deletions
diff --git a/themes/base/jquery.ui.tooltip.css b/themes/base/jquery.ui.tooltip.css
index 7659f2b4b..93d864f7f 100644
--- a/themes/base/jquery.ui.tooltip.css
+++ b/themes/base/jquery.ui.tooltip.css
@@ -1,3 +1,10 @@
-/*Tooltip and Pointer CSS*/
-.ui-tooltip { padding:8px; width:100px; position:absolute; z-index:9999; }
+/* Tooltip
+----------------------------------*/
+.ui-tooltip {
+ padding:8px; width:100px; position:absolute; z-index:9999;
+ -o-box-shadow: 0 0 5px #aaa;
+ -moz-box-shadow: 0 0 5px #aaa;
+ -webkit-box-shadow: 0 0 5px #aaa;
+ box-shadow: 0 0 5px #aaa;
+}
body .ui-tooltip { border-width:2px; }