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:
parent
6849a10de7
commit
84a669b52d
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue