forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: wilk on March 17, 2012, 12:21:40 am

Title: border-radius support for Opera
Post by: wilk on March 17, 2012, 12:21:40 am
Recently I've installed Chrome, just to see a sad thing… All that time I was missing visual experience of border-radius in my Opera. :( border-radius is supported in Opera since the same time as in other browsers (without -o- prefix). You can verify that here: http://www.caniuse.com/#search=border-radius

It's not really a bug, so I post it as a feature request (I've patched my own gallery by self, but others may miss it too ;)).
Title: Re: border-radius support for Opera
Post by: wilk on March 17, 2012, 12:34:24 am
My fault, it should go to themes forum. Sorry.
Title: Re: border-radius support for Opera
Post by: Αndré on March 19, 2012, 11:40:00 am
Moved from feature requests to themes board.

I've patched my own gallery by self, but others may miss it too ;)
Please attach your changes.
Title: Re: border-radius support for Opera
Post by: wilk on March 19, 2012, 05:04:32 pm
This patch is for curve theme "style.css" file however as I checked other styles' demos it is also valid for many of them:

Code: [Select]
@@ -269,8 +270,7 @@
     padding-left:0px;
     padding-right:0px;
     margin-right:2px;
-    -moz-border-radius: 5px;
-    -webkit-border-radius: 5px;
+    border-radius: 5px;
 }
 
 .button {
@@ -485,8 +485,7 @@
     border-width:1px;
     border-color:#000000;
     margin:2px;
-    -moz-border-radius: 5px;
-    -webkit-border-radius: 5px;
+    border-radius: 5px;
 }
 
 /* pseudo-classes for image links */
@@ -887,8 +886,7 @@
     padding:15px 10px 15px 50px;
     background-repeat: no-repeat;
     background-position: 10px center;
-    -moz-border-radius: 5px;
-    -webkit-border-radius: 5px;
+    border-radius: 5px;
 }
 
 .cpg_message_info {
Title: Re: border-radius support for Opera
Post by: Αndré on March 19, 2012, 05:10:13 pm
We cannot maintain user contributed themes (which are almost all themes in the demo). I'll check your suggestion soon.
Title: Re: border-radius support for Opera
Post by: Αndré on March 20, 2012, 11:19:58 am
Added in SVN revision 8342.