2014-05-15 19:12:40 -07:00
|
|
|
/**
|
|
|
|
* @provides phabricator-dashboard-css
|
|
|
|
*/
|
|
|
|
|
2014-05-23 13:44:51 -07:00
|
|
|
.dashboard-view {
|
|
|
|
margin: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .dashboard-view {
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
[Redesign] Convert Dashboard Panels to ObjectBox
Summary: Moves Dashboard Panels to use PHUIObjectBoxView and PHUIHeaderView
Test Plan:
Tested the most common dashboards, Differential, Maniphest, Projects, Feed, Audit. Some edge cases (Legalpad, Macro) still are in progress. Tested laying out a new Dashboard, removing panels, moving panels.
{F406170}
Reviewers: btrahan, epriestley
Reviewed By: epriestley
Subscribers: Korvin, epriestley
Maniphest Tasks: T8099
Differential Revision: https://secure.phabricator.com/D12873
2015-05-17 07:05:14 -07:00
|
|
|
.dashboard-view .phui-object-box {
|
|
|
|
margin: 0 0 16px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-view .phui-object-box .phui-object-box {
|
|
|
|
margin: 0;
|
2014-05-23 13:44:51 -07:00
|
|
|
}
|
|
|
|
|
2014-05-21 12:08:14 -07:00
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
2014-05-15 19:12:40 -07:00
|
|
|
.aphront-multi-column-column-outer.half {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2014-05-21 12:08:14 -07:00
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
2014-05-15 19:12:40 -07:00
|
|
|
.aphront-multi-column-column-outer.third {
|
|
|
|
width: 33.34%;
|
|
|
|
}
|
|
|
|
|
2014-05-21 12:08:14 -07:00
|
|
|
.device-desktop .aphront-multi-column-fluid .aphront-multi-column-2-up
|
2014-05-15 19:12:40 -07:00
|
|
|
.aphront-multi-column-column-outer.thirds {
|
|
|
|
width: 66.66%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-multi-column-fluid
|
|
|
|
.aphront-multi-column-column-outer.grippable
|
[Redesign] Convert Dashboard Panels to ObjectBox
Summary: Moves Dashboard Panels to use PHUIObjectBoxView and PHUIHeaderView
Test Plan:
Tested the most common dashboards, Differential, Maniphest, Projects, Feed, Audit. Some edge cases (Legalpad, Macro) still are in progress. Tested laying out a new Dashboard, removing panels, moving panels.
{F406170}
Reviewers: btrahan, epriestley
Reviewed By: epriestley
Subscribers: Korvin, epriestley
Maniphest Tasks: T8099
Differential Revision: https://secure.phabricator.com/D12873
2015-05-17 07:05:14 -07:00
|
|
|
.aphront-multi-column-column .dashboard-pane {
|
2014-05-15 19:12:40 -07:00
|
|
|
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;
|
2016-04-02 16:02:13 -07:00
|
|
|
padding: 20px;
|
|
|
|
margin: 0 0 12px 0;
|
2014-05-15 19:12:40 -07:00
|
|
|
text-decoration: none;
|
|
|
|
border: 1px {$greyborder} dashed;
|
2014-06-12 13:22:27 -07:00
|
|
|
color: {$greytext};
|
2014-05-15 19:12:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-multi-column-fluid
|
|
|
|
.aphront-multi-column-column.drag-target-list
|
|
|
|
.dashboard-panel-placeholder {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-05-19 14:04:26 -07:00
|
|
|
|
|
|
|
.aphront-multi-column-fluid
|
|
|
|
.aphront-multi-column-column-outer
|
2015-03-01 14:45:56 -08:00
|
|
|
.aphront-multi-column-column .phui-info-view {
|
2014-05-19 14:04:26 -07:00
|
|
|
margin: 0;
|
|
|
|
}
|
2016-04-02 16:02:13 -07:00
|
|
|
|
|
|
|
.dashboard-preview-box {
|
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: rgba(255,255,255,.33);
|
|
|
|
}
|