Summary: Ref T11957. Needs some more polish, but I think everything here is square. Test Plan: Add personal/global items to home, test mobile. Test workboards / colors. Reviewers: epriestley Reviewed By: epriestley Subscribers: 20after4, rfreebern, Korvin Maniphest Tasks: T11957 Differential Revision: https://secure.phabricator.com/D17259
90 lines
1.7 KiB
CSS
90 lines
1.7 KiB
CSS
/**
|
|
* @provides phui-workboard-view-css
|
|
*/
|
|
|
|
.phui-workboard-view {
|
|
width: 100%;
|
|
}
|
|
|
|
.device-phone .phui-workboard-view {
|
|
width: auto;
|
|
}
|
|
|
|
.device-desktop .phui-workboard-view-shadow {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
position: absolute;
|
|
top: 79px;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 16px;
|
|
}
|
|
|
|
.phui-workboard-view-shadow::-webkit-scrollbar {
|
|
height: 8px;
|
|
width: 8px;
|
|
background: rgba(200,200,200,.6);
|
|
}
|
|
|
|
.phui-workboard-view-shadow::-webkit-scrollbar-thumb {
|
|
background: {$lightbluetext};
|
|
}
|
|
|
|
.device-desktop .project-board-wrapper .phui-workboard-view-shadow {
|
|
left: 212px;
|
|
}
|
|
|
|
!print .project-board-wrapper .phui-workboard-view-shadow {
|
|
position: static;
|
|
}
|
|
|
|
!print .project-board-wrapper .aphront-multi-column-column-outer {
|
|
display: block;
|
|
margin: 0 0 18px;
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
.device-desktop .phui-workboard-view .aphront-multi-column-fixed
|
|
.aphront-multi-column-inner {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.device .project-board-wrapper {
|
|
margin: 16px;
|
|
}
|
|
|
|
.device-desktop .phui-workboard-view .aphront-multi-column-view {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.device-desktop .phui-workpanel-view {
|
|
pointer-events: auto;
|
|
cursor: auto;
|
|
}
|
|
|
|
/* Fullscreen */
|
|
|
|
.device-desktop .phui-workboard-fullscreen .phabricator-main-menu {
|
|
display: none;
|
|
}
|
|
|
|
.device-desktop .phui-workboard-fullscreen .phui-profile-menu
|
|
.phui-workboard-view-shadow {
|
|
top: 35px;
|
|
left: 0;
|
|
}
|
|
|
|
.device-desktop .phui-workboard-fullscreen .phui-workpanel-body-content {
|
|
max-height: calc(100vh - 120px);
|
|
}
|
|
|
|
.device-desktop .phui-workboard-fullscreen .phui-profile-menu
|
|
.phabricator-nav-local {
|
|
display: none;
|
|
}
|
|
|
|
.device .phui-workboard-expand-icon {
|
|
display: none;
|
|
}
|