mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6f4ebcb8d9
Summary: Fixes T5308. - Allows you to create a panel directly on a dashboard. - Also, include existing panels with a select instead of a text field. This won't scale as well but should be fine for now, and is way easier to use. Test Plan: See comment. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T5308 Differential Revision: https://secure.phabricator.com/D9501
79 lines
1.6 KiB
CSS
79 lines
1.6 KiB
CSS
/**
|
|
* @provides phabricator-dashboard-css
|
|
*/
|
|
|
|
.dashboard-view {
|
|
margin: 16px;
|
|
}
|
|
|
|
.device-phone .dashboard-view {
|
|
margin: 8px;
|
|
}
|
|
|
|
.dashboard-panel + .dashboard-panel {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
|
.aphront-multi-column-column-outer.half {
|
|
width: 50%;
|
|
}
|
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
|
.aphront-multi-column-column-outer.third {
|
|
width: 33.34%;
|
|
}
|
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
|
.aphront-multi-column-column-outer.thirds {
|
|
width: 66.66%;
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column-outer.grippable
|
|
.aphront-multi-column-column .dashboard-panel {
|
|
cursor: move;
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column .drag-ghost {
|
|
list-style-type: none;
|
|
margin: 16px;
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column
|
|
.dashboard-panel-placeholder {
|
|
display: none;
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column.dashboard-column-empty
|
|
.dashboard-panel-placeholder {
|
|
display: block;
|
|
padding: 24px;
|
|
margin: 16px 16px 0px 16px;
|
|
text-decoration: none;
|
|
border: 1px {$greyborder} dashed;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column.drag-target-list
|
|
.dashboard-panel-placeholder {
|
|
display: none;
|
|
}
|
|
|
|
.aphront-multi-column-fluid
|
|
.aphront-multi-column-column-outer
|
|
.aphront-multi-column-column .aphront-error-view {
|
|
margin: 0;
|
|
}
|
|
|
|
.dashboard-panel .dashboard-box {
|
|
padding: 12px;
|
|
background: #fff;
|
|
border-left: 1px solid {$lightblueborder};
|
|
border-right: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$blueborder};
|
|
}
|