aboutsummaryrefslogtreecommitdiffstats
path: root/demos/tooltip/video-player.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2014-05-06 08:35:00 -0400
committerScott González <scott.gonzalez@gmail.com>2014-05-06 08:37:05 -0400
commit719150e92cab3c962eb5b11e6c03bd4ae8a54d96 (patch)
tree9a5d3e80e5a4c09f53b294fdcfedfa227f059eec /demos/tooltip/video-player.html
parent8e9626393e2ed921948ec43bf3d69d4e459b4cbd (diff)
downloadjquery-ui-719150e92cab3c962eb5b11e6c03bd4ae8a54d96.tar.gz
jquery-ui-719150e92cab3c962eb5b11e6c03bd4ae8a54d96.zip
Tooltip: Don't use `rgba()` for solid colors in video player demo
Fixes a display issue in IE8.
Diffstat (limited to 'demos/tooltip/video-player.html')
-rw-r--r--demos/tooltip/video-player.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/tooltip/video-player.html b/demos/tooltip/video-player.html
index ce349d11e..1a41ef7f4 100644
--- a/demos/tooltip/video-player.html
+++ b/demos/tooltip/video-player.html
@@ -19,13 +19,13 @@
width: 500px;
height: 300px;
border: 2px groove gray;
- background: rgb(200, 200, 200);
+ background: #ccc;
text-align: center;
line-height: 300px;
}
.ui-tooltip {
border: 1px solid white;
- background: rgba(20, 20, 20, 1);
+ background: #111;
color: white;
}
.ui-menu {