mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 16:02:00 +02:00
Make linked buttons icons closer to each other
This commit is contained in:
@@ -25,6 +25,12 @@ radio {
|
|||||||
background: alpha(@borders, 0.75);
|
background: alpha(@borders, 0.75);
|
||||||
min-width: 1px;
|
min-width: 1px;
|
||||||
}
|
}
|
||||||
|
.linkedleft image {
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
|
.linkedright image {
|
||||||
|
margin-right: 2px;
|
||||||
|
}
|
||||||
/* Non-osd style for popover menu */
|
/* Non-osd style for popover menu */
|
||||||
.menupopover label {
|
.menupopover label {
|
||||||
color: @theme_text_color;
|
color: @theme_text_color;
|
||||||
|
@@ -50,6 +50,7 @@ class ClapperHeaderBarBase extends Gtk.Box
|
|||||||
icon_name: 'go-bottom-symbolic',
|
icon_name: 'go-bottom-symbolic',
|
||||||
});
|
});
|
||||||
floatButton.add_css_class('circular');
|
floatButton.add_css_class('circular');
|
||||||
|
floatButton.add_css_class('linkedleft');
|
||||||
floatButton.connect('clicked',
|
floatButton.connect('clicked',
|
||||||
this._onFloatButtonClicked.bind(this)
|
this._onFloatButtonClicked.bind(this)
|
||||||
);
|
);
|
||||||
@@ -65,6 +66,7 @@ class ClapperHeaderBarBase extends Gtk.Box
|
|||||||
icon_name: 'view-fullscreen-symbolic',
|
icon_name: 'view-fullscreen-symbolic',
|
||||||
});
|
});
|
||||||
fullscreenButton.add_css_class('circular');
|
fullscreenButton.add_css_class('circular');
|
||||||
|
fullscreenButton.add_css_class('linkedright');
|
||||||
fullscreenButton.connect('clicked',
|
fullscreenButton.connect('clicked',
|
||||||
this._onFullscreenButtonClicked.bind(this)
|
this._onFullscreenButtonClicked.bind(this)
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user