Summary: The adds the ability to set 'properties' such as state, privacy, due date to the header of objects. Test Plan: Implemented in Paste, Pholio. Tested various states. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D7016
120 lines
2.5 KiB
CSS
120 lines
2.5 KiB
CSS
/**
|
|
* @provides phabricator-action-list-view-css
|
|
*/
|
|
|
|
.phabricator-action-list-view {
|
|
background: #ffffff;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-list-view {
|
|
border: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$blueborder};
|
|
padding: 4px 0;
|
|
float: right;
|
|
margin-top: 0px;
|
|
margin-right: 1%;
|
|
width: 20%;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.device-desktop .phui-header-shell + .phabricator-action-list-view {
|
|
margin-top: -33px;
|
|
}
|
|
|
|
.device-desktop .phui-header-shell.phui-header-tall + .phabricator-action-list-view {
|
|
margin-top: -55px;
|
|
}
|
|
|
|
.device-desktop .phui-header-shell.phui-header-has-image +
|
|
.phabricator-action-list-view {
|
|
margin-top: -53px;
|
|
}
|
|
|
|
.device .phui-header-shell + .phabricator-action-list-view {
|
|
margin-top: -1px;
|
|
}
|
|
|
|
.device .phabricator-action-list-view {
|
|
border-top: 1px solid #dcdcdc;
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.device .phabricator-action-list-view {
|
|
display: none;
|
|
}
|
|
|
|
.device .phabricator-action-list-view.phabricator-action-list-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.device .phabricator-action-view button.phabricator-action-view-item,
|
|
.device .phabricator-action-view-item {
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.phabricator-action-view {
|
|
padding: 1px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item {
|
|
border: none;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
outline: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
width: 100%;
|
|
text-align: left;
|
|
text-shadow: none;
|
|
|
|
border-radius: 0;
|
|
color: #18559D;
|
|
font: inherit;
|
|
display: inline;
|
|
min-width: 0;
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item,
|
|
.phabricator-action-view-item {
|
|
padding: 1px 0 1px 34px;
|
|
line-height: 20px;
|
|
display: block;
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phabricator-action-view-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 13px;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view:hover .phabricator-action-view-item {
|
|
text-decoration: none;
|
|
background-color: #3875d7;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.phabricator-action-view-disabled .phabricator-action-view-item,
|
|
.phabricator-action-view-disabled button.phabricator-action-view-item {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.phabricator-action-view button[disabled] {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-disabled:hover
|
|
.phabricator-action-view-item,
|
|
.device-desktop .phabricator-action-view-disabled:hover
|
|
button.phabricator-action-view-item {
|
|
background-color: #dfdfdf;
|
|
color: {$lightgreytext};
|
|
}
|