mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
Update pinboard view
Summary: Updates the pinboard layout with less shadow and more standard border colors. Test Plan: Reload pinboard Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6829
This commit is contained in:
parent
2ce3c5235b
commit
9acddd7722
3 changed files with 7 additions and 8 deletions
|
@ -3829,7 +3829,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phui-pinboard-view-css' =>
|
||||
array(
|
||||
'uri' => '/res/3b961aa1/rsrc/css/phui/phui-pinboard-view.css',
|
||||
'uri' => '/res/c1972bac/rsrc/css/phui/phui-pinboard-view.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -42,7 +42,8 @@ final class PHUIPinboardItemView extends AphrontView {
|
|||
$header = phutil_tag(
|
||||
'div',
|
||||
array(
|
||||
'class' => 'phui-pinboard-item-header',
|
||||
'class' => 'phui-pinboard-item-header '.
|
||||
'sprite-gradient gradient-lightblue-header',
|
||||
),
|
||||
phutil_tag('a', array('href' => $this->uri), $this->header));
|
||||
}
|
||||
|
|
|
@ -13,14 +13,13 @@
|
|||
}
|
||||
|
||||
.phui-pinboard-item-view {
|
||||
margin: 0 8px 16px 0;
|
||||
border: 1px solid #d5d9df;
|
||||
margin: 0 12px 16px 0;
|
||||
background: #ffffff;
|
||||
border-radius: 3px;
|
||||
|
||||
border: 1px solid #bfcfda;
|
||||
border-bottom: 1px solid #95a6c5;
|
||||
float: left;
|
||||
width: 288px;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
@ -38,11 +37,10 @@
|
|||
.phui-pinboard-item-header {
|
||||
padding: 5px 10px;
|
||||
display: block;
|
||||
background: #edf0f4;
|
||||
font-weight: bold;
|
||||
border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-bottom: 1px solid #d5d9df;
|
||||
border-bottom: 1px solid #bfcfda;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue