Merge branch 'error800-master'

This commit is contained in:
Florian Bruhin 2015-01-06 16:55:37 +01:00
commit 9ebf36f26b
2 changed files with 10 additions and 10 deletions

View File

@ -131,6 +131,7 @@ Contributors, sorted by the number of commits in descending order:
* rikn00 * rikn00
* Martin Zimmermann * Martin Zimmermann
* Joel Torstensson * Joel Torstensson
* Error 800
* Brian Jackson * Brian Jackson
* Johannes Altmanninger * Johannes Altmanninger
* Regina Hug * Regina Hug
@ -140,7 +141,6 @@ Contributors, sorted by the number of commits in descending order:
* Matthias Lisin * Matthias Lisin
* Helen Sherwood-Taylor * Helen Sherwood-Taylor
* HalosGhost * HalosGhost
* Error 800
// QUTE_AUTHORS_END // QUTE_AUTHORS_END
The following people have contributed graphics: The following people have contributed graphics:

View File

@ -275,15 +275,15 @@ class HintManager(QObject):
label: The label QWebElement. label: The label QWebElement.
""" """
attrs = [ attrs = [
('display', 'inline'), ('display', 'inline !important'),
('z-index', '100000'), ('z-index', '100000 !important'),
('pointer-events', 'none'), ('pointer-events', 'none !important'),
('position', 'absolute'), ('position', 'absolute !important'),
('color', config.get('colors', 'hints.fg')), ('color', config.get('colors', 'hints.fg') + ' !important'),
('background', config.get('colors', 'hints.bg')), ('background', config.get('colors', 'hints.bg') + ' !important'),
('font', config.get('fonts', 'hints')), ('font', config.get('fonts', 'hints') + ' !important'),
('border', config.get('hints', 'border')), ('border', config.get('hints', 'border') + ' !important'),
('opacity', str(config.get('hints', 'opacity'))), ('opacity', str(config.get('hints', 'opacity')) + ' !important'),
] ]
# Make text uppercase if set in config # Make text uppercase if set in config