mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
cbd3c0b7ac
Summary: We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well. Instead, provide first-class actions: {F42978} They produce targets which my meaty ham-fists can plausibly hit on mobile, too: {F42979} (We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?) Test Plan: Added UIExamples. Checked desktop/mobile. Reviewers: chad, btrahan, edward Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D5890
113 lines
2.2 KiB
CSS
113 lines
2.2 KiB
CSS
/**
|
|
* @provides phabricator-crumbs-view-css
|
|
*/
|
|
|
|
.phabricator-crumbs-view {
|
|
background-color: #d8dce2;
|
|
height: 31px;
|
|
overflow: hidden;
|
|
vertical-align: top;
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
|
|
/* TODO: Position this over the slider for Differential's file tree view.
|
|
Remove this once that gets sorted out. */
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-crumbs-view,
|
|
.phabricator-crumbs-view a.phabricator-crumb-view,
|
|
.phabricator-crumbs-view a.phabricator-crumbs-action {
|
|
color: #3d3d3d;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
.phabricator-crumbs-action.phabricator-crumbs-action-menu {
|
|
display: none;
|
|
}
|
|
|
|
.device .phabricator-crumbs-action.phabricator-crumbs-action-menu {
|
|
display: inline-block;
|
|
}
|
|
|
|
.device .phabricator-crumbs-action-menu-open {
|
|
background: rgba(0,0,0,.1);
|
|
}
|
|
|
|
.phabricator-crumbs-view + .phabricator-header-shell {
|
|
border-top: none;
|
|
}
|
|
|
|
.phabricator-crumbs-view a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.phabricator-crumb-view {
|
|
display: inline-block;
|
|
height: 31px;
|
|
line-height: 31px;
|
|
}
|
|
|
|
.device-phone .phabricator-crumb-view {
|
|
display: none;
|
|
}
|
|
|
|
.device-phone .phabricator-crumb-view.phabricator-last-crumb,
|
|
.device-phone .phabricator-crumb-view.phabricator-crumb-has-icon {
|
|
display: inline-block;
|
|
}
|
|
|
|
.phabricator-crumb-icon {
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 28px;
|
|
margin: 2px 2px 0 13px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.device-phone .phabricator-crumb-icon {
|
|
margin-left: 7px;
|
|
}
|
|
|
|
.phabricator-crumbs-actions {
|
|
float: right;
|
|
}
|
|
|
|
.phabricator-crumbs-action {
|
|
display: inline-block;
|
|
height: 17px;
|
|
padding: 8px 14px 8px 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.device-phone a.phabricator-crumbs-action {
|
|
padding: 13px 20px 4px 10px;
|
|
border-left: 1px solid #ccc;
|
|
}
|
|
|
|
.device-phone .phabricator-crumbs-action-name {
|
|
display: none;
|
|
}
|
|
|
|
.device-phone a.phabricator-crumbs-action .sprite-icons {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.phabricator-crumbs-action .sprite-icons {
|
|
width: 14px;
|
|
height: 14px;
|
|
left: 4px;
|
|
top: 9px;
|
|
position: absolute;
|
|
}
|
|
|
|
.phabricator-crumb-divider {
|
|
display: inline-block;
|
|
width: 9px;
|
|
height: 31px;
|
|
vertical-align: top;
|
|
margin: 0 9px;
|
|
}
|