Changeset 19636 for branches/3.3/wp-includes/functions.php
- Timestamp:
- 12/30/2011 10:29:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/wp-includes/functions.php
r19417 r19636 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); 2899 2906 } 2900 2907 … … 2904 2911 } 2905 2912 2906 .button {2907 background: #f2f2f2 url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad.png) repeat-x scroll left top;2908 }2909 2910 2913 .button:active { 2911 background: #eee url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad-active.png) repeat-x scroll left top; 2912 } 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 2913 2922 <?php if ( 'rtl' == $text_direction ) : ?> 2914 2923 body { font-family: Tahoma, Arial; }
Note: See TracChangeset
for help on using the changeset viewer.