2012-08-02 23:07:21 +02:00
|
|
|
/**
|
|
|
|
* @provides phabricator-application-launch-view-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* - Application List ----------------------------------------------------------
|
|
|
|
|
|
|
|
Spacing container for the list of large application buttons.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-01-16 00:41:22 +01:00
|
|
|
.application-tile-group {
|
|
|
|
overflow: hidden;
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* - Application Launch Button -------------------------------------------------
|
|
|
|
|
|
|
|
Spacing container for the list of large application buttons.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-01-16 00:41:22 +01:00
|
|
|
a.phabricator-application-launch-container,
|
|
|
|
div.phabricator-application-launch-container {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
2013-01-18 06:01:46 +01:00
|
|
|
width: 73px;
|
|
|
|
height: 70px;
|
2012-08-02 23:07:21 +02:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
2013-01-16 00:41:22 +01:00
|
|
|
border: 1px solid #080909;
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
a.application-tile-full {
|
|
|
|
width: 100%;
|
|
|
|
height: 52px;
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
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 {
|
2013-01-16 01:17:53 +01:00
|
|
|
background-image: url('/rsrc/image/texture/dark-menu-hover.png');
|
2012-12-09 02:03:33 +01:00
|
|
|
color: #fff;
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
|
|
|
|
2012-08-14 23:23:55 +02:00
|
|
|
.phabricator-application-launch-icon {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2013-01-18 06:01:46 +01:00
|
|
|
left: 23px;
|
|
|
|
top: 13px;
|
2013-01-16 00:41:22 +01:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2012-08-14 23:23:55 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
.application-tile-full .phabricator-application-launch-icon {
|
|
|
|
top: 12px;
|
|
|
|
left: 12px;
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
.phabricator-application-launch-name {
|
2013-01-16 00:41:22 +01:00
|
|
|
display: block;
|
2013-01-18 06:01:46 +01:00
|
|
|
margin-top: 46px;
|
2012-08-02 23:07:21 +02:00
|
|
|
font-weight: bold;
|
2013-01-18 06:01:46 +01:00
|
|
|
font-size: 11px;
|
2013-01-16 00:41:22 +01:00
|
|
|
text-align: center;
|
|
|
|
color: #ffffff;
|
|
|
|
text-shadow: 0px 1px 1px #000000;
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
.application-tile-full .phabricator-application-launch-name {
|
2013-01-18 06:01:46 +01:00
|
|
|
font-size: 12px;
|
2013-01-16 00:41:37 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
.phabricator-application-launch-attention {
|
|
|
|
position: absolute;
|
2013-01-16 00:41:22 +01:00
|
|
|
right: 4px;
|
|
|
|
top: 4px;
|
2012-08-14 23:23:55 +02:00
|
|
|
background: #ff0000;
|
2012-08-02 23:07:21 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
color: white;
|
2013-01-16 00:41:22 +01:00
|
|
|
font-weight: bold;
|
|
|
|
padding: 1px 6px 2px;
|
2012-08-02 23:07:21 +02:00
|
|
|
border: 1px solid #aa0000;
|
2013-01-16 00:41:22 +01:00
|
|
|
font-size: 12px;
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
2013-01-16 00:41:37 +01:00
|
|
|
|
|
|
|
.application-tile-full .phabricator-application-launch-attention {
|
|
|
|
top: 16px;
|
|
|
|
right: 12px;
|
|
|
|
}
|