Created
September 16, 2023 09:08
-
-
Save taozuhong/7ec344782d2bbc3477631622b72445bc to your computer and use it in GitHub Desktop.
GtkColumnView CSS example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```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