mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
33edf8bfcb
Summary: Mainly this changes the fonts and some minor navigation colors. I wanted to get rid of some of the 'girly blues' from Facebook and mute everything a little bit to match the change to Helvetica and new buttons. Test Plan: Tested Manifest, Profiles, and other random pages I could find. Single and Multiple Navigations. http://phab1.pushlabs.net/ Reviewers: epriestley, btrahan Reviewed By: btrahan CC: vrana, aran, Korvin Differential Revision: https://secure.phabricator.com/D3955
54 lines
1,004 B
CSS
54 lines
1,004 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 #ccc;
|
|
padding-bottom: 8em;
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation a,
|
|
th.aphront-side-nav-navigation span {
|
|
display: block;
|
|
margin: 0 0 2px;
|
|
min-width: 165px;
|
|
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;
|
|
color: #333;
|
|
text-transform: uppercase;
|
|
font-size: 11px;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation a:hover {
|
|
text-decoration: none;
|
|
background: #e7e7e7;
|
|
}
|
|
|
|
th.aphront-side-nav-navigation hr {
|
|
height: 1px;
|
|
background: #eee;
|
|
border: 0;
|
|
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: #d7d7d7;
|
|
}
|