Add separator between paned stacks in main window

A GtkSeparator was added between paned stacks in main window to align it with the separator in the headerbar. Since the sidebar already had a border, be need to remove it.
This commit is contained in:
mimi89999 2021-01-17 12:49:21 +01:00 committed by Xavier Del Campo Romero
parent 76ce40d9e3
commit 1b4cc3a6aa
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
2 changed files with 14 additions and 0 deletions

View File

@ -74,6 +74,11 @@ window.dino-main .dino-sidebar > frame {
border-bottom: 1px solid @borders;
}
window.dino-main list.sidebar {
border-left: 0px;
border-right: 0px;
}
.message-box {
transition: background .05s ease;
}

View File

@ -66,6 +66,15 @@
<property name="name">list-pane</property>
</packing>
</child>
<child>
<object class="GtkSeparator" id="paned_separator">
<property name="orientation">vertical</property>
<property name="visible">True</property>
<style>
<class name="sidebar"/>
</style>
</object>
</child>
<child>
<object class="GtkOverlay">
<property name="visible">True</property>