Merge "jquery.accessKeyLabel: make modifier info public"
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderImageModule.php
index 8fd94f7..27e1201 100644 (file)
@@ -371,8 +371,8 @@ class ResourceLoaderImageModule extends ResourceLoaderModule {
        protected function getCssDeclarations( $primary, $fallback ) {
                return array(
                        "background-image: url($fallback);",
-                       "background-image: -webkit-linear-gradient(transparent, transparent), url($primary);",
                        "background-image: linear-gradient(transparent, transparent), url($primary);",
+                       // Do not serve SVG to Opera 12, bad rendering with border-radius or background-size (T87504)
                        "background-image: -o-linear-gradient(transparent, transparent), url($fallback);",
                );
        }