Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/phui-remarkup-preview.css
12241 views
1
/**
2
* @provides phui-remarkup-preview-css
3
*/
4
5
.phui-remarkup-preview .phui-object-box {
6
padding: 0;
7
}
8
9
.phui-preview-header {
10
font-size: {$smallerfontsize};
11
font-weight: bold;
12
color: {$bluetext};
13
text-transform: uppercase;
14
padding: 8px;
15
background-color: {$lightgreybackground};
16
border-bottom: 1px solid {$thinblueborder};
17
display: block;
18
border-top-left-radius: 3px;
19
border-top-right-radius: 3px;
20
}
21
22
.phui-preview-body {
23
padding: 16px;
24
}
25
26
.phui-document-inner .phui-preview-header {
27
padding: 16px 0 0 16px;
28
}
29
30
.device-phone .phui-panel-preview,
31
.device-phone .phui-remarkup-preview {
32
display: none;
33
}
34
35
.phui-preview-loading-text {
36
color: {$lightgreytext};
37
}
38
39
/**
40
* TODO: Classes implementing PhabricatorMarkupInterface are of differing
41
* mindsets about whether output should be wrapped in a `phabricator-remarkup`
42
* <div /> or not. It should probably move to the Engine in all cases, but
43
* until we do that get rid of the extra spacing generated by the inner div.
44
*/
45
body .phui-remarkup-preview .phabricator-remarkup .phabricator-remarkup {
46
padding: 0;
47
margin: 0;
48
}
49
50