1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/webroot/rsrc/css/application/paste/paste.css
Chad Little f899762364 Better Paste layout on mobile
Summary: Builds a container of paste, makes it smaller on mobile.

Test Plan: View on desktop, tablet, mobile.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14122
2015-09-17 08:22:40 -07:00

35 lines
523 B
CSS

/**
* @provides paste-css
*/
.container-of-paste {
margin: 16px;
}
.device .container-of-paste {
margin: 8px;
}
.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;
}