From 719150e92cab3c962eb5b11e6c03bd4ae8a54d96 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 6 May 2014 08:35:00 -0400 Subject: [PATCH] Tooltip: Don't use `rgba()` for solid colors in video player demo Fixes a display issue in IE8. --- demos/tooltip/video-player.html | 4 ++-- 1 file 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 { -- 2.39.5