mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
bc46403cef
Summary: Removes highlight from the 'notes' row, leaves for status and name. Test Plan: Tested on a diff. Faked a note. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7258
36 lines
579 B
CSS
36 lines
579 B
CSS
/**
|
|
* @provides phui-status-list-view-css
|
|
*/
|
|
|
|
.phui-status-list-view {
|
|
width: 100%;
|
|
}
|
|
|
|
.phui-status-list-view .phui-icon-view {
|
|
display: block;
|
|
width: 14px;
|
|
height: 14px;
|
|
margin: 3px 4px;
|
|
}
|
|
|
|
.phui-status-item-target {
|
|
padding: 0 12px 0 0;
|
|
line-height: 20px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.phui-status-item-note {
|
|
width: 100%;
|
|
color: {$greytext};
|
|
line-height: 14px;
|
|
padding: 3px 0;
|
|
}
|
|
|
|
.phui-status-item-highlighted {
|
|
background-color: {$lightyellow};
|
|
}
|
|
|
|
.phui-status-item-highlighted .phui-status-item-note {
|
|
background-color: #fff;
|
|
padding-left: 4px;
|
|
}
|