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
_______________________________________________
Gimp-docs mailing list
Gimp-docs@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-docs

Reply via email to