mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Awesomify dragging stuff on workboards
Summary: Such fun. Many pixels. Professional PM. Much Business. Test Plan: Move stuff in and around workboards Reviewers: epriestley, btrahan Reviewed By: btrahan CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8007
This commit is contained in:
parent
e5aea53652
commit
5968ed8fd8
3 changed files with 21 additions and 10 deletions
|
@ -7,7 +7,7 @@
|
|||
return array(
|
||||
'names' =>
|
||||
array(
|
||||
'core.pkg.css' => '69c32d07',
|
||||
'core.pkg.css' => '2eafddad',
|
||||
'core.pkg.js' => 'c907bd96',
|
||||
'darkconsole.pkg.js' => 'ca8671ce',
|
||||
'differential.pkg.css' => '5a65a762',
|
||||
|
@ -136,7 +136,7 @@ return array(
|
|||
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
|
||||
'rsrc/css/phui/phui-list.css' => '2edb76cf',
|
||||
'rsrc/css/phui/phui-object-box.css' => '4f916b80',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => 'c177f587',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => 'eb579d6c',
|
||||
'rsrc/css/phui/phui-pinboard-view.css' => '53c5fca0',
|
||||
'rsrc/css/phui/phui-property-list-view.css' => 'dbf53b12',
|
||||
'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b',
|
||||
|
@ -145,7 +145,7 @@ return array(
|
|||
'rsrc/css/phui/phui-tag-view.css' => '295d81c4',
|
||||
'rsrc/css/phui/phui-text.css' => '23e9b4b7',
|
||||
'rsrc/css/phui/phui-workboard-view.css' => 'bf70dd2e',
|
||||
'rsrc/css/phui/phui-workpanel-view.css' => 'ffb31e99',
|
||||
'rsrc/css/phui/phui-workpanel-view.css' => '6f8527f6',
|
||||
'rsrc/css/sprite-actions.css' => '4557baf8',
|
||||
'rsrc/css/sprite-apps-large.css' => 'e37c2ff1',
|
||||
'rsrc/css/sprite-apps-xlarge.css' => 'db66c878',
|
||||
|
@ -743,7 +743,7 @@ return array(
|
|||
'phui-info-panel-css' => '27ea50a1',
|
||||
'phui-list-view-css' => '2edb76cf',
|
||||
'phui-object-box-css' => '4f916b80',
|
||||
'phui-object-item-list-view-css' => 'c177f587',
|
||||
'phui-object-item-list-view-css' => 'eb579d6c',
|
||||
'phui-pinboard-view-css' => '53c5fca0',
|
||||
'phui-property-list-view-css' => 'dbf53b12',
|
||||
'phui-remarkup-preview-css' => '19ad512b',
|
||||
|
@ -752,7 +752,7 @@ return array(
|
|||
'phui-tag-view-css' => '295d81c4',
|
||||
'phui-text-css' => '23e9b4b7',
|
||||
'phui-workboard-view-css' => 'bf70dd2e',
|
||||
'phui-workpanel-view-css' => 'ffb31e99',
|
||||
'phui-workpanel-view-css' => '6f8527f6',
|
||||
'policy-css' => '957ea14c',
|
||||
'policy-edit-css' => '05cca26a',
|
||||
'ponder-comment-table-css' => '6cdccea7',
|
||||
|
|
|
@ -537,9 +537,10 @@
|
|||
|
||||
.drag-ghost {
|
||||
position: relative;
|
||||
border: 1px dashed #aaaaaa;
|
||||
background: #f9f9f9;
|
||||
margin: 4px;
|
||||
border: 1px dashed #fff;
|
||||
background: rgba(255,255,255,.5);
|
||||
margin-bottom: 4px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.drag-dragging {
|
||||
|
|
|
@ -66,6 +66,16 @@
|
|||
}
|
||||
|
||||
.project-column-empty {
|
||||
/* TODO: Use this to put some kind of reasonable null state in the columns? */
|
||||
background: {$red};
|
||||
background: rgba(255,255,255,.4);
|
||||
border-radius: 3px;
|
||||
margin-bottom: 4px;
|
||||
border: 1px dashed #fff;
|
||||
}
|
||||
|
||||
.project-column-empty .drag-ghost {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.project-column-empty.drag-target-list {
|
||||
background: rgba(255,255,255,.7);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue