mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
59a35af395
Summary: Consolidate colors / spacing. Test Plan: Test embedding a paste, a list of pastes, and a PasteView for new colors, space. {F321622} {F321623} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11896
23 lines
374 B
CSS
23 lines
374 B
CSS
/**
|
|
* @provides paste-css
|
|
*/
|
|
|
|
.paste-embed {
|
|
background: {$lightbluebackground};
|
|
border: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$blueborder};
|
|
}
|
|
|
|
.paste-embed-head {
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.paste-embed-head a {
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.paste-embed-body {
|
|
overflow-y: auto;
|
|
}
|