jQuery 1.3.2 and UI 1.7.1, may still have some regressions, add screen columns setting to the write/edit post/page screen options, fixes #8867

git-svn-id: https://develop.svn.wordpress.org/trunk@10834 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-03-25 14:29:22 +00:00
parent 265f0347fd
commit 759fde9021
26 changed files with 307 additions and 246 deletions

View File

@@ -368,7 +368,7 @@ div.dashboard-widget-submit input:hover,
color: #EAF2FA !important;
}
#side-info-column #category-tabs .ui-tabs-selected a {
#side-sortables #category-tabs .ui-tabs-selected a {
color: #333;
}

View File

@@ -368,7 +368,7 @@ div.dashboard-widget-submit input:hover,
color: #EAF2FA !important;
}
#side-info-column #category-tabs .ui-tabs-selected a {
#side-sortables #category-tabs .ui-tabs-selected a {
color: #333;
}

View File

@@ -56,18 +56,6 @@ form .textarea-wrap {
min-width: 0;
}
#dashboard-widgets-wrap .has-sidebar {
margin-right: -51%;
}
#dashboard-widgets-wrap .inner-sidebar {
width: 49%;
}
#dashboard-widgets-wrap .has-sidebar .has-sidebar-content {
margin-right: 51%;
}
div.postbox div.inside {
margin: 10px;
position: relative;

View File

@@ -116,19 +116,20 @@ table {
.inner-sidebar {
float: right;
clear: right;
display: none;
}
.inner-sidebar #side-sortables {
width: 280px;
position: relative;
min-height: 300px;
}
.has-sidebar {
float: left;
clear: left;
width: 100%;
margin-right: -340px;
.has-right-sidebar .inner-sidebar {
display: block;
}
.has-sidebar .has-sidebar-content {
margin-right: 305px;
.has-right-sidebar #post-body {
margin-right: 300px;
}
/* 2 columns main area */

View File

@@ -22,8 +22,9 @@ input.button-highlighted {
margin-bottom: -1px;
}
* html #side-info-column {
height: auto;
* html .inner-sidebar #side-sortables,
* html .postbox-container .meta-box-sortables {
height: 300px;
}
* html #wpbody-content #screen-options-link-wrap {
@@ -38,16 +39,6 @@ input.button-highlighted {
text-align: center;
}
/*
* html body.minwidth {
_width: expression(document.documentElement.clientWidth < 810 ? "808px" : "99.9%");
}
* html #wpbody {
_width: expression(document.documentElement.clientWidth > 982 ? "980px" : "99.9%");
}
*/
* html #adminmenu {
margin-left: -80px;
}
@@ -62,6 +53,10 @@ input.button-highlighted {
margin: 0;
}
* html #footer {
margin: 0;
}
#wpcontent.folded #adminmenu li.menu-top {
display: block;
}
@@ -347,3 +342,9 @@ table.ie-fixed {
display: inline-block;
padding: 2px 5px;
}
* html .stuffbox,
* html .stuffbox input,
* html .stuffbox textarea {
border: 1px solid #DFDFDF;
}