From 0f032ebfbdad9e6152ba6142026ddef739aa0be2 Mon Sep 17 00:00:00 2001 From: chamalis Date: Tue, 10 Sep 2024 18:15:31 +0200 Subject: [PATCH] fix transparent fonts in configure meeting window Apply a black color rule to GtkCheckButton to make the fonts visible # fixes #40 --- gui/definitions/ConfigureMeetingWindow.xml | 6 ++++++ sass/ui/configure-meeting-window.scss | 3 +++ 2 files changed, 9 insertions(+) diff --git a/gui/definitions/ConfigureMeetingWindow.xml b/gui/definitions/ConfigureMeetingWindow.xml index 8923960f..e9f3abf2 100644 --- a/gui/definitions/ConfigureMeetingWindow.xml +++ b/gui/definitions/ConfigureMeetingWindow.xml @@ -313,6 +313,9 @@ 0 True + False @@ -336,6 +339,9 @@ As a super user you will be able to do things that others do not, such as silencing another user or expelling him/her from the meeting, etc. True + False diff --git a/sass/ui/configure-meeting-window.scss b/sass/ui/configure-meeting-window.scss index e69de29b..7a6ac15e 100644 --- a/sass/ui/configure-meeting-window.scss +++ b/sass/ui/configure-meeting-window.scss @@ -0,0 +1,3 @@ +.GtkCheckButton { + color: black; +}