extended video demo

This commit is contained in:
rolux 2011-05-14 21:32:49 +02:00
commit 4255470e29
5 changed files with 628 additions and 323 deletions

View file

@ -1647,7 +1647,6 @@ Video
margin-left: 4px;
}
.OxVideoPlayer > .OxBar .OxInputGroup {
//width: 98px;
}

File diff suppressed because it is too large Load diff

View file

@ -34,8 +34,13 @@ Ox.Tooltip = function(options, self) {
return that;
};
// can pass event instead of x/y
that.show = function(x, y) {
var left, top, width, height;
if (arguments.length == 1) {
y = arguments[0].clientY;
x = arguments[0].clientX;
}
$('.OxTooltip').remove(); // fixme: don't use DOM
that.appendTo(Ox.UI.$body);
width = that.width();

View file

@ -459,6 +459,12 @@ Video
background: rgb(48, 48, 48);
}
.OxThemeModern .OxVideo.OxFocus {
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
}
.OxThemeModern .OxVideoPlayer {
background: rgb(0, 0, 0);
}