Fix base css blocks for easier horizontal scrolling, fixes #8092

git-svn-id: https://develop.svn.wordpress.org/trunk@9827 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2008-11-21 06:26:23 +00:00
parent 035c2e33c4
commit e157d40624
7 changed files with 60 additions and 87 deletions
+2 -7
View File
@@ -304,11 +304,6 @@ td.help {
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
}
#wpcontent select {
background: url(../images/white-grad.png) repeat-x scroll left top;
color: #555;
}
.button-secondary,
.submit .button-secondary {
border-color: #CFE1EF;
@@ -1046,7 +1041,7 @@ abbr.required,
background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
}
#adminmenu.folded li.wp-menu-separator {
.folded #adminmenu li.wp-menu-separator {
background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
}
@@ -1121,7 +1116,7 @@ abbr.required,
background-color: #fff;
}
#adminmenu.folded li.menu-top,
.folded #adminmenu li.menu-top,
#adminmenu .wp-submenu .wp-submenu-head {
background-color: #F1F1F1;
}
+2 -2
View File
@@ -1041,7 +1041,7 @@ abbr.required,
background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
}
#adminmenu.folded li.wp-menu-separator {
.folded #adminmenu li.wp-menu-separator {
background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
}
@@ -1116,7 +1116,7 @@ abbr.required,
background-color: #fff;
}
#adminmenu.folded li.menu-top,
.folded #adminmenu li.menu-top,
#adminmenu .wp-submenu .wp-submenu-head {
background-color: #F1F1F1;
}
+20 -9
View File
@@ -69,17 +69,31 @@ table {
padding-bottom: 50px;
}
#wpbody {
clear: both;
margin-left: 175px;
}
div.folded #wpbody {
margin-left: 60px;
}
#wpbody-content {
overflow: hidden;
float: left;
width: 100%;
}
#adminmenu {
float: left;
clear: left;
margin: 15px 5px 15px 18px;
margin: 15px 5px 15px -160px;
position: relative;
}
div.folded #adminmenu {
margin-left: -45px;
}
#footer {
clear: both;
position: relative;
@@ -347,11 +361,8 @@ h6 {
vertical-align: middle;
}
.wrap,
.updated,
.error {
margin: 0 15px;
padding: 0;
.wrap {
margin: 0 15px 0 5px;
}
.updated,
@@ -359,7 +370,7 @@ h6 {
border-width: 1px;
border-style: solid;
padding: 0 0.6em;
margin: 3px 15px 5px;
margin: 5px 15px 2px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
@@ -379,7 +390,7 @@ h6 {
.wrap h2 {
font: italic normal normal 24px/29px Georgia, "Times New Roman", Times, serif;
margin: 0;
padding: 14px 15px 1px 0;
padding: 12px 15px 1px 0;
}
.wrap h2.long-header {
+14 -36
View File
@@ -1,29 +1,4 @@
/* Fixes for IE bugs */
* html #wpbody-content {
float: right;
}
* html #wpbody {
width: 100%;
}
* html body {
background-color: #464646;
}
* html #wpwrap {
background-color: #fff;
}
#footer {
overflow: hidden;
}
* html #footer {
width: 100%;
}
input.button,
input.button-secondary,
input.button-highlighted {
@@ -75,18 +50,13 @@ input.button-highlighted {
_width: expression(document.documentElement.clientWidth > 982 ? "980px" : "99.9%");
}
*/
ul#adminmenu {
z-index: 99;
}
* html #adminmenu {
width: 145px;
margin: 12px;
padding: 0;
margin-left: -80px;
}
#wpcontent #adminmenu.folded li.menu-top {
display: block;
* html div.folded #adminmenu {
margin-left: -22px;
}
* html #wpcontent #adminmenu li.menu-top {
@@ -95,6 +65,14 @@ ul#adminmenu {
margin: 0;
}
#wpcontent.folded #adminmenu li.menu-top {
display: block;
}
ul#adminmenu {
z-index: 99;
}
#adminmenu li.menu-top a.menu-top {
min-width: auto;
width: auto;
@@ -131,7 +109,7 @@ ul#adminmenu {
zoom: 100%;
}
#wpcontent #adminmenu.folded li.wp-menu-separator {
#wpcontent.folded #adminmenu li.wp-menu-separator {
width: 28px;
}
@@ -140,11 +118,11 @@ ul#adminmenu {
zoom: 100%;
}
#wpcontent #adminmenu.folded .menu-top {
#wpcontent.folded #adminmenu .menu-top {
height: 30px;
}
#adminmenu.folded .wp-submenu {
.folded #adminmenu .wp-submenu {
margin: -1px 0 0 0;
}