mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
42da874691
Summary: Uses cards, fixes bgcolors. Test Plan: View edit history on a few documents. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, chad Differential Revision: https://secure.phabricator.com/D8648
83 lines
1.4 KiB
CSS
83 lines
1.4 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: 4px 0;
|
|
}
|
|
|
|
.phriction-breadcrumbs {
|
|
font-size: 12px;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.phriction-document-crumbs a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phriction-children ul {
|
|
margin-left: 30px;
|
|
padding-bottom: 10px;
|
|
list-style: circle;
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.phriction-children-header {
|
|
background: {$lightgreybackground};
|
|
padding: 8px 0 8px 16px;
|
|
font-weight: bold;
|
|
margin-bottom: 15px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
color: {$bluetext};
|
|
text-shadow: 0 1px 2px #fff;
|
|
}
|
|
|
|
.phriction-document-history-diff .phui-object-item-list-view {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.phriction-revert-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phriction-revert-table td {
|
|
text-align: center;
|
|
width: 50%;
|
|
padding: 8px 0;
|
|
margin: 0 16px;
|
|
background-color: {$lightbluebackground};
|
|
border-top: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.phriction-history-nav-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phriction-history-nav-table td {
|
|
width: 50%;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phriction-history-nav-table td {
|
|
padding: 0 12px 12px;
|
|
background-color: #E5E8EE;
|
|
}
|
|
|
|
.phriction-history-nav-table td.nav-next {
|
|
text-align: right;
|
|
}
|
|
|
|
.phui-document-content .phriction-link {
|
|
font-weight: bold;
|
|
}
|