Summary: In some cases, we want an action item (like "Subscribe") to effect a write that needs a CSRF check. Allow such items to render as forms so they gracefully degrade if JS is FUBAR'd. D3499 has a specific example. Test Plan: Loaded new UI example page, clicked all the actions. Reviewers: btrahan, vrana, avivey Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D3596
81 lines
1.6 KiB
CSS
81 lines
1.6 KiB
CSS
/**
|
|
* @provides phabricator-action-list-view-css
|
|
*/
|
|
|
|
.phabricator-action-list-view {
|
|
background: #ffffff;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-list-view {
|
|
border: 1px solid #dcdcdc;
|
|
padding: .5em 0;
|
|
|
|
float: right;
|
|
margin-top: -30px;
|
|
margin-right: 1%;
|
|
width: 20%;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
|
|
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
|
|
}
|
|
|
|
.device-tablet .phabricator-action-list-view,
|
|
.device-phone .phabricator-action-list-view {
|
|
background: #f3f3f3;
|
|
border-top: 1px solid #dcdcdc;
|
|
padding: .5em 0;
|
|
}
|
|
|
|
.phabricator-action-view {
|
|
padding: 2px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item {
|
|
border: none;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
outline: 0;
|
|
box-shadow: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
color: #3b5998;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item,
|
|
.phabricator-action-view-item {
|
|
line-height: 20px;
|
|
padding-left: 34px;
|
|
display: block;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.phabricator-action-view-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 12px;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-item:hover {
|
|
background-color: #3875d7;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.phabricator-action-view-disabled .phabricator-action-view-item,
|
|
.phabricator-action-view-disabled button.phabricator-action-view-item {
|
|
color: #888888;
|
|
}
|
|
|
|
.phabricator-action-view-disabled .phabricator-action-view-item:hover,
|
|
.phabricator-action-view-disabled button.phabricator-action-view-item:hover {
|
|
background-color: #dfdfdf;
|
|
color: #888888;
|
|
}
|