mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
3d407732d6
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
101 lines
1.9 KiB
CSS
101 lines
1.9 KiB
CSS
/**
|
|
* @provides phabricator-application-launch-view-css
|
|
*/
|
|
|
|
|
|
/* - Application List ----------------------------------------------------------
|
|
|
|
Spacing container for the list of large application buttons.
|
|
|
|
*/
|
|
|
|
|
|
.application-tile-group {
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
/* - Application Launch Button -------------------------------------------------
|
|
|
|
Spacing container for the list of large application buttons.
|
|
|
|
*/
|
|
|
|
a.phabricator-application-launch-container,
|
|
div.phabricator-application-launch-container {
|
|
display: block;
|
|
float: left;
|
|
overflow: hidden;
|
|
position: relative;
|
|
text-decoration: none;
|
|
width: 100%;
|
|
height: 44px;
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.device-phone div.phabricator-application-launch-container {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-application-launch-icon {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
top: 12px;
|
|
left: 6px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
vertical-align: bottom;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.device-desktop a.phabricator-application-launch-container:hover {
|
|
background-color: rgba(0,0,0,.05);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.phabricator-application-launch-name {
|
|
display: block;
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
font-size: 13px;
|
|
margin: 6px 0 2px 38px;
|
|
}
|
|
|
|
.device-desktop a.phabricator-application-launch-container:hover
|
|
.phui-icon-view {
|
|
color: {$sky};
|
|
}
|
|
|
|
.phabricator-application-launch-description {
|
|
color: {$bluetext};
|
|
font-size: 11px;
|
|
margin-left: 38px;
|
|
text-overflow: ellipsis;
|
|
width: 150px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
display: inline-block;
|
|
}
|
|
|
|
.phabricator-application-launch-attention {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.phabricator-application-attention-count {
|
|
color: {$fire};
|
|
}
|
|
|
|
a.phabricator-application-launch-phone-only {
|
|
display: none;
|
|
}
|
|
|
|
.device-phone a.phabricator-application-launch-phone-only {
|
|
display: block;
|
|
}
|