mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
e349c98188
Summary: Ref T988. Fixes T3150. I want to use this element in Diviner, so separate it from Phriction. This makes no changes to the actual display except for fixing {T3150} by adding `overflow: hidden;`. Test Plan: Viewed Phriction documents in mobile and desktop views. Reviewers: chad, btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T988, T3150 Differential Revision: https://secure.phabricator.com/D6101
78 lines
1.1 KiB
CSS
78 lines
1.1 KiB
CSS
/**
|
|
* @provides phriction-document-css
|
|
*/
|
|
|
|
.phriction-header {
|
|
background: #eeeeee;
|
|
border-bottom: 1px solid #dddddd;
|
|
padding: 1em;
|
|
}
|
|
|
|
.phriction-header a.button {
|
|
float: right;
|
|
margin: 0em 0em 0em 1%;
|
|
}
|
|
|
|
.phriction-header h1 {
|
|
margin: .25em 0;
|
|
}
|
|
|
|
.phriction-breadcrumbs {
|
|
font-size: 12px;
|
|
color: #666666;
|
|
}
|
|
|
|
.phriction-document-crumbs a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phriction-children ul {
|
|
margin-left: 30px;
|
|
padding-bottom: 10px;
|
|
list-style: circle;
|
|
color: #999999;
|
|
}
|
|
|
|
.phriction-children-header {
|
|
background: #f7f7f7;
|
|
padding: 10px 0 10px 20px;
|
|
font-weight: bold;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.phriction-document-preview-header {
|
|
color: #666666;
|
|
margin-bottom: 1em;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phriction-document-history-diff {
|
|
padding: 0 2em 2em;
|
|
}
|
|
|
|
.phriction-revert-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phriction-revert-table td {
|
|
text-align: center;
|
|
width: 50%;
|
|
padding: .5em 0;
|
|
}
|
|
|
|
.phriction-history-nav-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phriction-history-nav-table td {
|
|
width: 50%;
|
|
color: #444444;
|
|
}
|
|
|
|
.phriction-history-nav-table td.nav-next {
|
|
text-align: right;
|
|
}
|
|
|
|
.phui-document-content .phriction-link {
|
|
font-weight: bold;
|
|
}
|