1
0
Fork 0
forked from 0x2620/oxjs

make border of video box in video timeline player themed

This commit is contained in:
rolux 2013-02-21 12:29:45 +05:30
commit d98cf99714
3 changed files with 14 additions and 7 deletions

View file

@ -294,15 +294,13 @@ Ox.VideoTimelinePlayer = function(options, self) {
});
self.$frameBox = $('<div>')
.addClass('OxVideoBox')
.css({
position: 'absolute',
right: 0,
top: self.margin / 2 - 1 + 'px',
width: self.videoWidth + 'px',
height: self.tileHeight + 'px',
borderTop: '1px solid rgb(128, 128, 128)',
borderBottom: '1px solid rgb(128, 128, 128)',
background: 'rgb(0, 0, 0)'
height: self.tileHeight + 'px'
})
.appendTo(self.$timelines[self.videoLines[1]][0]);
@ -337,15 +335,13 @@ Ox.VideoTimelinePlayer = function(options, self) {
.appendTo(self.$frameBox);
self.$videoBox = $('<div>')
.addClass('OxVideoBox')
.css({
position: 'absolute',
right: 0,
top: self.margin / 2 - 1 + 'px',
width: self.videoWidth + 'px',
height: self.tileHeight + 'px',
borderTop: '1px solid rgb(128, 128, 128)',
borderBottom: '1px solid rgb(128, 128, 128)',
background: 'rgb(0, 0, 0)',
zIndex: 5
})
.appendTo(self.$timelines[self.videoLines[0]][0]);