mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
Temporary fix for 1px issue with controls header on FF
This commit is contained in:
parent
62b7c71ff2
commit
a03f24b7ed
@ -333,7 +333,9 @@
|
|||||||
$el.css({
|
$el.css({
|
||||||
position : 'fixed',
|
position : 'fixed',
|
||||||
top : $parent.offset().top,
|
top : $parent.offset().top,
|
||||||
width : $fake.css('width')
|
// Firefox gives 1px too much depending on total width.
|
||||||
|
// TODO: find a better solution for -1
|
||||||
|
width : ($fake.width() - 1) + 'px'
|
||||||
});
|
});
|
||||||
|
|
||||||
$fake.css({
|
$fake.css({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user