Changeset 9495
- Timestamp:
- 11/03/2008 05:37:20 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
js/inline-edit-post.js (modified) (1 diff)
-
wp-admin.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/inline-edit-post.js
r9453 r9495 161 161 var pageLevel = pageOpt[0].className.split('-')[1], nextPage = pageOpt, pageLoop = true; 162 162 while ( pageLoop ) { 163 var nextPage = nextPage.next('option'), nextLevel = nextPage[0].className.split('-')[1]; 163 var nextPage = nextPage.next('option'); 164 if (nextPage.length == 0) break; 165 var nextLevel = nextPage[0].className.split('-')[1]; 164 166 if ( nextLevel <= pageLevel ) { 165 167 pageLoop = false; -
trunk/wp-admin/wp-admin.css
r9493 r9495 2546 2546 padding: 2px 1px; 2547 2547 margin: 1px; 2548 width: 18px;2548 width: 2em; 2549 2549 } 2550 2550 2551 2551 .inline-editor .date input[name="aa"], 2552 2552 .inline-editor .modified input[name="aa"] { 2553 width: 3 0px;2553 width: 3.5em; 2554 2554 } 2555 2555 2556 2556 #wpbody-content .inline-editor .date select, 2557 2557 #wpbody-content .inline-editor .modified select { 2558 width: 80px;2558 width: 6em; 2559 2559 } 2560 2560
Note: See TracChangeset
for help on using the changeset viewer.