mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-16 10:30:56 +01:00
684ce701fb
Summary: Gives the ability to hide a big long block of text in an ObjectListItem without cluttering the UI. Test Plan: Added a test case to UIExamples. Click on icon, see content. Click again, content go away. {F4974153} {F4974311} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18006
20 lines
389 B
CSS
20 lines
389 B
CSS
/**
|
|
* @provides diffusion-history-css
|
|
*/
|
|
|
|
.diffusion-history-list .phui-oi-link {
|
|
color: {$darkbluetext};
|
|
font-size: {$biggerfontsize};
|
|
}
|
|
|
|
.diffusion-history-list .phui-oi-attribute .phui-tag-core {
|
|
border-color: transparent;
|
|
}
|
|
|
|
.diffusion-history-message {
|
|
background-color: {$bluebackground};
|
|
padding: 16px;
|
|
margin: 4px 0;
|
|
border-radius: 5px;
|
|
color: {$darkbluetext};
|
|
}
|