Move min-height to correctly fix bug, edit colors to match https://github.com/The-Compiler/qutebrowser/pull/1021.
This commit is contained in:
parent
27db1ad891
commit
9b5c0075b9
@ -84,19 +84,14 @@ class CompletionView(QTreeView):
|
||||
|
||||
QTreeView QScrollBar {
|
||||
width: {{ config.get('completion', 'scrollbar.width') }}px;
|
||||
min-height: 10px;
|
||||
{{ color['completion.scrollbar.bg'] }}
|
||||
background: {{ color['completion.scrollbar.bg'] }};
|
||||
}
|
||||
|
||||
QTreeView QScrollBar::handle {
|
||||
/*
|
||||
This is done this way to evade 'magic'
|
||||
ref: http://git.io/vCMqZ
|
||||
Will need to be changed when we utilize jinja better.
|
||||
*/
|
||||
background: {{ config.get('colors', 'completion.scrollbar.fg') }};
|
||||
background: {{ color[completion.scrollbar.fg] }};
|
||||
border: {{ config.get('completion', 'scrollbar.padding') }}px solid
|
||||
{{ config.get('colors', 'completion.scrollbar.bg') }};
|
||||
{{ color['completion.scrollbar.bg'] }};
|
||||
min-height: 10px;
|
||||
}
|
||||
|
||||
QTreeView QScrollBar::sub-line, QScrollBar::add-line {
|
||||
|
Loading…
Reference in New Issue
Block a user