themes: Prevent system theme leak in dialogue frames

Resolves #14421
This patch provides a CSS rule for GtkFrame borders inside of
a dialogue (see Filmstrip plug-in GUI for an example) to prevent
a system theme leak from altering the color.
This commit is contained in:
Alx Sa 2025-07-07 19:24:02 +00:00
parent 74271cd834
commit 2bbe19589d

View file

@ -670,6 +670,11 @@ border {
border: 0px;
}
/* The border around frames in dialogs */
dialog .frame {
border: 1px solid @border-color;
}
/* The border around GimpOffsetArea frame in resize dialogs */
.gimp-offset-area-frame {
border: solid 2px @stronger-border-color;