mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +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
33 lines
496 B
CSS
33 lines
496 B
CSS
/**
|
|
* @provides fuel-handle-list-css
|
|
*/
|
|
|
|
.fuel-handle-list {
|
|
display: table;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.fuel-handle-list-body {
|
|
display: table-row-group;
|
|
}
|
|
|
|
.fuel-handle-list-item {
|
|
display: table-row;
|
|
}
|
|
|
|
.fuel-handle-list-item-cell {
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.fuel-handle-list-item-icon {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.fuel-handle-list-item-icon > .phui-icon-view {
|
|
width: 18px;
|
|
height: 18px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
background-size: 100%;
|
|
}
|