Changeset 19635 for trunk/wp-includes/functions.php
- Timestamp:
- 12/30/2011 10:25:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r19613 r19635 2177 2177 -webkit-box-sizing: content-box; 2178 2178 box-sizing: content-box; 2179 background-color: #f5f5f5; 2180 background-image: -ms-linear-gradient(top, #ffffff, #f2f2f2); 2181 background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); 2182 background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); 2183 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f2f2)); 2184 background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); 2185 background-image: linear-gradient(top, #ffffff, #f2f2f2); 2179 2186 } 2180 2187 … … 2184 2191 } 2185 2192 2186 .button {2187 background: #f2f2f2 url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad.png) repeat-x scroll left top;2188 }2189 2190 2193 .button:active { 2191 background: #eee url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad-active.png) repeat-x scroll left top; 2192 } 2194 background-image: -ms-linear-gradient(top, #f2f2f2, #ffffff); 2195 background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff); 2196 background-image: -o-linear-gradient(top, #f2f2f2, #ffffff); 2197 background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff)); 2198 background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff); 2199 background-image: linear-gradient(top, #f2f2f2, #ffffff); 2200 } 2201 2193 2202 <?php if ( 'rtl' == $text_direction ) : ?> 2194 2203 body { font-family: Tahoma, Arial; }
Note: See TracChangeset
for help on using the changeset viewer.