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

Simplify selecting authors and revisions in blame

Summary: Déjà vu: D1736.

Test Plan: Double click besides author in blame.

Reviewers: epriestley, jungejason

Reviewed By: jungejason

CC: aran

Differential Revision: https://secure.phabricator.com/D2166
This commit is contained in:
vrana 2012-04-08 23:26:40 -07:00
parent 935f3657b5
commit b5adde88d4
3 changed files with 7 additions and 4 deletions

View file

@ -638,7 +638,7 @@ celerity_register_resource_map(array(
), ),
'diffusion-source-css' => 'diffusion-source-css' =>
array( array(
'uri' => '/res/9f79ed12/rsrc/css/application/diffusion/diffusion-source.css', 'uri' => '/res/bedea304/rsrc/css/application/diffusion/diffusion-source.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(

View file

@ -47,7 +47,6 @@
vertical-align: top; vertical-align: top;
background: #eeeeee; background: #eeeeee;
color: #888888; color: #888888;
cursor: pointer;
border-style: solid; border-style: solid;
border-width: 0px 1px; border-width: 0px 1px;
border-color: #eeeeee #999999 #eeeeee #dddddd; border-color: #eeeeee #999999 #eeeeee #dddddd;

View file

@ -45,12 +45,16 @@
.diffusion-rev-link a, .diffusion-rev-link a,
.diffusion-author-link a, .diffusion-author-link a,
.diffusion-line-link a { .diffusion-line-link a {
/* Give the user a larger click target. */
display: block;
padding: 2px 8px; padding: 2px 8px;
font-weight: bold; font-weight: bold;
} }
.diffusion-blame-link a,
.diffusion-line-link a {
/* Give the user a larger click target. */
display: block;
}
.diffusion-author-link span { .diffusion-author-link span {
padding: 2px 8px; padding: 2px 8px;
} }