mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d3cd9115f9
Summary: Fixes T6052. Allow installs to link to legal documents, etc., in the page footer. Test Plan: - Configured a footer. - Viewed workboards (no footer). - Viewed Conpherence (no apparent disruption, I think everything z-indexes over the footer). - Viewed stuff on mobile (seems OK). - Viewed login page (saw footer). {F201718} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T6052 Differential Revision: https://secure.phabricator.com/D10466
110 lines
2 KiB
CSS
110 lines
2 KiB
CSS
/**
|
|
* @provides phabricator-standard-page-view
|
|
*/
|
|
|
|
.phabricator-anchor-view,
|
|
.phabricator-anchor-navigation-marker {
|
|
position: absolute;
|
|
margin-top: -15px;
|
|
}
|
|
|
|
.phabricator-chromeless-page .phabricator-standard-page {
|
|
background: transparent;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.phabricator-standard-page-footer {
|
|
text-align: right;
|
|
margin: 0 16px;
|
|
padding: 8px 0;
|
|
border-top: 1px solid {$lightgreyborder};
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.keyboard-shortcut-help td,
|
|
.keyboard-shortcut-help th {
|
|
padding: 8px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.keyboard-shortcut-help th {
|
|
white-space: nowrap;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.keyboard-shortcut-help kbd {
|
|
background: #222222;
|
|
padding: 6px;
|
|
color: #ffffff;
|
|
font-weight: bold;
|
|
border: 1px solid #555555;
|
|
}
|
|
|
|
.keyboard-focus-focus-reticle {
|
|
background: #ffffd3;
|
|
position: absolute;
|
|
border: 1px solid #999900;
|
|
}
|
|
|
|
.workflow-header {
|
|
background: #efefef;
|
|
padding: 6px 2em;
|
|
text-align: right;
|
|
margin-bottom: 6px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
}
|
|
|
|
.workflow-header button {
|
|
float: right;
|
|
}
|
|
|
|
a.handle-status-closed {
|
|
text-decoration: line-through;
|
|
color: #676767;
|
|
}
|
|
|
|
a.handle-status-closed:hover {
|
|
text-decoration: line-through;
|
|
color: #19558D;
|
|
}
|
|
|
|
a.handle-disabled,
|
|
a.handle-status-away,
|
|
a.handle-status-sporadic {
|
|
padding-left: 11px;
|
|
background-repeat: no-repeat;
|
|
background-position: -4px center;
|
|
}
|
|
|
|
a.handle-status-away {
|
|
background-image: url(/rsrc/image/icon/fatcow/bullet_red.png);
|
|
}
|
|
|
|
a.handle-status-sporadic {
|
|
background-image: url(/rsrc/image/icon/fatcow/bullet_orange.png);
|
|
}
|
|
|
|
a.handle-disabled {
|
|
background-image: url(/rsrc/image/icon/fatcow/bullet_black.png);
|
|
}
|
|
|
|
.aphront-developer-error-callout {
|
|
position: relative;
|
|
padding: 2em;
|
|
background: #aa0000;
|
|
color: white;
|
|
text-align: center;
|
|
font-size: 11px;
|
|
font-family: "Verdana";
|
|
}
|
|
|
|
.setup-warning-callout {
|
|
position: relative;
|
|
padding: 8px 16px;
|
|
background: {$lightyellow};
|
|
}
|
|
|
|
.phui-handle .phui-icon-view {
|
|
display: inline-block;
|
|
margin: 2px 2px -2px 0;
|
|
}
|