-moz-border-radius removed from firefox 13

Yesterday I upgraded to firefox 13, and I noticed that this property is no longer supported by firefox 13, jquery.ui.css uses this, and now I have all the jquery ui elements without round corners. Any solution before replacing everything manually in a css file with border radius?

+5
source share
5 answers

https://developer.mozilla.org/en/CSS/border-radius

says he was deleted at 13, there is no other choice but to change it to the radius of the border. I would not call it manual, open them in a text editor and search and replace

+9
source

border-radius is a standard, so it should always be included in your css as a backup, since browsers have adopted the standard.

+5

I used to use:

-moz-border-radius:10px;
-webkit-border-radius:10px; 

but they stopped working in v13. I switched to:

border-radius:10px;

and it works again!

+2
source

Usually you just need to do nothing, because jQuery-UI css files declare boundary radii in the right way.

<prefixed>-border-radius:xxx
border-radius:xxx

Thus, you should not even notice changes. Therefore, I cannot believe that you will skip round corners without changing the original stylesheet. Perhaps your problem lies elsewhere?

+1
source

Find and replace in a complete project ...

-2
source

All Articles