mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
Add separator to linked buttons
This commit is contained in:
@@ -21,6 +21,10 @@ radio {
|
|||||||
.osdheaderbar button {
|
.osdheaderbar button {
|
||||||
border: transparent;
|
border: transparent;
|
||||||
}
|
}
|
||||||
|
.linkseparator {
|
||||||
|
background: alpha(@borders, 0.75);
|
||||||
|
min-width: 1px;
|
||||||
|
}
|
||||||
/* Non-osd style for popover menu */
|
/* Non-osd style for popover menu */
|
||||||
.menupopover label {
|
.menupopover label {
|
||||||
color: @theme_text_color;
|
color: @theme_text_color;
|
||||||
|
@@ -55,6 +55,12 @@ class ClapperHeaderBarBase extends Gtk.Box
|
|||||||
);
|
);
|
||||||
this.extraButtonsBox.append(floatButton);
|
this.extraButtonsBox.append(floatButton);
|
||||||
|
|
||||||
|
const separator = new Gtk.Separator({
|
||||||
|
orientation: Gtk.Orientation.VERTICAL,
|
||||||
|
});
|
||||||
|
separator.add_css_class('linkseparator');
|
||||||
|
this.extraButtonsBox.append(separator);
|
||||||
|
|
||||||
const fullscreenButton = new Gtk.Button({
|
const fullscreenButton = new Gtk.Button({
|
||||||
icon_name: 'view-fullscreen-symbolic',
|
icon_name: 'view-fullscreen-symbolic',
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user