2011-01-25 20:31:40 +01:00
|
|
|
/**
|
|
|
|
* @provides aphront-table-view-css
|
|
|
|
*/
|
|
|
|
|
2013-01-22 23:46:40 +01:00
|
|
|
.device-phone .aphront-table-wrap,
|
|
|
|
.device-tablet .aphront-table-wrap {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view {
|
2013-01-11 20:24:35 +01:00
|
|
|
width: 100%;
|
2011-01-25 20:31:40 +01:00
|
|
|
border-collapse: collapse;
|
2013-01-11 20:24:35 +01:00
|
|
|
background: #fff;
|
2014-01-07 20:57:37 +01:00
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
border-bottom: 1px solid {$blueborder};
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
[Redesign] Put all ApplicationSearch results in an ObjectBox
Summary:
Ref T8099. In most cases we return either an ObjectList or AphrontTable, and can pretty up the UI in ApplicationSearch. There are a few edge cases, like PeopleUserLog, that can be cleanup up individually in the future, but look fine for now.
Also added 'setNotice' for AphrontTable for a few cases where we want to convey addtional information.
TODO: Seems we always pass a Pager Object, which tries to get displayed, I'll redesign that interaction in the future, probably by passing the Pager to the ObjectBox
Test Plan: Went throught most/all ApplicationSearch panels I could find, even edge cases look better.
Reviewers: btrahan, epriestley
Reviewed By: epriestley
Subscribers: Korvin, epriestley
Maniphest Tasks: T8099
Differential Revision: https://secure.phabricator.com/D12989
2015-05-24 18:13:58 +02:00
|
|
|
.aphront-table-view td.aphront-table-notice {
|
|
|
|
padding: 12px 16px;
|
|
|
|
font-size: 13px;
|
|
|
|
color: {$blue};
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view tr.alt {
|
2014-01-07 20:57:37 +01:00
|
|
|
background: {$lightgreybackground};
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view th {
|
|
|
|
font-weight: bold;
|
2014-01-07 20:57:37 +01:00
|
|
|
font-size: 13px;
|
2011-01-25 20:31:40 +01:00
|
|
|
white-space: nowrap;
|
2014-01-07 20:57:37 +01:00
|
|
|
color: {$bluetext};
|
2013-01-11 20:24:35 +01:00
|
|
|
text-shadow: 0 1px 0 white;
|
|
|
|
font-weight: bold;
|
2014-01-07 20:57:37 +01:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
|
|
background-color: {$lightbluebackground};
|
2013-01-11 20:24:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
th.aphront-table-view-sortable-selected {
|
2014-01-07 20:57:37 +01:00
|
|
|
background-color: {$greybackground};
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
2012-03-20 03:48:22 +01:00
|
|
|
.aphront-table-view th a,
|
|
|
|
.aphront-table-view th a:hover,
|
|
|
|
.aphront-table-view th a:link {
|
2014-01-07 20:57:37 +01:00
|
|
|
color: {$bluetext};
|
2013-01-11 20:24:35 +01:00
|
|
|
text-shadow: 0 1px 0 white;
|
2012-03-20 03:48:22 +01:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view th a:hover {
|
2013-01-11 20:24:35 +01:00
|
|
|
text-decoration: underline;
|
2014-01-07 20:57:37 +01:00
|
|
|
color: {$darkbluetext};
|
2012-03-20 03:48:22 +01:00
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view td.header {
|
2013-01-11 20:24:35 +01:00
|
|
|
padding: 4px 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: right;
|
2014-01-07 20:57:37 +01:00
|
|
|
color: {$bluetext};
|
2013-01-11 20:24:35 +01:00
|
|
|
font-weight: bold;
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td {
|
2013-01-11 20:24:35 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-down-sort {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 5px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
vertical-align: top;
|
2014-01-07 20:57:37 +01:00
|
|
|
border-top: 4px solid {$bluetext};
|
2013-01-11 20:24:35 +01:00
|
|
|
border-right: 4px solid transparent;
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-up-sort {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 5px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
vertical-align: top;
|
2014-01-07 20:57:37 +01:00
|
|
|
border-bottom: 4px solid {$bluetext};
|
2013-01-11 20:24:35 +01:00
|
|
|
border-right: 4px solid transparent;
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
content: "";
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
2012-12-18 00:16:44 +01:00
|
|
|
/* - 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 {
|
2015-03-26 21:16:09 +01:00
|
|
|
padding: 10px 10px;
|
2015-04-08 17:38:15 +02:00
|
|
|
font-size: 13px;
|
2015-03-26 21:16:09 +01:00
|
|
|
}
|
|
|
|
|
2012-12-18 00:16:44 +01:00
|
|
|
.aphront-table-view td {
|
2015-03-26 21:16:09 +01:00
|
|
|
padding: 8px 10px;
|
2015-04-08 17:38:15 +02:00
|
|
|
font-size: 12px;
|
2015-03-26 21:16:09 +01:00
|
|
|
}
|
|
|
|
|
2012-12-18 00:16:44 +01:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2012-03-20 03:48:22 +01:00
|
|
|
.aphront-table-view td.sorted-column {
|
2014-01-07 20:57:37 +01:00
|
|
|
background: {$lightbluebackground};
|
2012-03-20 03:48:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view tr.alt td.sorted-column {
|
2014-01-07 20:57:37 +01:00
|
|
|
background: {$greybackground};
|
2012-03-20 03:48:22 +01:00
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view td.action {
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td.larger {
|
2013-01-11 20:24:35 +01:00
|
|
|
font-size: 14px;
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td.pri {
|
2013-01-11 20:24:35 +01:00
|
|
|
font-weight: bold;
|
2014-03-12 19:39:43 +01:00
|
|
|
color: {$darkbluetext};
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td.wide {
|
2013-01-11 20:24:35 +01:00
|
|
|
white-space: normal;
|
|
|
|
width: 100%;
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 21:16:09 +01:00
|
|
|
.aphront-table-view th.right,
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view td.right {
|
2013-01-11 20:24:35 +01:00
|
|
|
text-align: right;
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td.mono {
|
2013-01-11 20:24:35 +01:00
|
|
|
font-family: "Monaco", monospace;
|
|
|
|
font-size: 11px;
|
2011-01-25 20:31:40 +01:00
|
|
|
}
|
|
|
|
|
2011-02-02 22:48:52 +01:00
|
|
|
.aphront-table-view td.n {
|
2013-01-11 20:24:35 +01:00
|
|
|
font-family: "Monaco", monospace;
|
|
|
|
font-size: 11px;
|
|
|
|
text-align: right;
|
2011-02-02 22:48:52 +01:00
|
|
|
}
|
|
|
|
|
2012-08-02 22:58:54 +02:00
|
|
|
.aphront-table-view td.wrap {
|
2011-02-03 07:38:42 +01:00
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2013-07-23 21:30:58 +02:00
|
|
|
.aphront-table-view td.prewrap {
|
|
|
|
font-family: "Monaco", monospace;
|
|
|
|
font-size: 11px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2012-08-02 22:58:54 +02:00
|
|
|
.aphront-table-view td.narrow {
|
2014-01-07 20:57:37 +01:00
|
|
|
width: 1px;
|
2012-08-02 22:58:54 +02:00
|
|
|
}
|
|
|
|
|
2014-06-13 18:28:00 +02:00
|
|
|
.aphront-table-view td.icon, .aphront-table-view th.icon {
|
|
|
|
width: 1px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2011-07-31 17:38:06 +02:00
|
|
|
div.single-display-line-bounds {
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.single-display-line-content {
|
|
|
|
white-space: pre;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2014-01-20 20:52:49 +01:00
|
|
|
.device-phone span.single-display-line-content {
|
|
|
|
white-space: nowrap;
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
2011-07-30 01:01:59 +02:00
|
|
|
.aphront-table-view tr.highlighted {
|
[Redesign] Add Table, Collapse support to ObjectBox
Summary: Converts most all tables to be directly set via `setTable` to an ObjectBox. I think this path is more flexible design wise, as we can change the box based on children, and not just CSS. We also already do this with PropertyList, Forms, ObjectList, and Header. `setCollapsed` is added to ObjectBox to all children objects to bleed to the edges (like diffs).
Test Plan: I did a grep of `appendChild($table)` as well as searches for `PHUIObjectBoxView`, also with manual opening of hundreds of files. I'm sure I missed 5-8 places. If you just appendChild($table) nothing breaks, it just looks a little funny.
Reviewers: epriestley, btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12955
2015-05-20 21:43:34 +02:00
|
|
|
background: #fdf9e4;
|
2011-07-30 01:01:59 +02:00
|
|
|
}
|
|
|
|
|
2011-03-31 09:55:18 +02:00
|
|
|
.aphront-table-view tr.alt-highlighted {
|
2015-05-20 08:14:22 +02:00
|
|
|
background: {$sh-yellowbackground};
|
2011-03-13 01:17:34 +01:00
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
.aphront-table-view tr.no-data td {
|
2014-01-07 20:57:37 +01:00
|
|
|
padding: 12px;
|
2011-01-25 20:31:40 +01:00
|
|
|
text-align: center;
|
2014-01-07 20:57:37 +01:00
|
|
|
color: {$lightgreytext};
|
2011-01-25 20:31:40 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
2011-05-03 19:45:45 +02:00
|
|
|
|
|
|
|
.aphront-table-view td.thumb img {
|
|
|
|
max-width: 64px;
|
|
|
|
max-height: 64px;
|
|
|
|
}
|
2011-07-31 17:38:06 +02:00
|
|
|
|
2012-03-24 01:11:15 +01:00
|
|
|
.aphront-table-view td.threads {
|
|
|
|
font-family: monospace;
|
|
|
|
white-space: pre;
|
2014-05-13 04:57:12 +02:00
|
|
|
padding: 0 0 0 8px;
|
2012-03-24 01:11:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.aphront-table-view td.threads canvas {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2012-04-10 18:46:04 +02:00
|
|
|
.aphront-table-view td.radio {
|
|
|
|
text-align: center;
|
|
|
|
padding: 2px 4px 0px;
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:39:43 +01:00
|
|
|
.aphront-table-view th.center,
|
|
|
|
.aphront-table-view td.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device .aphront-table-view td + td.center,
|
|
|
|
.device .aphront-table-view th + th.center {
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
|
2012-12-18 00:16:44 +01:00
|
|
|
.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;
|
2013-01-11 20:24:35 +01:00
|
|
|
padding: 6px 8px;
|
2012-12-18 00:16:44 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-01-07 20:57:37 +01:00
|
|
|
|
|
|
|
.phui-object-box .aphront-table-view {
|
|
|
|
border: none;
|
|
|
|
}
|