mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
f306cab653
Summary: Issues here: - Need an application-sized "eye", or a "home" icon for "Phabricator Home". - Some of the "apps_lb_2x" sliced images are the "_dark_" versions, not the light versions. - If you slice an application-sized "logout" (power off) icon and application-sized "help" (questionmark in circle) icon I can replace the current menu icons and nearly get rid of "autosprite". - To replace the icons on /applications/, the non-retina size is "4x", so we'd need "8x" for retina. Alternatively I can reduce the icon sizes by 50%. - The "Help", "Settings" and "Logout" items currently have a "glowing" hover state, which needs a variant (or we can drop it). - The /applications/ icons have a white hover state (or we can drop it). - The 1x application (14x14) icons aren't used anywhere right now, should they be? Maybe in the feed in the future, etc? - The "apps-2x" and "apps-large" sheets are the same image, but getting them to actually use the same file is a bit tricky, so I just left them separate for now. Test Plan: {F26698} {F26699} Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T1960 Differential Revision: https://secure.phabricator.com/D4108
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
CSS
/**
|
|
* @provides phabricator-crumbs-view-css
|
|
*/
|
|
|
|
.device .phabricator-crumbs-view {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-crumbs-view {
|
|
background-color: #d8dce2;
|
|
height: 31px;
|
|
overflow: hidden;
|
|
vertical-align: top;
|
|
|
|
box-shadow: 0 1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.phabricator-crumbs-view,
|
|
.phabricator-crumbs-view a.phabricator-crumb-view,
|
|
.phabricator-crumbs-view a.phabricator-crumbs-action {
|
|
color: #3d3d3d;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
.phabricator-crumb-view {
|
|
display: inline-block;
|
|
height: 31px;
|
|
line-height: 31px;
|
|
}
|
|
|
|
.phabricator-crumb-icon {
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 28px;
|
|
margin: 2px 2px 0 8px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phabricator-crumbs-actions {
|
|
float: right;
|
|
}
|
|
|
|
.phabricator-crumbs-action {
|
|
display: inline-block;
|
|
height: 17px;
|
|
padding: 8px 14px 8px 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-crumbs-action .sprite-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
left: 4px;
|
|
top: 9px;
|
|
position: absolute;
|
|
}
|
|
|
|
.phabricator-crumb-divider {
|
|
display: inline-block;
|
|
width: 9px;
|
|
height: 31px;
|
|
vertical-align: top;
|
|
margin: 0 9px;
|
|
}
|
|
|
|
.temporary-icon-apps {
|
|
background-image: url(/rsrc/image/button_apps.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.temporary-icon-list {
|
|
background-image: url(/rsrc/image/button_menu.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: 24px 15px;
|
|
}
|