Changeset 5324 for trunk/wp-admin/widgets.php
- Timestamp:
- 04/27/2007 12:51:19 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/widgets.php
r5316 r5324 15 15 define( 'WP_WIDGETS_HEIGHT', 35 * ( count( $wp_registered_widgets ) ) ); 16 16 ?> 17 <link rel="stylesheet" href="widgets.css?version=<?php bloginfo('version'); ?>" type="text/css" /> 17 18 <style type="text/css"> 18 <?php include dirname( __FILE__ ) . '/widgets.css'; ?> 19 .dropzone ul { height: <?php echo constant( 'WP_WIDGETS_HEIGHT' ); ?>px; } 20 #sbadmin #zones { width: <?php echo constant( 'WP_WIDGETS_WIDTH' ); ?>px; } 19 21 </style> 20 <?php 22 <?php if ( ('rtl' == get_bloginfo('text_direction')) ) : ?> 23 <link rel="stylesheet" href="widgets-rtl.css?version=<?php bloginfo('version'); ?>" type="text/css" /> 24 <?php 25 endif; 21 26 } 22 27 … … 220 225 <?php foreach ( $wp_registered_widget_controls as $name => $widget ) { ?> 221 226 <div class="hidden" id="<?php echo $widget['id']; ?>control"> 222 <span class="controlhandle"><?php echo $ name; ?></span>227 <span class="controlhandle"><?php echo $widget['name']; ?></span> 223 228 <span id="<?php echo $widget['id']; ?>closer" class="controlcloser">×</span> 224 229 <div class="controlform">
Note: See TracChangeset
for help on using the changeset viewer.