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-22 18:06:57 +01:00
|
|
|
width: 78px;
|
|
|
|
height: 66px;
|
2012-08-02 23:07:21 +02:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2013-05-17 18:58:37 +02:00
|
|
|
border: 1px solid #1c1e22;
|
2012-08-02 23:07:21 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
a.application-tile-full {
|
2013-03-22 19:50:30 +01:00
|
|
|
width: 100%;
|
2013-01-16 00:41:37 +01:00
|
|
|
height: 52px;
|
2013-05-17 18:58:37 +02:00
|
|
|
border-bottom: none;
|
2013-03-22 19:50:30 +01:00
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone div.phabricator-application-launch-container {
|
|
|
|
display: none;
|
2013-01-16 00:41:37 +01:00
|
|
|
}
|
|
|
|
|
2013-01-22 18:06:57 +01:00
|
|
|
a.application-tile-full.application-tile-create {
|
2013-03-22 19:50:30 +01:00
|
|
|
width: 88%;
|
2013-01-22 18:06:57 +01:00
|
|
|
height: 52px;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.application-tile-full + .phabricator-application-launch-create {
|
|
|
|
float: right;
|
2013-03-22 19:50:30 +01:00
|
|
|
width: 12%;
|
2013-01-22 18:06:57 +01:00
|
|
|
height: 52px;
|
|
|
|
position: relative;
|
2013-03-22 19:50:30 +01:00
|
|
|
border-top: 1px solid #000;
|
2013-05-17 18:58:37 +02:00
|
|
|
border-bottom: none;
|
2013-03-22 19:50:30 +01:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
2013-01-22 18:06:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.phabricator-application-launch-create:hover {
|
2013-05-17 18:58:37 +02:00
|
|
|
background-color: #1e2225;
|
2013-01-22 18:06:57 +01:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
a.phabricator-application-launch-container:hover {
|
2013-05-17 18:58:37 +02:00
|
|
|
background-color: #1e2225;
|
2012-08-02 23:07:21 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2012-08-14 23:23:55 +02:00
|
|
|
.phabricator-application-launch-icon {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2013-01-22 18:06:57 +01:00
|
|
|
left: 25px;
|
|
|
|
top: 10px;
|
2013-01-16 00:41:22 +01:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2012-08-14 23:23:55 +02:00
|
|
|
}
|
|
|
|
|
2013-01-22 18:06:57 +01:00
|
|
|
.phabricator-application-create-icon {
|
2013-03-22 19:50:30 +01:00
|
|
|
display: inline-block;
|
|
|
|
margin: 20px auto;
|
2013-01-22 18:06:57 +01:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
.application-tile-full .phabricator-application-launch-icon {
|
|
|
|
top: 12px;
|
2013-01-22 18:06:57 +01:00
|
|
|
left: 10px;
|
2013-01-16 00:41:37 +01:00
|
|
|
}
|
|
|
|
|
2012-08-02 23:07:21 +02:00
|
|
|
.phabricator-application-launch-name {
|
2013-01-16 00:41:22 +01:00
|
|
|
display: block;
|
2013-01-22 18:06:57 +01:00
|
|
|
margin-top: 42px;
|
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-22 18:06:57 +01:00
|
|
|
font-size: 13px;
|
|
|
|
margin-top: 11px;
|
2013-01-16 00:41:37 +01:00
|
|
|
text-align: left;
|
2013-01-22 18:06:57 +01:00
|
|
|
margin-left: 48px;
|
2013-01-16 00:41:37 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.application-tile-full .phabricator-application-launch-description {
|
|
|
|
color: #bfbfbf;
|
|
|
|
font-size: 11px;
|
|
|
|
margin-top: 24px;
|
2013-01-22 18:06:57 +01:00
|
|
|
margin-left: 48px;
|
2013-01-16 00:41:37 +01:00
|
|
|
}
|
|
|
|
|
2013-02-23 00:46:29 +01:00
|
|
|
.phabricator-application-beta {
|
2012-08-02 23:07:21 +02:00
|
|
|
position: absolute;
|
2013-01-16 00:41:22 +01:00
|
|
|
top: 4px;
|
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;
|
2013-01-18 21:36:45 +01:00
|
|
|
border: 2px solid #333;
|
|
|
|
font-size: 11px;
|
|
|
|
box-shadow: 0 0px 2px #000;
|
2012-08-02 23:07:21 +02:00
|
|
|
}
|
2013-01-16 00:41:37 +01:00
|
|
|
|
2013-01-19 19:12:44 +01:00
|
|
|
.phabricator-application-launch-attention {
|
2013-02-23 00:46:29 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
border-radius: 10px;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
2013-02-23 05:33:06 +01:00
|
|
|
padding: 1px 0 2px;
|
2013-02-23 00:46:29 +01:00
|
|
|
border: 2px solid #333;
|
|
|
|
font-size: 11px;
|
|
|
|
box-shadow: 0 0px 2px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-attention-count {
|
2013-01-19 19:12:44 +01:00
|
|
|
background-color: rgb(0, 122, 255);
|
2013-02-23 00:46:29 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 1px 6px 2px;
|
|
|
|
border: 1px solid #333;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-warning-count {
|
2013-02-23 05:33:06 +01:00
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-attention-count + .phabricator-application-warning-count {
|
|
|
|
margin-left: -2px;
|
2013-02-23 00:46:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-launch-attention {
|
|
|
|
right: 4px;
|
|
|
|
background-color: rgb(119, 119, 119);
|
2013-01-19 19:12:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-beta {
|
|
|
|
left: 4px;
|
2013-01-22 18:06:57 +01:00
|
|
|
background-color: rgb(109, 92, 41);
|
2013-01-19 19:12:44 +01:00
|
|
|
}
|
|
|
|
|
2013-01-16 00:41:37 +01:00
|
|
|
.application-tile-full .phabricator-application-launch-attention {
|
|
|
|
top: 16px;
|
2013-01-22 18:06:57 +01:00
|
|
|
right: 8px;
|
2013-01-16 00:41:37 +01:00
|
|
|
}
|
2013-01-19 19:12:44 +01:00
|
|
|
|
2013-01-22 18:06:57 +01:00
|
|
|
.application-tile-full .phabricator-application-launch-create {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
background: rgb(0, 122, 255);
|
|
|
|
border-radius: 5px;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 1px 6px 2px;
|
|
|
|
border: 2px solid #333;
|
|
|
|
font-size: 11px;
|
|
|
|
box-shadow: 0 0px 2px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-application-launch-create {
|
|
|
|
display: none;
|
|
|
|
}
|