not hardcode width/padding values.
This commit is contained in:
parent
19c27a04e5
commit
57d8ebfb83
@ -83,24 +83,24 @@ class CompletionView(QTreeView):
|
|||||||
}
|
}
|
||||||
|
|
||||||
QTreeView QScrollBar {
|
QTreeView QScrollBar {
|
||||||
width: 12px;
|
width: {{ config.get('completion', 'scrollbar.width') }}px;
|
||||||
{{ color['completion.scrollbar.bg'] }};
|
{{ color['completion.scrollbar.bg'] }}
|
||||||
}
|
}
|
||||||
|
|
||||||
QTreeView QScrollBar::handle{
|
QTreeView QScrollBar::handle {
|
||||||
/**
|
/*
|
||||||
This is done this way to evade 'magic'
|
This is done this way to evade 'magic'
|
||||||
ref: http://git.io/vCMqZ
|
ref: http://git.io/vCMqZ
|
||||||
Will need to be changed when we utilize jinja better.
|
Will need to be changed when we utilize jinja better.
|
||||||
**/
|
*/
|
||||||
background: {{ config.get('colors', 'completion.scrollbar.fg') }};
|
background: {{ config.get('colors', 'completion.scrollbar.fg') }};
|
||||||
border: 2px solid
|
border: {{ config.get('completion', 'scrollbar.padding') }}px solid
|
||||||
{{ config.get('colors', 'completion.scrollbar.bg') }};
|
{{ config.get('colors', 'completion.scrollbar.bg') }};
|
||||||
}
|
}
|
||||||
|
|
||||||
QTreeView QScrollBar::sub-line, QScrollBar::add-line {
|
QTreeView QScrollBar::sub-line, QScrollBar::add-line {
|
||||||
border: none;
|
border: none;
|
||||||
background:none;
|
background: none;
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user