mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 02:42:40 +01:00
6b74c310eb
Summary: Mostly for testing, I think these need to be re-written to just use PHUIObjectBox, which means re-writing ManiphestView or whatever. Suspect much work. Test Plan: visist a few dashboards Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12764
81 lines
1.6 KiB
CSS
81 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 .phui-info-view {
|
|
margin: 0;
|
|
}
|
|
|
|
.dashboard-panel .phui-object-item-empty .phui-info-view {
|
|
margin: 0;
|
|
}
|
|
|
|
.dashboard-panel .dashboard-box {
|
|
padding: 12px;
|
|
background: #fff;
|
|
border: 1px solid {$lightblueborder};
|
|
}
|