Changeset 5324
- Timestamp:
- 04/27/2007 12:51:19 AM (18 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-admin/widgets.css
r5298 r5324 4 4 5 5 #sbadmin #zones { 6 width: <?php echo constant( 'WP_WIDGETS_WIDTH' ); ?>px;7 6 -moz-user-select: none; 8 7 -khtml-user-select: none; … … 31 30 list-style-type: none; 32 31 width: 240px; 33 height: <?php echo constant( 'WP_WIDGETS_HEIGHT' ); ?>px;34 32 float: left; 35 33 margin: 0; -
branches/2.2/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"> -
trunk/wp-admin/widgets.css
r5299 r5324 4 4 5 5 #sbadmin #zones { 6 width: <?php echo constant( 'WP_WIDGETS_WIDTH' ); ?>px;7 6 -moz-user-select: none; 8 7 -khtml-user-select: none; … … 31 30 list-style-type: none; 32 31 width: 240px; 33 height: <?php echo constant( 'WP_WIDGETS_HEIGHT' ); ?>px;34 32 float: left; 35 33 margin: 0; -
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.