Summary: This adds setActionList to PropertyListView and properly places it in an archaic HTML 1.0 table. Test Plan: test layouts with actions really tall or properties really tall. Always see a full height border. Reviewers: epriestley, btrahan CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D7239
89 lines
1.8 KiB
CSS
89 lines
1.8 KiB
CSS
/**
|
|
* @provides phabricator-action-list-view-css
|
|
*/
|
|
|
|
.device-desktop .phabricator-action-list-view {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.device .phabricator-action-list-view {
|
|
padding: 4px 0;
|
|
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;
|
|
padding-bottom: 4px;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.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: 2px 4px 2px 28px;
|
|
line-height: 18px;
|
|
display: block;
|
|
text-decoration: none;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phabricator-action-view-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 9px;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view:hover .phabricator-action-view-item {
|
|
text-decoration: none;
|
|
background-color: {$blue};
|
|
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};
|
|
}
|