gnome-control-center/panels/system/about/cc-info-entry.ui
Automeris naranja dcb0231baf cc-info-entry: Use the .caption style class
Scaling the text isn't necessary here, because
the .caption style class already makes the text
small.
2024-01-08 09:42:46 +00:00

33 lines
928 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="CcInfoEntry" parent="GtkBox">
<property name="accessible-role">group</property>
<property name="orientation">vertical</property>
<accessibility>
<relation name="labelled-by">prop</relation>
<property name="label">Info entry</property>
</accessibility>
<!-- Prop -->
<child>
<object class="GtkLabel" id="prop">
<property name="halign">start</property>
<style>
<class name="dim-label"/>
<class name="caption"/>
</style>
</object>
</child>
<!-- Value -->
<child>
<object class="GtkLabel" id="value">
<property name="halign">start</property>
<property name="selectable">true</property>
<property name="wrap">True</property>
<property name="xalign">0</property>
</object>
</child>
</template>
</interface>