mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 17:22:42 +01:00
ce1dbbec3c
Summary: This adds FontAwesome and attempts to make use as icons as consistent as possible. May require additional tweaks once we start using, but in practice this is pretty finished. - Adds FontAwesome - Adds additional transforms (rotates, spins) - Adds additional colors - Better scopes halflings and fontawesome - Shares CSS between fonts for consistency Test Plan: Tested various browsers back to IE8, mobile. {F146146} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D8818
58 lines
876 B
CSS
58 lines
876 B
CSS
/**
|
|
* @provides phui-icon-view-css
|
|
*/
|
|
|
|
.phui-icon-example .phui-icon-view {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phui-icon-view.sprite-minicons {
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
.phui-icon-view.sprite-actions {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
.phui-icon-view.sprite-apps,
|
|
.phui-icon-view.sprite-icons,
|
|
.phui-icon-view.sprite-status,
|
|
.phui-icon-view.sprite-buttonbar {
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
|
|
.phui-icon-view.sprite-tokens {
|
|
height: 16px;
|
|
width: 16px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phui-icon-view.sprite-payments {
|
|
height: 32px;
|
|
width: 60px;
|
|
}
|
|
|
|
.phui-icon-view.sprite-login {
|
|
height: 34px;
|
|
width: 34px;
|
|
}
|
|
|
|
.phui-icon-view.phuihead-medium {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.phui-icon-view.phuihead-small {
|
|
height: 35px;
|
|
width: 35px;
|
|
background-size: 35px;
|
|
}
|
|
|
|
.phui-icon-has-text {
|
|
padding-left: 20px;
|
|
}
|