mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Add additional padding to the view specific workspace controls
In the latest mockup, there is more spacing around the scroll bar than between the other controls. https://bugzilla.gnome.org/show_bug.cgi?id=610189
This commit is contained in:
parent
126d02ae90
commit
b6bb26e9ae
2 changed files with 7 additions and 1 deletions
|
|
@ -206,6 +206,10 @@ StTooltip {
|
|||
-shell-close-overlap: 16px;
|
||||
}
|
||||
|
||||
.single-view-controls {
|
||||
padding: 0px 15px;
|
||||
}
|
||||
|
||||
.workspace-controls {
|
||||
width: 24px;
|
||||
height: 16px;
|
||||
|
|
|
|||
|
|
@ -744,7 +744,9 @@ SingleView.prototype = {
|
|||
},
|
||||
|
||||
createControllerBar: function() {
|
||||
let panel = new St.BoxLayout({ 'pack-start': true, vertical: true });
|
||||
let panel = new St.BoxLayout({ style_class: 'single-view-controls',
|
||||
pack_start: true,
|
||||
vertical: true });
|
||||
|
||||
let actor = new St.BoxLayout({ 'pack-start': true });
|
||||
let active = global.screen.get_active_workspace_index();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue