1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/application/base/phabricator-application-launch-view.css
Chad Little dc62433d17 Reduce home nav to 300px.
Summary: Based on loose feedback, reduce the width of the navigation.

Test Plan: Test, reload. Chrome and FF.

Reviewers: epriestley, vrana, btrahan

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4507
2013-01-17 21:01:46 -08:00

109 lines
2.1 KiB
CSS

/**
* @provides phabricator-application-launch-view-css
*/
/* - Application List ----------------------------------------------------------
Spacing container for the list of large application buttons.
*/
.application-tile-group {
overflow: hidden;
}
/* - Application Launch Button -------------------------------------------------
Spacing container for the list of large application buttons.
*/
a.phabricator-application-launch-container,
div.phabricator-application-launch-container {
display: block;
float: left;
width: 73px;
height: 70px;
overflow: hidden;
position: relative;
text-decoration: none;
border: 1px solid #080909;
}
a.application-tile-full {
width: 100%;
height: 52px;
}
a.phabricator-application-launch-container:hover {
text-decoration: none;
}
/* The hover effect looks awful on phones/tablets when scrolling. */
.device-desktop a.phabricator-application-launch-container:hover {
background-image: url('/rsrc/image/texture/dark-menu-hover.png');
color: #fff;
}
.phabricator-application-launch-icon {
display: block;
position: absolute;
left: 23px;
top: 13px;
width: 28px;
height: 28px;
}
.application-tile-full .phabricator-application-launch-icon {
top: 12px;
left: 12px;
}
.phabricator-application-launch-name {
display: block;
margin-top: 46px;
font-weight: bold;
font-size: 11px;
text-align: center;
color: #ffffff;
text-shadow: 0px 1px 1px #000000;
}
.application-tile-full .phabricator-application-launch-name {
font-size: 12px;
margin-top: 12px;
text-align: left;
margin-left: 52px;
}
.application-tile-full .phabricator-application-launch-description {
color: #bfbfbf;
font-size: 11px;
margin-top: 24px;
margin-left: 52px;
}
.phabricator-application-launch-attention {
position: absolute;
right: 4px;
top: 4px;
background: #ff0000;
border-radius: 10px;
color: white;
font-weight: bold;
padding: 1px 6px 2px;
border: 1px solid #aa0000;
font-size: 12px;
}
.application-tile-full .phabricator-application-launch-attention {
top: 16px;
right: 12px;
}