mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
b58e18bad7
Summary: These just cut off currently if the menu item name is too wide (like mobile). Add some ellipsis Test Plan: Check long name on mobile action list menu Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17319
166 lines
3.8 KiB
CSS
166 lines
3.8 KiB
CSS
/**
|
|
* @provides phabricator-action-list-view-css
|
|
*/
|
|
|
|
.device .phabricator-action-list-view {
|
|
padding: 4px 0;
|
|
display: none;
|
|
}
|
|
|
|
.device .phuix-dropdown-menu .phabricator-action-list-view {
|
|
/* When an action list view appears inside a dropdown menu, don't hide it
|
|
by default. */
|
|
display: block;
|
|
padding: 0;
|
|
}
|
|
|
|
.device .phabricator-action-list-view.phabricator-action-list-toggle,
|
|
.device-desktop .phui-document-content
|
|
.phabricator-action-list-view.phabricator-action-list-toggle {
|
|
display: block;
|
|
width: 200px;
|
|
border: 1px solid {$lightgreyborder};
|
|
border-radius: 3px;
|
|
position: absolute;
|
|
right: 16px;
|
|
top: 42px;
|
|
background: #fff;
|
|
box-shadow: {$dropshadow};
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.device-phone .phabricator-action-list-view.phabricator-action-list-toggle {
|
|
right: 8px;
|
|
top: 38px;
|
|
}
|
|
|
|
.phabricator-action-view {
|
|
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: {$anchor};
|
|
font: inherit;
|
|
display: inline;
|
|
min-width: 0;
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item .phui-icon-view {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phabricator-action-view button.phabricator-action-view-item,
|
|
.phabricator-action-view-item {
|
|
padding: 4px 8px 6px 8px;
|
|
display: block;
|
|
text-decoration: none;
|
|
color: {$darkbluetext};
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.action-has-icon button.phabricator-action-view-item,
|
|
.action-has-icon .phabricator-action-view-item {
|
|
padding: 4px 4px 4px 28px;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-href:hover
|
|
.phabricator-action-view-item {
|
|
text-decoration: none;
|
|
background: rgba({$alphablue}, .08);
|
|
color: {$sky};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-href:hover
|
|
.phabricator-action-view-icon {
|
|
color: {$sky};
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-href.action-item-red:hover
|
|
.phabricator-action-view-item {
|
|
background-color: {$sh-redbackground};
|
|
color: {$sh-redtext};
|
|
}
|
|
|
|
.device-desktop .phabricator-action-view-href.action-item-red:hover
|
|
.phabricator-action-view-icon {
|
|
color: {$red};
|
|
}
|
|
|
|
.phabricator-action-view-label .phabricator-action-view-item,
|
|
.phabricator-action-view-type-label .phabricator-action-view-item {
|
|
font-size: {$smallerfontsize};
|
|
font-weight: bold;
|
|
color: {$bluetext};
|
|
padding: 4px 8px 6px 8px;
|
|
display: block;
|
|
text-transform: uppercase;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.device-desktop li.phabricator-action-view-label:hover
|
|
.phabricator-action-view-item {
|
|
background-color: #fff;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.phabricator-action-view + .phabricator-action-view-label {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.phabricator-action-view-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
position: absolute;
|
|
top: 7px;
|
|
left: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.phabricator-action-view-disabled .phabricator-action-view-item,
|
|
.phabricator-action-view-disabled button.phabricator-action-view-item {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.phabricator-action-view-selected {
|
|
background: {$sh-violetbackground};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phabricator-action-view-selected:hover a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.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,
|
|
.device-desktop .phabricator-action-view-disabled:hover
|
|
.phabricator-action-view-icon,
|
|
.device-desktop .phabricator-action-view-disabled:hover
|
|
button.phabricator-action-view-icon {
|
|
background-color: {$greybackground};
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.phabricator-action-view-type-divider {
|
|
margin-top: 8px;
|
|
border-top: 1px solid {$thinblueborder};
|
|
}
|