mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
cfd274fec0
Summary: Removes much of the UI around the beta logo. Test Plan: test large and small tiles Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8372
144 lines
2.7 KiB
CSS
144 lines
2.7 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: 78px;
|
|
height: 66px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
border: 1px solid #1c1e22;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.application-tile-full {
|
|
width: 100%;
|
|
height: 52px;
|
|
border-bottom: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
}
|
|
|
|
.device-phone div.phabricator-application-launch-container {
|
|
display: none;
|
|
}
|
|
|
|
a.application-tile-full.application-tile-create {
|
|
width: 88%;
|
|
height: 52px;
|
|
border-right: none;
|
|
}
|
|
|
|
.phabricator-application-launch-icon {
|
|
display: block;
|
|
position: absolute;
|
|
left: 25px;
|
|
top: 10px;
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
|
|
.application-tile-full .phabricator-application-launch-icon {
|
|
top: 12px;
|
|
left: 10px;
|
|
}
|
|
|
|
.device-desktop a.phabricator-application-launch-container:hover {
|
|
background-color: #1e2225;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.phabricator-application-launch-name {
|
|
display: block;
|
|
margin-top: 42px;
|
|
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: 13px;
|
|
margin-top: 11px;
|
|
text-align: left;
|
|
margin-left: 48px;
|
|
|
|
}
|
|
|
|
.application-tile-full .phabricator-application-launch-description {
|
|
color: #bfbfbf;
|
|
font-size: 11px;
|
|
margin-top: 24px;
|
|
margin-left: 48px;
|
|
}
|
|
|
|
.phabricator-application-beta {
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 4px;
|
|
color: #fff;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-application-launch-attention {
|
|
position: absolute;
|
|
top: 4px;
|
|
border-radius: 10px;
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: 1px 0 2px;
|
|
border: 2px solid #333;
|
|
font-size: 11px;
|
|
box-shadow: 0 0px 2px #000;
|
|
}
|
|
|
|
.phabricator-application-attention-count {
|
|
background-color: {$blue};
|
|
border-radius: 10px;
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: 1px 6px 2px;
|
|
border: 1px solid #333;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-application-warning-count {
|
|
padding: 6px;
|
|
}
|
|
|
|
.phabricator-application-attention-count + .phabricator-application-warning-count {
|
|
margin-left: -2px;
|
|
}
|
|
|
|
.phabricator-application-launch-attention {
|
|
right: 4px;
|
|
background-color: rgb(119, 119, 119);
|
|
}
|
|
|
|
.application-tile-full .phabricator-application-launch-attention {
|
|
top: 16px;
|
|
right: 8px;
|
|
}
|