mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 02:42:40 +01:00
0b64092d25
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
52 lines
1 KiB
CSS
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};
|
|
}
|