Skip to content

Instantly share code, notes, and snippets.

@taozuhong
Created September 16, 2023 09:08
Show Gist options
  • Save taozuhong/7ec344782d2bbc3477631622b72445bc to your computer and use it in GitHub Desktop.
Save taozuhong/7ec344782d2bbc3477631622b72445bc to your computer and use it in GitHub Desktop.
GtkColumnView CSS example
```css
.repository header button {
min-height: 18px;
min-width: 8px;
font-size: 0.9em;
border-radius: 0;
border-style: solid;
border-bottom-width: 1px;
border-color: @borders;
}
```
```xml
<object class="GtkColumnView" id="repository">
<property name="show-column-separators">false</property>
<property name="show-row-separators">false</property>
<property name="enable-rubberband">false</property>
<property name="reorderable">false</property>
<property name="model">selection</property>
<style>
<class name="rich-list" />
<class name="repository" />
</style>
</object>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment