mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
468d2eaa10
Summary: Create a visual hierarchy with the <span>s and <a>s in the aphront-side-nav so people don't try to click on a span thinking it's a link. This is to help specifically with the case of the "All Revisions" header on the differential revision list page - I've had a few people ask about that broken link. Test Plan: Loaded the differential revision list view and the maniphest task list view to check that their left-hand navs look ok (did this in ff8 on ubuntu 11.10). Reviewers: epriestley, jungejason, btrahan Reviewed By: jungejason CC: aran, jungejason, epriestley Differential Revision: https://secure.phabricator.com/D1303
50 lines
962 B
CSS
50 lines
962 B
CSS
/**
|
|
* @provides aphront-side-nav-view-css
|
|
*/
|
|
|
|
table.aphront-side-nav-view {
|
|
width: 100%;
|
|
font-size: 13px;
|
|
}
|
|
|
|
td.aphront-side-nav-content {
|
|
width: 100%;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation {
|
|
border-right: 1px solid #bbbbbb;
|
|
padding-bottom: 8em;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation a,
|
|
th.aphront-side-nav-navigation span {
|
|
display: block;
|
|
margin: 0 0 2px;
|
|
min-width: 150px;
|
|
padding: 3px 8px 3px 24px;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation span {
|
|
padding-left: 12px;
|
|
padding-top: 6px;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation a:hover {
|
|
text-decoration: none;
|
|
background: #f3f3f9;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation hr {
|
|
height: 1px;
|
|
background: #eeeeee;
|
|
border: 0px;
|
|
margin: 12px 0px;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation a.aphront-side-nav-selected,
|
|
th.aphront-side-nav-navigation a.aphront-side-nav-selected:hover {
|
|
background: #d8dfea;
|
|
}
|