mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
f1bf27959f
Summary: This diff covers a bit of ground. - PHUIDocumentExample has been added - PHUIDocument has been extended with new features - PhabricatorMenuView is now PHUIListView - PhabricatorMenuItemView is now PHUIItemListView Overall - I think I've gotten all the edges covered here. There is some derpi-ness that we can talk about, comments in the code. Responsive design is missing from the new features on PHUIDocument, will follow up later. Test Plan: Tested mobile and desktop menus, old phriction layout, new document views, new lists, and object lists. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6130
48 lines
935 B
CSS
48 lines
935 B
CSS
/**
|
|
* @provides sprite-gradient-css
|
|
* @generated
|
|
*/
|
|
|
|
.sprite-gradient, .phabricator-dark-menu .phui-list-item-type-label, .phabricator-side-menu .phui-list-item-type-label {
|
|
background-image: url(/rsrc/image/sprite-gradient.png);
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradient-blue-header {
|
|
background-position: 0px -83px;
|
|
}
|
|
|
|
.gradient-breadcrumbs {
|
|
background-position: 0px -51px;
|
|
}
|
|
|
|
.gradient-dark-grey-header {
|
|
background-position: 0px -154px;
|
|
}
|
|
|
|
.gradient-dark-menu-label, .phabricator-dark-menu .phui-list-item-type-label {
|
|
background-position: 0px -25px;
|
|
}
|
|
|
|
.gradient-green-header {
|
|
background-position: 0px -225px;
|
|
}
|
|
|
|
.gradient-grey-header {
|
|
background-position: 0px -296px;
|
|
}
|
|
|
|
.gradient-menu-label, .phabricator-side-menu .phui-list-item-type-label {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.gradient-red-header {
|
|
background-position: 0px -367px;
|
|
}
|
|
|
|
.gradient-yellow-header {
|
|
background-position: 0px -438px;
|
|
}
|