mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
0e05f078b0
Summary: Tweaks colors, updates icons Test Plan: Tested a filetree view, clicked and hovered. Reviewers: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9335
56 lines
1.2 KiB
CSS
56 lines
1.2 KiB
CSS
/**
|
|
* @provides phabricator-filetree-view-css
|
|
*/
|
|
|
|
.phabricator-filetree {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
/* NOTE: Until the whole side nav situation gets cleaned up, we need to be
|
|
highly specific in specifying selectors here, to override side nav styles.
|
|
*/
|
|
|
|
.phabricator-filetree .phabricator-filetree-item {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: block;
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
.phabricator-filetree span.phabricator-filetree-icon {
|
|
background-repeat: no-repeat;
|
|
background-position: 0 2px;
|
|
width: 16px;
|
|
height: 20px;
|
|
padding: 0;
|
|
float: left;
|
|
}
|
|
|
|
.phabricator-filetree span.phabricator-filetree-name {
|
|
padding: 0;
|
|
margin-left: 4px;
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
line-height: 20px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.phabricator-filetree span.phabricator-filetree-item
|
|
.phabricator-filetree-name {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phabricator-filetree a.phabricator-filetree-item
|
|
.phabricator-filetree-name {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phabricator-filetree a.phabricator-filetree-item:hover {
|
|
text-decoration: none;
|
|
background-color: {$hovergrey};
|
|
}
|
|
|
|
.phabricator-filetree .phabricator-active-nav-focus {
|
|
background-color: {$hovergrey};
|
|
border-left: 4px solid {$sky};
|
|
}
|