Changes from branches/3.3/wp-includes/functions.php at r19636 to trunk/wp-includes/functions.php at r19417
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r19636 r19417 2897 2897 -webkit-box-sizing: content-box; 2898 2898 box-sizing: content-box; 2899 background-color: #f5f5f5;2900 background-image: -ms-linear-gradient(top, #ffffff, #f2f2f2);2901 background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);2902 background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);2903 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f2f2));2904 background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);2905 background-image: linear-gradient(top, #ffffff, #f2f2f2);2906 2899 } 2907 2900 … … 2911 2904 } 2912 2905 2906 .button { 2907 background: #f2f2f2 url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad.png) repeat-x scroll left top; 2908 } 2909 2913 2910 .button:active { 2914 background-image: -ms-linear-gradient(top, #f2f2f2, #ffffff); 2915 background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff); 2916 background-image: -o-linear-gradient(top, #f2f2f2, #ffffff); 2917 background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff)); 2918 background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff); 2919 background-image: linear-gradient(top, #f2f2f2, #ffffff); 2920 } 2921 2911 background: #eee url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad-active.png) repeat-x scroll left top; 2912 } 2922 2913 <?php if ( 'rtl' == $text_direction ) : ?> 2923 2914 body { font-family: Tahoma, Arial; }
Note: See TracChangeset
for help on using the changeset viewer.