mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ecb0ab4847
Summary: ...except that pesky help tab which remains. Pertinent bits here... - move "History" into button "View History" that is grey and next to "Edit Page" - for history page, add breadcrumb similar to the one on "diff" page. This unifies the experiencing on history <=> diffs as well as gives the user a link back to the document, which was a tab on the History page before this diff. Thoughts for next time... - I'd like to further unify the breadcrumbs between "View" and "History / Diff". - The "Document Index" is pretty sweet and feels a bit buried. I wonder if unifying breadcrumbs is the key here? Test Plan: clicked around phriction. viewed a document, viewed its history. verified links in breadcrumbs were correct Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Maniphest Tasks: T631 Differential Revision: 1221
95 lines
1.4 KiB
CSS
95 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: .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;
|
|
}
|
|
|
|
|
|
.phriction-document-history-diff {
|
|
margin: 0 0 0 2em;
|
|
padding-bottom: 2em;
|
|
max-width: 1162px;
|
|
}
|
|
|
|
.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;
|
|
}
|