mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2f33dedc8b
Summary: Ref T13602. Similar to subscriber and mention treatments, make it clear when a user doesn't have view permission. Test Plan: {F8430595} Maniphest Tasks: T13602 Differential Revision: https://secure.phabricator.com/D21555
44 lines
773 B
CSS
44 lines
773 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-item-exiled td {
|
|
background-color: {$lightredbackground};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phui-status-list-view td a {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phui-status-item-highlighted td.phui-status-item-note,
|
|
.phui-status-item-exiled td.phui-status-item-note {
|
|
background-color: transparent;
|
|
}
|