mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-30 10:42:41 +01:00
edd5c208a6
Summary: This is probably not the most useful app to have work on mobile, but get the log view to do something fairly sensible. Test Plan: Looked at all Drydock views in mobile. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2015 Differential Revision: https://secure.phabricator.com/D4224
226 lines
3.9 KiB
CSS
226 lines
3.9 KiB
CSS
/**
|
|
* @provides aphront-table-view-css
|
|
*/
|
|
|
|
.aphront-table-view {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: #fdfdfd;
|
|
border: 1px solid #003366;
|
|
}
|
|
|
|
.aphront-table-view tr.alt {
|
|
background: #efefef;
|
|
}
|
|
|
|
.aphront-table-view th {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
background: #003366;
|
|
color: white;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aphront-table-view th a,
|
|
.aphront-table-view th a:hover,
|
|
.aphront-table-view th a:link {
|
|
padding: 4px 8px;
|
|
color: white;
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.aphront-table-view th a:hover {
|
|
background: #3366aa;
|
|
}
|
|
|
|
.aphront-table-view td.header {
|
|
padding: 4px 8px;
|
|
background: #3b5998;
|
|
color: white;
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-table-view td {
|
|
font-size: 11px;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* - Padding -------------------------------------------------------------------
|
|
|
|
On desktops, we have more horizontal space and use it to space columns out.
|
|
|
|
On devices, we make each row slightly taller to create a larger hit target
|
|
for links.
|
|
|
|
*/
|
|
|
|
.aphront-table-view th {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.aphront-table-view td {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.device-tablet .aphront-table-view td,
|
|
.device-phone .aphront-table-view td {
|
|
padding: 6px;
|
|
}
|
|
|
|
.device-tablet .aphront-table-view td + td,
|
|
.device-phone .aphront-table-view td + td {
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.device-tablet .aphront-table-view th,
|
|
.device-phone .aphront-table-view th {
|
|
padding: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.device-tablet .aphront-table-view th + th,
|
|
.device-phone .aphront-table-view th + th {
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.aphront-table-view td.sorted-column {
|
|
background: #f6f6fd;
|
|
}
|
|
|
|
.aphront-table-view tr.alt td.sorted-column {
|
|
background: #e0e0ef;
|
|
}
|
|
|
|
.aphront-table-view td.action {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.aphront-table-view td.larger {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.aphront-table-view td.pri {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.aphront-table-view td.wide {
|
|
white-space: normal;
|
|
width: 100%;
|
|
}
|
|
|
|
.aphront-table-view td.right {
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-table-view td.mono {
|
|
font-family: "Monaco", monospace;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.aphront-table-view td.n {
|
|
font-family: "Monaco", monospace;
|
|
font-size: 10px;
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-table-view td.wrap {
|
|
white-space: normal;
|
|
}
|
|
|
|
.aphront-table-view td.narrow {
|
|
width: 1px;
|
|
}
|
|
|
|
div.single-display-line-bounds {
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
span.single-display-line-content {
|
|
white-space: pre;
|
|
position: absolute;
|
|
}
|
|
|
|
.aphront-table-view tr.highlighted {
|
|
background: #ffff99;
|
|
}
|
|
|
|
.aphront-table-view tr.alt-highlighted {
|
|
background: #f3f399;
|
|
}
|
|
|
|
|
|
.aphront-table-view tr.no-data td {
|
|
padding: 1em;
|
|
text-align: center;
|
|
color: #888888;
|
|
font-style: italic;
|
|
}
|
|
|
|
.aphront-table-view td.thumb img {
|
|
max-width: 64px;
|
|
max-height: 64px;
|
|
}
|
|
|
|
.aphront-table-view td.threads {
|
|
font-family: monospace;
|
|
white-space: pre;
|
|
padding: 0;
|
|
}
|
|
|
|
.aphront-table-view td.threads canvas {
|
|
display: block;
|
|
}
|
|
|
|
.aphront-table-view td.radio {
|
|
text-align: center;
|
|
padding: 2px 4px 0px;
|
|
}
|
|
|
|
.aphront-table-view th.aphront-table-view-sortable {
|
|
padding: 0;
|
|
}
|
|
|
|
.aphront-table-view-sort-glyph {
|
|
float: right;
|
|
padding-left: 8px;
|
|
color: #6677bb;
|
|
}
|
|
|
|
th a:hover .aphront-table-view-sort-glyph {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.aphront-table-view-sortable-selected .aphront-table-view-sort-glyph {
|
|
display: block;
|
|
color: white;
|
|
}
|
|
|
|
.device-desktop .aphront-table-view-device {
|
|
display: none;
|
|
}
|
|
|
|
.device-tablet .aphront-table-view-nodevice,
|
|
.device-phone .aphront-table-view-nodevice {
|
|
display: none;
|
|
}
|
|
|
|
.aphront-table-view-device-ready {
|
|
width: 99%;
|
|
margin: 8px auto;
|
|
}
|
|
|
|
.aphront-table-view td.link {
|
|
padding: 0;
|
|
}
|
|
|
|
.aphront-table-view td.link a {
|
|
display: block;
|
|
padding: 6px;
|
|
font-weight: bold;
|
|
}
|