Go back to using a link to Lutris.net, but use CSS to remove the link color (which rendered it unreadable)

This commit is contained in:
Daniel Johnson 2024-03-07 18:53:27 -05:00 committed by Mathieu Comandon
parent e0c81d7024
commit 3015ca60d4
2 changed files with 6 additions and 15 deletions

View file

@ -111,7 +111,8 @@
<object class="GtkLabel" id="notification_label">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="label" translatable="yes">Log in to Lutris.net to view your game library</property>
<property name="label" translatable="yes">Log in to &lt;a href="https://lutris.net/"&gt;Lutris.net&lt;/a&gt; to view your game library</property>
<property name="use-markup">True</property>
</object>
<packing>
<property name="expand">False</property>
@ -134,20 +135,6 @@
<property name="position">1</property>
</packing>
</child>
<child>
<object class="GtkButton" id="lutris_create_account_button">
<property name="label" translatable="yes">Create Account</property>
<property name="visible">True</property>
<property name="can-focus">True</property>
<property name="receives-default">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="pack-type">end</property>
<property name="position">2</property>
</packing>
</child>
<style>
<class name="in-app-notification"/>
<class name="app-notification"/>

View file

@ -44,3 +44,7 @@
padding: 5px;
border-radius: 0
}
.in-app-notification label link {
color: unset;
}