mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-05 12:21:02 +01:00
4a3ebd9a68
Summary: Preview Phriction documents as they are edited, similar to how Differential/Maniphest work. Test Plan: Mashed my keyboard while editing a Phriction document. Reviewed By: hsb Reviewers: hsb, codeblock, jungejason, tuomaspelkonen, aran CC: aran, hsb Differential Revision: 684
64 lines
919 B
CSS
64 lines
919 B
CSS
/**
|
|
* @provides phriction-document-css
|
|
*/
|
|
|
|
.phriction-header {
|
|
background: #eeeeee;
|
|
border-bottom: 1px solid #dddddd;
|
|
padding: 1em;
|
|
}
|
|
|
|
.phriction-header a.button {
|
|
float: right;
|
|
}
|
|
|
|
.phriction-header h1 {
|
|
margin: .25em 0;
|
|
}
|
|
|
|
.phriction-content {
|
|
max-width: 960px;
|
|
margin: 1em;
|
|
}
|
|
|
|
.phriction-byline {
|
|
padding: .25em 0 1em;
|
|
color: #444444;
|
|
}
|
|
|
|
.phriction-content .phriction-link {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phriction-breadcrumbs {
|
|
font-size: 12px;
|
|
color: #666666;
|
|
}
|
|
|
|
.phriction-document-crumbs a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phriction-children {
|
|
padding: 1em 2em;
|
|
background: #eeeeee;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
|
|
.phriction-children ul {
|
|
margin-left: 2.5em;
|
|
list-style: circle;
|
|
color: #999999;
|
|
}
|
|
|
|
.phriction-children-header {
|
|
padding: 0 0 .5em 0;
|
|
margin: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phriction-document-preview-header {
|
|
color: #666666;
|
|
margin-bottom: 1em;
|
|
font-size: 11px;
|
|
}
|