mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
490a6fe8b1
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
97 lines
1.8 KiB
CSS
97 lines
1.8 KiB
CSS
/**
|
|
* @provides phabricator-feed-css
|
|
*/
|
|
|
|
.phabricator-feed-frame {
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
.phabricator-public-feed-frame {
|
|
margin: 10px;
|
|
max-width: 600px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.phabricator-feed-frame .phui-action-header-title {
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.device-desktop .phabricator-feed-frame {
|
|
max-width: 600px;
|
|
margin: 16px;
|
|
}
|
|
|
|
.phabricator-feed-frame .phui-action-header {
|
|
padding: 0;
|
|
}
|
|
|
|
.phabricator-feed-story-date-separator {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.phabricator-feed-newer-link {
|
|
float: left;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-feed-older-link {
|
|
float: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-public-feed-frame .phui-feed-story-foot {
|
|
background: none;
|
|
}
|
|
|
|
.phabricator-public-feed-frame .phui-feed-story {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.phabricator-public-feed-frame .phui-feed-wrap {
|
|
border: none;
|
|
}
|
|
|
|
/* - Dashboards ------------------------------------------------------------ */
|
|
|
|
.dashboard-pane div.phabricator-feed-frame {
|
|
margin: 0;
|
|
max-width: none;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-action-header {
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-action-header-title {
|
|
font-size: 13px;
|
|
margin-left: 12px;
|
|
padding: 8px 0;
|
|
margin-bottom: 0;
|
|
color: {$bluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-feed-story {
|
|
border: none;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-feed-story-head {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-feed-story-body {
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame .phui-feed-story-foot {
|
|
background: #fff;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.dashboard-pane .phabricator-feed-frame
|
|
.phabricator-feed-story-date-separator {
|
|
margin-top: 0;
|
|
}
|