1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-28 00:10:57 +01:00

[Redesign] Normalize colors on PHUIListView

Summary: Darker greys, less background colors, proper borders. Ref T8099

Test Plan: Tested a tab panel and Files application.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8099

Differential Revision: https://secure.phabricator.com/D12924
This commit is contained in:
Chad Little 2015-05-19 09:02:07 -07:00
parent 38445b47c0
commit dde1237e37
2 changed files with 10 additions and 10 deletions

View file

@ -7,7 +7,7 @@
*/
return array(
'names' => array(
'core.pkg.css' => 'b18694c1',
'core.pkg.css' => '420ee9bd',
'core.pkg.js' => 'f3e08b38',
'darkconsole.pkg.js' => 'e7393ebb',
'differential.pkg.css' => 'bb338e4b',
@ -138,7 +138,7 @@ return array(
'rsrc/css/phui/phui-image-mask.css' => '5a8b09c8',
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
'rsrc/css/phui/phui-info-view.css' => '33595731',
'rsrc/css/phui/phui-list.css' => '2e25ebfb',
'rsrc/css/phui/phui-list.css' => 'e448b6ba',
'rsrc/css/phui/phui-object-box.css' => '23e36d6b',
'rsrc/css/phui/phui-object-item-list-view.css' => '4be0645f',
'rsrc/css/phui/phui-pinboard-view.css' => 'eaab2b1b',
@ -773,7 +773,7 @@ return array(
'phui-info-panel-css' => '27ea50a1',
'phui-info-view-css' => '33595731',
'phui-inline-comment-view-css' => '2174771a',
'phui-list-view-css' => '2e25ebfb',
'phui-list-view-css' => 'e448b6ba',
'phui-object-box-css' => '23e36d6b',
'phui-object-item-list-view-css' => '4be0645f',
'phui-pinboard-view-css' => 'eaab2b1b',

View file

@ -29,7 +29,7 @@
.phui-list-sidenav .phui-list-item-type-divider {
margin: 8px 8px 12px 8px;
border-bottom: 1px solid #e7e7e7;
border-bottom: 1px solid {$thinblueborder};
}
.phui-list-sidenav .phui-list-item-icon {
@ -89,15 +89,14 @@
.phui-list-view.phui-list-navbar {
list-style: none;
overflow: hidden;
border-bottom: 1px solid #e7e7e7;
background: {$lightgreybackground};
border-bottom: 1px solid {$thinblueborder};
}
.phui-list-view.phui-list-navbar > li {
list-style: none;
float: left;
display: block;
border-right: 1px solid #e7e7e7;
border-right: 1px solid {$thinblueborder};
}
.phui-list-view.phui-list-navbar > li > * {
@ -105,19 +104,20 @@
}
.phui-list-navbar .phui-list-item-href {
color: {$lightbluetext};
color: {$bluetext};
padding: 8px 16px;
font-size: 12px;
letter-spacing: 0.5px;
}
.phui-list-navbar .phui-list-item-selected .phui-list-item-href {
background: {$greybackground};
background: {$lightgreybackground};
color: {$darkbluetext};
font-weight: 500;
}
.phui-list-navbar .phui-list-item-href:hover {
background: #DEE0E4;
background: rgba(100,100,100,.1);
color: {$darkgreytext};
text-decoration: none;
}