Set a higher z-index for hint labels.

This fixes hinting on the youtube top bar.

Fixes #496.
This commit is contained in:
Florian Bruhin 2015-02-02 06:25:14 +01:00
parent 59a11c178f
commit 18b58b2001

View File

@ -284,7 +284,7 @@ class HintManager(QObject):
"""
attrs = [
('display', 'inline !important'),
('z-index', '100000 !important'),
('z-index', '{} !important'.format(int(2 ** 32 / 2 - 1))),
('pointer-events', 'none !important'),
('position', 'absolute !important'),
('color', config.get('colors', 'hints.fg') + ' !important'),