Skip to content

Commit 719150e

Browse files
committed
Tooltip: Don't use rgba() for solid colors in video player demo
Fixes a display issue in IE8.
1 parent 8e96263 commit 719150e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/tooltip/video-player.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
width: 500px;
2020
height: 300px;
2121
border: 2px groove gray;
22-
background: rgb(200, 200, 200);
22+
background: #ccc;
2323
text-align: center;
2424
line-height: 300px;
2525
}
2626
.ui-tooltip {
2727
border: 1px solid white;
28-
background: rgba(20, 20, 20, 1);
28+
background: #111;
2929
color: white;
3030
}
3131
.ui-menu {

0 commit comments

Comments
 (0)