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;
|
|
|
|
width: 78px;
|
|
|
|
height: 78px;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2012-12-09 02:03:33 +01:00
|
|
|
background-color: #638ed3;
|
|
|
|
border-color: #0a1d59;
|
|
|
|
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-16 00:41:22 +01:00
|
|
|
left: 25px;
|
|
|
|
top: 15px;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2012-08-14 23:23:55 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
.phabricator-application-launch-name {
|
2013-01-16 00:41:22 +01:00
|
|
|
display: block;
|
|
|
|
margin-top: 50px;
|
2012-08-02 23:07:21 +02:00
|
|
|
font-weight: bold;
|
2013-01-16 00:41:22 +01:00
|
|
|
font-size: 11px;
|
|
|
|
text-align: center;
|
|
|
|
color: #ffffff;
|
|
|
|
text-shadow: 0px 1px 1px #000000;
|
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
|
|
|
}
|