Summary:
Rolls out a new "Object Page" design with PHUITwoColumnView. This is reasonably polished, but wanted to post it up for you now for feedback before chasing down minor bugs. This implements TwoColumn in the following applications:
- Ponder
- Paste
- Slowvote
- Countdown
- Projects
- Profile
- Passphrase
This helped track down display issues and inconsistencies and make sure the layout was flexible for different pages.
Test Plan:
Test each of the applications on mobile, tablet, and desktop breakpoints.
{F1135705}
{F1135706}
{F1135707}
{F1135708}
{F1135709}
{F1135710}
{F1135711}
Reviewers: epriestley
Reviewed By: epriestley
Subscribers: Korvin
Differential Revision: https://secure.phabricator.com/D15366
28 lines
434 B
CSS
28 lines
434 B
CSS
/**
|
|
* @provides paste-css
|
|
*/
|
|
|
|
.paste-embed {
|
|
background: {$sh-yellowbackground};
|
|
border: 1px solid {$sh-lightyellowborder};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.paste-embed .phabricator-source-code-container {
|
|
border: none;
|
|
}
|
|
|
|
.paste-embed-head {
|
|
border-bottom: 1px solid {$sh-lightyellowborder};
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.paste-embed-head a {
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.paste-embed-body {
|
|
overflow-y: auto;
|
|
}
|