Ticket #18866: gradient-add.diff

File gradient-add.diff, 1.4 KB (added by hamptonpaulk, 19 months ago)

Building on the last including gradients removing image

  • wp-includes/functions.php

     
    28602860                        border-radius: 11px; 
    28612861                        border: 1px solid #dfdfdf; 
    28622862                } 
     2863                .button:hover { 
     2864                        color: #000; 
     2865                        border-color: #666; 
     2866                } 
     2867                .button { 
     2868                        font-family: sans-serif; 
     2869                        text-decoration: none; 
     2870                        font-size: 14px !important; 
     2871                        line-height: 16px; 
     2872                        padding: 6px 12px; 
     2873                        cursor: pointer; 
     2874                        border: 1px solid #ccc; 
     2875                        color: #464646  ; 
     2876                        -moz-border-radius: 15px; 
     2877                        -khtml-border-radius: 15px; 
     2878                        -webkit-border-radius: 15px; 
     2879                        border-radius: 15px; 
     2880                        -moz-box-sizing: content-box; 
     2881                        -webkit-box-sizing: content-box; 
     2882                        -khtml-box-sizing: content-box; 
     2883                        box-sizing: content-box; 
     2884                        background-color: #f4f4f4; /* Fallback */ 
     2885                        background-image: -ms-linear-gradient(bottom, #eee, #fff); /* IE10 */ 
     2886                        background-image: -moz-linear-gradient(bottom, #eee, #fff); /* Firefox */ 
     2887                        background-image: -o-linear-gradient(bottom, #eee, #fff); /* Opera */ 
     2888                        background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#fff)); /* old Webkit */ 
     2889                        background-image: -webkit-linear-gradient(bottom, #eee, #fff); /* new Webkit */ 
     2890                        background-image: linear-gradient(bottom, #eee, #fff); /* proposed W3C Markup */ 
     2891                } 
    28632892                #error-page { 
    28642893                        margin-top: 50px; 
    28652894                }