1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-10-24 17:48:51 +02:00
phorge-phorge/webroot/rsrc/css/fuel/fuel-menu.css
epriestley 0b64092d25 Improve handle/status list display on devices in commit graph lists
Summary: Ref T13552. Provide a richer handle/status list item for commit lists.

Test Plan: Viewed commits in various interfaces, saw richer information.

Maniphest Tasks: T13552

Differential Revision: https://secure.phabricator.com/D21431
2020-08-12 09:04:08 -07:00

52 lines
1 KiB
CSS

/**
* @provides fuel-menu-css
*/
.fuel-menu-item-icon {
width: 14px;
height: 14px;
position: absolute;
left: 8px;
top: 4px;
text-align: center;
}
.fuel-menu-item-link {
padding: 4px 4px 4px 28px;
position: relative;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: {$greytext};
cursor: default;
border-radius: 3px;
}
.fuel-menu-item.has-link > .fuel-menu-item-link {
color: {$darkbluetext};
cursor: pointer;
}
.fuel-menu-item.disabled > .fuel-menu-item-link {
color: {$lightgreytext};
}
.device-desktop .fuel-menu-item > .fuel-menu-item-link:hover {
text-decoration: none;
}
.device-desktop .fuel-menu-item.has-link > .fuel-menu-item-link:hover {
color: {$sky};
background: rgba({$alphablue}, .08);
}
.fuel-menu-item-background-color-orange > .fuel-menu-item-link {
background: {$sh-orangebackground};
}
.device-desktop .fuel-menu-item.has-link.fuel-menu-item-background-color-orange
> .fuel-menu-item-link:hover {
background: {$lightorange};
color: {$orange};
}