mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
02cd235b3d
Summary: Makes this more consistent. Also clean up spacing. Ref T9414 Test Plan: Archive/Activate Paste, Edit Paste Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9414 Differential Revision: https://secure.phabricator.com/D14724
35 lines
545 B
CSS
35 lines
545 B
CSS
/**
|
|
* @provides paste-css
|
|
*/
|
|
|
|
.container-of-paste {
|
|
margin: 16px 16px 0 16px;
|
|
}
|
|
|
|
.device .container-of-paste {
|
|
margin: 8px 8px 0 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;
|
|
}
|