RSS/Atom feed Twitter
Site is read-only, email is disabled

Stylesheet: -moz-border-radius

This discussion is connected to the gimp-docs-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

1 of 1 message available
Toggle history

Please log in to manage your subscriptions.

Stylesheet: -moz-border-radius Kolbjørn Stuestøl 20 Mar 18:11
Kolbjørn Stuestøl
2011-03-20 18:11:50 UTC (over 13 years ago)

Stylesheet: -moz-border-radius

In the stylesheets gimp22 and gimp-help-screen the class keycap is defined as
b.keycap,.keycap {
-moz-border-radius: 0.3em; }

The W3C specification for this command is border-radius: 0.3em;

To get the pretty rounded corners in all browsers I suggest to add the standard code:

b.keycap,.keycap { -moz-border-radius: 0.3em; border-radius: 0.3em;
}

More info at http://www.css3.info/preview/rounded-border/

BTW: Why is this class, and others, defined several places in the same CSS? Sometimes even the same definition twice. Why not simplify and put all definitions in the same sheet together in one enter? Something to do with the making pf the sheets?

Kolbjoern