fix a bug where tooltips would not retain their width near the right edge of the screen, fixes #568
This commit is contained in:
parent
fa146ebbba
commit
aae7ba2485
2 changed files with 2 additions and 2 deletions
|
@ -2543,8 +2543,9 @@ Miscellaneous
|
||||||
.OxTooltip {
|
.OxTooltip {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 1px 3px 1px 3px;
|
padding: 1px 3px 1px 3px;
|
||||||
|
border-radius: 4px;
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
//opacity: 0;
|
//opacity: 0;
|
||||||
|
white-space: nowrap;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
border-radius: 4px;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -170,7 +170,6 @@ Ox.BlockVideoTimeline = function(options, self) {
|
||||||
// fixme: check if this pattern is better
|
// fixme: check if this pattern is better
|
||||||
// than the one used for list selection
|
// than the one used for list selection
|
||||||
if (!self.triggered) {
|
if (!self.triggered) {
|
||||||
Ox.Log('Video', 'trigger............')
|
|
||||||
that.triggerEvent('position', {
|
that.triggerEvent('position', {
|
||||||
position: self.options.position
|
position: self.options.position
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue