mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
52c68e1261
Summary: It always bothered me that adding/removing blame view takes two clicks. Showing it like this saves a click for almost all transformations, and I think it feels nicer too. I'm open to adding a user-setting for this (This form or the drop-down), but figured I'd ask first. Test Plan: Use buttons to switch modes - make sure text on button matches action. Repeate with lines highlighted. Reviewers: epriestley, vrana Reviewed By: epriestley CC: jungejason, Two9A, aran, Korvin Differential Revision: https://secure.phabricator.com/D3499
22 lines
296 B
CSS
22 lines
296 B
CSS
/**
|
|
* @provides aphront-crumbs-view-css
|
|
*/
|
|
|
|
.aphront-crumbs-view {
|
|
margin: 1em 2em;
|
|
}
|
|
|
|
.aphront-crumbs-content {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.aphront-crumbs-spacer {
|
|
padding: 0 .35em;
|
|
color: #888888;
|
|
}
|
|
|
|
.device-desktop .aphront-crumbs-view {
|
|
width: 66%;
|
|
}
|