mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7aea37c443
Summary: Adds a base class for displaying images and icons. Test Plan: Tested giving and taking tokens, viewed action headers, uiexamples for icons, workboards. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5736
41 lines
571 B
CSS
41 lines
571 B
CSS
/**
|
|
* @provides phui-icon-view-css
|
|
*/
|
|
|
|
.phui-icon-item-link {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phui-icon-item-link.sprite-minicons {
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
.phui-icon-item-link.sprite-actions {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
.phui-icon-item-link.sprite-apps {
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
|
|
.phui-icon-item-link.sprite-tokens {
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
.phui-icon-item-link.phuihead-medium {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.phui-icon-item-link.phuihead-small {
|
|
height: 35px;
|
|
width: 35px;
|
|
background-size: 35px;
|
|
}
|
|
|
|
|