Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/paste/paste.css
12242 views
1
/**
2
* @provides paste-css
3
*/
4
5
.paste-embed {
6
background: {$paste.content};
7
border: 1px solid {$paste.border};
8
border-radius: 3px;
9
}
10
11
.paste-embed .phabricator-source-code-container {
12
border: none;
13
}
14
15
.paste-embed-head {
16
border-bottom: 1px solid {$paste.border};
17
background: {$paste.highlight};
18
padding: 8px 12px;
19
}
20
21
.paste-embed-head a {
22
color: {$darkbluetext};
23
font-weight: bold;
24
}
25
26
.paste-embed-body {
27
overflow-y: auto;
28
}
29
30
.paste-embed-body .phabricator-source-code-container {
31
border-top-right-radius: 0;
32
border-top-left-radius: 0;
33
}
34
35