mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix margin hover issue on pinboard.
Summary: Removes the -1px and tweaks the colors just a bit more. Test Plan: Review Pholio and Macro. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2664 Differential Revision: https://secure.phabricator.com/D5213
This commit is contained in:
parent
67e086bba7
commit
413c65b608
2 changed files with 4 additions and 4 deletions
|
@ -2869,7 +2869,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phabricator-pinboard-view-css' =>
|
||||
array(
|
||||
'uri' => '/res/e0f29265/rsrc/css/layout/phabricator-pinboard-view.css',
|
||||
'uri' => '/res/b5a7de33/rsrc/css/layout/phabricator-pinboard-view.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
}
|
||||
|
||||
.phabricator-pinboard-item-view {
|
||||
margin: 0 20px 20px 0;
|
||||
border: 1px solid #d7d7d7;
|
||||
margin: 0 16px 16px 0;
|
||||
border: 1px solid #d5d9df;
|
||||
background: #ffffff;
|
||||
border-radius: 3px;
|
||||
|
||||
|
@ -23,7 +23,6 @@
|
|||
.phabricator-pinboard-item-view:hover {
|
||||
cursor: pointer;
|
||||
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.30);
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
/* On phones, show a single column of items. */
|
||||
|
@ -42,6 +41,7 @@
|
|||
font-weight: bold;
|
||||
border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-bottom: 1px solid #d5d9df;
|
||||
}
|
||||
|
||||
.phabricator-pinboard-item-header a {
|
||||
|
|
Loading…
Reference in a new issue