Make some of the color CSS selectors more specific so that the category tabs on the Write page don't get messed up. Props mdawaffe. see #6998
git-svn-id: http://svn.automattic.com/wordpress/trunk@8013 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
18fb540124
commit
ed5eba0909
|
@ -304,7 +304,7 @@ ul#widget-list li.widget-list-item h4.widget-title {
|
||||||
color: #2782af
|
color: #2782af
|
||||||
}
|
}
|
||||||
/* Because we don't want visited on these links */
|
/* Because we don't want visited on these links */
|
||||||
#adminmenu a.current, #sidemenu a.current, .ui-tabs-selected a, .ui-tabs-selected a:hover {
|
#adminmenu a.current, #sidemenu a.current, body.press-this .ui-tabs-selected a, body.press-this .ui-tabs-selected a:hover {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #07273e;
|
border-color: #07273e;
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: #fff;
|
||||||
|
|
|
@ -284,7 +284,7 @@ ul#widget-list li.widget-list-item h4.widget-title {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Because we don't want visited on these links */
|
/* Because we don't want visited on these links */
|
||||||
#adminmenu a.current, #sidemenu a.current, .ui-tabs-selected a, .ui-tabs-selected a:hover {
|
#adminmenu a.current, #sidemenu a.current, body.press-this .ui-tabs-selected a, body.press-this .ui-tabs-selected a:hover {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #c6d9e9;
|
border-color: #c6d9e9;
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: #fff;
|
||||||
|
|
|
@ -326,7 +326,7 @@ $url = clean_url($_GET['u']);
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="press-this">
|
||||||
<div id="wphead">
|
<div id="wphead">
|
||||||
<h1><span id="viewsite"><a href="<?php echo get_option('home'); ?>/"><?php _e('Visit:') ?> <?php bloginfo('name'); ?></a></span></h1>
|
<h1><span id="viewsite"><a href="<?php echo get_option('home'); ?>/"><?php _e('Visit:') ?> <?php bloginfo('name'); ?></a></span></h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue