Make linked buttons icons closer to each other

This commit is contained in:
Rafał Dzięgiel
2021-02-19 20:56:58 +01:00
parent 67ad7d8bd4
commit 86356d5b1b
2 changed files with 8 additions and 0 deletions

View File

@@ -25,6 +25,12 @@ radio {
background: alpha(@borders, 0.75);
min-width: 1px;
}
.linkedleft image {
margin-left: 2px;
}
.linkedright image {
margin-right: 2px;
}
/* Non-osd style for popover menu */
.menupopover label {
color: @theme_text_color;

View File

@@ -50,6 +50,7 @@ class ClapperHeaderBarBase extends Gtk.Box
icon_name: 'go-bottom-symbolic',
});
floatButton.add_css_class('circular');
floatButton.add_css_class('linkedleft');
floatButton.connect('clicked',
this._onFloatButtonClicked.bind(this)
);
@@ -65,6 +66,7 @@ class ClapperHeaderBarBase extends Gtk.Box
icon_name: 'view-fullscreen-symbolic',
});
fullscreenButton.add_css_class('circular');
fullscreenButton.add_css_class('linkedright');
fullscreenButton.connect('clicked',
this._onFullscreenButtonClicked.bind(this)
);