mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-15 09:11:07 +01:00
d7951bec56
Summary: Abstract out the multi-column code from workboards and have it be available separately. I feel like there will be some benefit here especially for custom developers in how they present infromation (like releeph). It also scales back to tablet and mobile fairly well, so they get those things for free. Test Plan: Tested mobile, tablet and chrome layouts. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5529
50 lines
1.2 KiB
CSS
50 lines
1.2 KiB
CSS
/**
|
|
* @provides phabricator-workpanel-view-css
|
|
*/
|
|
|
|
.phabricator-workpanel-view .phabricator-workpanel-header {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
border: 1px solid #b3b5b6;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
padding: 8px 10px;
|
|
background: #f0f0f0 url(/rsrc/image/texture/panel-header-gradient.png) repeat-x;
|
|
text-shadow: 0 1px 1px #fff;
|
|
}
|
|
|
|
.phabricator-workpanel-view .phabricator-workpanel-header-action {
|
|
float: right;
|
|
width: 24px;
|
|
border-left: 1px solid #b3b5b6;
|
|
}
|
|
|
|
.phabricator-workpanel-view .phabricator-workpanel-body {
|
|
background: #c4cde0;
|
|
padding: 5px 5px 1px 5px;
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
box-shadow: inset 0 0px 5px rgba(0,0,0,.4);
|
|
}
|
|
|
|
.phabricator-workpanel-view .phabricator-workpanel-footer-action a {
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.device-desktop .phabricator-workpanel-view .phabricator-workpanel-footer-action:hover {
|
|
background-color: rgba(100,100,100,.1);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phabricator-workpanel-view .phabricator-menu-item-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.phabricator-workpanel-view .phabricator-menu-item-name {
|
|
padding-left: 5px;
|
|
display: inline-block;
|
|
}
|