mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
562d427f09
Summary: Fixes T10906, Fixes T10820. Adds new icons, grey-er colors for previous states. Also, I think fixed a few bugs? Test Plan: Fake each state, verify icon is as intended. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T10820, T10906 Differential Revision: https://secure.phabricator.com/D15830
38 lines
624 B
CSS
38 lines
624 B
CSS
/**
|
|
* @provides phui-status-list-view-css
|
|
*/
|
|
|
|
.phui-status-list-view {
|
|
width: 100%;
|
|
}
|
|
|
|
.phui-status-list-view .phui-icon-view {
|
|
width: 14px;
|
|
height: 14px;
|
|
margin: 2px 4px 2px 0;
|
|
}
|
|
|
|
.phui-status-item-target {
|
|
padding: 1px 8px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.phui-status-item-note {
|
|
width: 100%;
|
|
color: {$greytext};
|
|
line-height: 14px;
|
|
padding: 3px 4px;
|
|
}
|
|
|
|
.phui-status-item-highlighted td {
|
|
background-color: {$sh-yellowbackground};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phui-status-list-view td a {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phui-status-item-highlighted td.phui-status-item-note {
|
|
background-color: transparent;
|
|
}
|