mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
79c6f1c60a
Summary: Ref T8099, Adds a bit more color/contract to Paste. Test Plan: Review a list of Pastes, embedded Pastes, and the main Paste UI. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13083
27 lines
434 B
CSS
27 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;
|
|
}
|