Make WordPress Core

Ticket #17975: 17975.button.patch

File 17975.button.patch, 829 bytes (added by SergeyBiryukov, 12 years ago)
  • wp-includes/functions.php

     
    28812881                a:hover {
    28822882                        color: #D54E21;
    28832883                }
     2884                .button {
     2885                        font-family: sans-serif;
     2886                        text-decoration: none;
     2887                        font-size: 14px !important;
     2888                        line-height: 16px;
     2889                        padding: 6px 12px;
     2890                        cursor: pointer;
     2891                        border: 1px solid #bbb;
     2892                        color: #464646;
     2893                        -webkit-border-radius: 15px;
     2894                        border-radius: 15px;
     2895                        -moz-box-sizing: content-box;
     2896                        -webkit-box-sizing: content-box;
     2897                        box-sizing: content-box;
     2898                        background: #f2f2f2 url(wp-admin/images/white-grad.png) repeat-x scroll left top;
     2899                }
    28842900                <?php if ( 'rtl' == $text_direction ) : ?>
    28852901                body { font-family: Tahoma, Arial; }
    28862902                <?php endif; ?>