Tooltip: Don't use rgba() for solid colors in video player demo

Fixes a display issue in IE8.
This commit is contained in:
Scott González
2014-05-06 08:35:00 -04:00
parent 8e9626393e
commit 719150e92c

View File

@@ -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 {